@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --maroon: #800000;
    --maroon-dark: #4D0000;
    --gold: #D4AF37;
    --gold-light: #F1D27A;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.3);
    --border-color: #cbd5e1;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: #fcfcfc;
    overflow-x: hidden;
}

/* Premium Navbar */
.navbar {
    background: rgba(128, 0, 0, 0.96) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold);
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(77, 0, 0, 0.98);
        border-radius: 16px;
        padding: 24px;
        margin-top: 16px;
        border: 1px solid rgba(212, 175, 55, 0.15);
        box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    }
    .nav-link {
        padding: 12px 16px !important;
        margin: 6px 0 !important;
    }
    .nav-link::after {
        display: none !important;
    }
}

/* Glass Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    animation: float 10s infinite alternate;
}

@keyframes float {
    from { transform: translate(0, 0); }
    to { transform: translate(-30px, 30px); }
}

.hero-section h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section .lead {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

/* Premium Buttons */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--maroon-dark) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.4);
    filter: brightness(1.05);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 30px;
    padding: 12px 32px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-light:hover {
    background: white;
    color: var(--maroon) !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.15);
}

/* Package Button Reset & Styling */
.btn-gallery,
.btn-inquire {
    flex: 1;
    min-width: 120px;
    padding: 12px 18px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    border: none !important;
    white-space: nowrap !important;
    font-family: 'Outfit', sans-serif !important;
}

.btn-gallery {
    background: var(--maroon) !important;
    color: white !important;
}

.btn-gallery:hover {
    background: var(--maroon-dark) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.3) !important;
    color: white !important;
}

.btn-gallery i {
    font-size: 1.05rem !important;
}

.btn-inquire {
    background: white !important;
    color: var(--maroon) !important;
    border: 2px solid var(--gold) !important;
}

.btn-inquire:hover {
    background: var(--gold) !important;
    color: var(--maroon) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25) !important;
}

.btn-inquire i {
    font-size: 1.05rem !important;
}

/* Design-Heavy Step Cards */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    border-color: var(--gold);
}

.step-card::after {
    content: attr(data-step);
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 4.5rem;
    font-weight: 900;
    color: rgba(0,0,0,0.025);
    z-index: -1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--maroon);
    color: var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 auto 24px;
    transform: rotate(-10deg);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-card:hover .step-number {
    transform: rotate(0deg) scale(1.08);
    background: var(--gold);
    color: var(--maroon);
}

/* Feature Items with Premium Depth */
.feature-item {
    padding: 32px 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--maroon), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Luxury Service Cards - Elite Redesign */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.02);
    text-decoration: none;
    color: inherit;
}

.service-card:visited,
.service-card:focus,
.service-card:active {
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(128, 0, 0, 0.12);
}

.service-card i {
    font-size: 1.8rem;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover i {
    background: var(--gold);
    color: var(--maroon-dark);
    transform: translateY(-3px) scale(1.05);
}

.service-card h5 {
    color: var(--maroon);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover h5, 
.service-card:hover p {
    color: white;
}

.service-card:hover p {
    opacity: 0.95;
}

.service-icon {
    position: relative;
    z-index: 1;
}

.service-body {
    position: relative;
    z-index: 1;
}

.service-title {
    color: var(--maroon);
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.14);
    color: var(--maroon);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 700;
}

.service-card:hover .service-title,
.service-card:hover .service-description {
    color: #fff;
}

.service-card:hover .service-badge {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* Package Card Styling */
.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(128, 0, 0, 0.15);
    border-color: var(--gold);
}

.package-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.08);
}

.package-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-destination {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--maroon);
    margin-bottom: 12px;
    line-height: 1.3;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 5px;
}

.package-duration {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-duration i {
    color: var(--gold);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    flex-grow: 1;
}

.package-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-features li:before {
    content: '✓';
    color: var(--gold);
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    min-width: 15px;
}

.package-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Services Section Spacing */
.py-100 {
    padding: 90px 0;
}
@media (max-width: 768px) {
    .py-100 {
        padding: 60px 0;
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 48px;
    text-align: center;
    position: relative;
    line-height: 1.3;
}

.section-title span {
    background: linear-gradient(135deg, var(--maroon), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 50px;
}

/* Back Link */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--maroon);
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.back-link:hover {
    color: var(--gold);
    transform: translateX(-5px);
}

/* Footer Premium */
.footer, footer {
    background: linear-gradient(135deg, var(--maroon-dark) 0%, #300000 100%) !important;
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 80px 0 40px !important;
    border-top: 3px solid var(--gold) !important;
    margin-top: 80px;
}

.footer p, footer p {
    color: rgba(255, 255, 255, 0.65) !important;
    margin: 0;
}

.footer h5, footer h5 {
    color: var(--gold) !important;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer a, footer a {
    color: rgba(255, 255, 255, 0.75) !important;
    transition: all 0.3s ease !important;
    text-decoration: none;
}

.footer a:hover, footer a:hover {
    color: var(--gold) !important;
    padding-left: 5px;
}

.footer ul, footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li, footer ul li {
    margin-bottom: 8px;
}

/* Action Card */
.action-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(196, 30, 58, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.action-card:hover {
    border-color: var(--gold);
    background-color: #fafafa;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.12);
}

.action-card:hover::before {
    opacity: 1;
}

.action-card a {
    color: inherit;
    text-decoration: none;
    display: block;
    position: relative;
    z-index: 1;
}

.action-card i {
    font-size: 48px;
    background: linear-gradient(135deg, #d4af37, #c9a227);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease;
}

.action-card:hover i {
    transform: scale(1.2);
}

.action-card h6 {
    color: var(--maroon);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.action-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Form Styling */
.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.3rem rgba(212, 175, 55, 0.15);
}

.form-control::placeholder {
    color: #999;
}

.form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Card Styling */
.card {
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 15px 45px rgba(196, 30, 58, 0.12);
    transform: translateY(-2px);
}

.card-header {
    background: linear-gradient(135deg, #c41e3a 0%, #800020 100%) !important;
    border-bottom: none;
    padding: 20px !important;
}

/* Navigation */
.navbar {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1000;
}
.services-page .service-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 0 5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), var(--gold) 50%, transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--maroon);
}

.timeline-marker {
    position: absolute;
    left: -46px;
    top: -8px;
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.timeline-content h6 {
    color: var(--maroon);
    font-weight: 600;
}

/* Badge Styling */
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.75rem;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-section h1 {
        font-size: clamp(2rem, 5vw, 2.5rem);
        line-height: 1.3;
    }

    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 32px !important;
    }

    .profile-card img {
        height: 200px;
    }

    .profile-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }

    .step-card {
        margin-bottom: 16px;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%; /* Make CTA full width on mobile if needed */
        justify-content: center;
    }
    
    .hero-section .d-flex {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-section .btn {
        width: 100%;
    }
}

/* Alert Styling */
.alert {
    border-radius: 8px;
    border: none;
    border-left: 5px solid;
    padding: 16px 20px;
    font-weight: 500;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.08);
    color: #1e5631;
    border-left-color: #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.08);
    color: #721c24;
    border-left-color: #dc3545;
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.08);
    color: #856404;
    border-left-color: #ffc107;
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.08);
    color: #0c5460;
    border-left-color: #17a2b8;
}

/* Table Styling */
.table-hover tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

.table-dark {
    background-color: var(--maroon);
}

/* Utility Classes */
.space-between {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.object-fit-cover {
    object-fit: cover;
}

.bg-info-light {
    background-color: rgba(23, 162, 184, 0.1);
    border-color: rgba(23, 162, 184, 0.3);
}

/* Shadow Utilities */
.shadow {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* Text Utilities */
.text-white-50 {
    color: rgba(255,255,255,0.5);
}

/* Modal Styling */
.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: 2px solid var(--border-color);
}

.modal-header.bg-maroon {
    border-bottom: none;
}

/* Dropdown Menu */
.dropdown-menu {
    border-radius: 5px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dropdown-item.active {
    background-color: var(--gold);
    color: var(--maroon);
}

.dropdown-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--maroon);
}

/* Print Styles */
@media print {
    .navbar, .btn, .modal {
        display: none;
    }
}

/* Additional Enhancements */
.section-header {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #c9a227);
    margin-top: 15px;
}

/* Smooth scrolling anchors */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* Badge enhancements */
.badge {
    padding: 6px 14px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

/* List group enhancements */
.list-group-item {
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    background-color: rgba(212, 175, 55, 0.05);
    transform: translateX(3px);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #800020, #d4af37);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c41e3a, #c9a227);
}

/* Loading animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner {
    animation: spin 1s linear infinite;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Glow effect */
.glow {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Smooth transitions globally */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Services Page Visual Upgrade */
.services-page {
    background:
        radial-gradient(circle at 10% 10%, rgba(212, 175, 55, 0.09), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(128, 0, 0, 0.06), transparent 35%),
        #fcfcfc;
}

.services-page .services-hero {
    padding: 100px 0 80px;
}

.services-page .services-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 10px;
}

.services-page .services-hero p {
    margin: 0;
    opacity: 0.9;
}

.services-page .services-shell {
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.services-page .services-heading {
    margin-bottom: 28px;
}

.services-page .services-grid {
    row-gap: 1.6rem;
}

.services-page .services-grid > [class*="col-"] {
    opacity: 0;
    transform: translateY(16px);
    animation: serviceCardReveal 0.65s ease forwards;
}

.services-page .services-grid > [class*="col-"]:nth-child(1) { animation-delay: 0.04s; }
.services-page .services-grid > [class*="col-"]:nth-child(2) { animation-delay: 0.10s; }
.services-page .services-grid > [class*="col-"]:nth-child(3) { animation-delay: 0.16s; }
.services-page .services-grid > [class*="col-"]:nth-child(4) { animation-delay: 0.22s; }
.services-page .services-grid > [class*="col-"]:nth-child(5) { animation-delay: 0.28s; }
.services-page .services-grid > [class*="col-"]:nth-child(6) { animation-delay: 0.34s; }
.services-page .services-grid > [class*="col-"]:nth-child(7) { animation-delay: 0.40s; }
.services-page .services-grid > [class*="col-"]:nth-child(8) { animation-delay: 0.46s; }
.services-page .services-grid > [class*="col-"]:nth-child(9) { animation-delay: 0.52s; }

@keyframes serviceCardReveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-page .service-card {
    text-decoration: none !important;
    color: inherit !important;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 24px rgba(10, 10, 10, 0.05);
    padding: 36px 24px;
    backdrop-filter: blur(3px);
}

.services-page .service-card:hover {
    transform: translateY(-10px);
}

.services-page .service-card * {
    text-decoration: none !important;
}

.services-page .service-icon i {
    width: 82px;
    height: 82px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.services-page .service-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
    position: relative;
}

.services-page .service-cover-portrait {
    height: auto;
    aspect-ratio: 2 / 3;
}

.services-page .service-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.02));
    opacity: 0.65;
    transition: opacity 0.35s ease;
}

.services-page .service-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s ease;
}

.services-page .package-image {
    height: auto;
    aspect-ratio: 2 / 3;
}

.services-page .package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.services-page .service-title {
    font-size: 1.45rem;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.services-page .service-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 68px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), var(--gold), rgba(128, 0, 0, 0.85));
    transition: width 0.35s ease, opacity 0.35s ease;
    opacity: 0.9;
}

.services-page .service-card:hover .service-title::after {
    width: 88px;
    opacity: 1;
}

.services-page .service-card:hover .service-cover img {
    transform: scale(1.06);
}

.services-page .service-card:hover .service-cover::after {
    opacity: 0.35;
}

.services-page .service-description {
    font-size: 0.96rem;
    color: #5c6670;
}

.services-page .service-badge {
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 7px 16px;
}

.services-page .package-card {
    border-radius: 18px;
    overflow: hidden;
}

.services-page .package-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.services-page .package-price {
    font-size: 1.7rem;
}
.services-page .service-card:hover .service-tag {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.18);
}

.services-page .btn-gallery,
.services-page .btn-inquire {
    min-height: 44px;
}
.services-page .service-tag {
    font-size: 0.68rem;
}

@media (max-width: 768px) {
    .services-page .services-hero {
        padding: 78px 0 58px;
    }

    .services-page .services-shell {
        margin-top: -18px;
    }

    .services-page .service-card {
        padding: 28px 18px;
        border-radius: 18px;
    }

    .services-page .service-title {
        font-size: 1.2rem;
    }

    .services-page .service-cover {
        height: auto;
        aspect-ratio: 2 / 3;
    }

    .services-page .service-cover-portrait {
        height: auto;
        aspect-ratio: 2 / 3;
    }

    .services-page .services-grid > [class*="col-"] {
        animation-duration: 0.5s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-page .services-grid > [class*="col-"] {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .services-page .service-card,
    .services-page .service-title::after {
        transition: none;
    }
}
