@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Montserrat:wght@300;400;600;700&display=swap');

:root {
    --gold-primary: #c5a059;
    --gold-light: #e2c99d;
    --gold-dark: #b08d57;
    --charcoal-dark: #121212;
    --charcoal-medium: #1e1e1e;
    --charcoal-light: #2a2a2a;
    --cream-light: #fdfaf5;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Global Typography */
body {
    font-family: 'Montserrat', sans-serif !important;
    background-color: var(--charcoal-dark);
    color: var(--cream-light);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .heading-section h2 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    letter-spacing: 1px;
}

/* Navigation */
.ftco-navbar-light {
    background: transparent !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.ftco-navbar-light.scrolled {
    background: rgba(18, 18, 18, 0.9) !important;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--gold-primary) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    color: var(--cream-light) !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
    color: var(--gold-primary) !important;
}

/* Hero Section */
.hero-wrap {
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed; /* Smooth parallax alternative */
}

.hero-wrap .overlay {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(18, 18, 18, 0.4) 100%) !important;
}

.hero-wrap .slider-text h1 {
    font-size: 5rem;
    color: var(--gold-primary);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
    color: #000 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    padding: 15px 35px !important;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: var(--gold-light) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-white.btn-outline-white {
    border-color: var(--gold-primary) !important;
    color: var(--gold-primary) !important;
    background: transparent !important;
}

.btn-white.btn-outline-white:hover {
    background: var(--gold-primary) !important;
    color: #000 !important;
}

/* Services */
.services {
    background: var(--charcoal-medium);
    padding: 40px;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.services:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.services .icon span {
    color: var(--gold-primary) !important;
}

.services h3 {
    color: var(--gold-primary);
}

/* Staff Section */
.staff-card {
    transition: var(--transition-smooth);
    display: flex !important;
    perspective: 1500px;
    align-items: stretch;
}

.staff-card[style*="display: none"] {
    display: none !important;
}

.staff-card:hidden {
    display: none !important;
}

/* 3D Card Enhancements */
.staff {
    background: linear-gradient(135deg, #262626, #121212);
    padding: 25px 15px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        15px 15px 25px rgba(0, 0, 0, 0.6), 
        -5px -5px 15px rgba(255, 255, 255, 0.03),
        inset 1px 1px 2px rgba(255, 255, 255, 0.1);
    transform-style: flat;
    position: relative;
    z-index: 1;
    overflow: hidden;
    /* Flex column so button always pins to bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.staff::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.staff:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.8), 
        0 0 35px rgba(212, 175, 55, 0.25),
        inset 1px 1px 3px rgba(255, 255, 255, 0.2);
    border-color: var(--gold-primary);
}

.staff:hover::before {
    opacity: 1;
}

.staff .img {
    border: 4px solid var(--gold-primary);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(212, 175, 55, 0.3);
    transition: all 0.5s cubic-bezier(0.2, 0.2, 0.2, 1);
    border-radius: 0%;
    /* margin: 0 auto 15px auto; */
    width: 100%;
    height: 191px;
    transform: none;
    /* background-position: top center; */
    background-size: cover;
}

.staff:hover .img {
    transform: scale(1.05);
    border-color: var(--gold-light);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.5);
}

.staff .info {
    transform: none;
    transition: transform 0.5s ease;
    /* Flex column so text grows and button pins to bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    width: 100%;
}

.staff:hover .info {
    transform: none;
}

.staff .info h3 {
    margin-bottom: 12px;
}

.staff .info h3 a {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-shadow: 0 2px 5px rgba(0,0,0,0.6);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.staff:hover .info h3 a {
    color: var(--gold-primary);
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

.staff .info .position {
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.staff .info .text {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.staff .info .text p {
    font-size: 0.9rem;
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: center;
    font-family: sans-serif;
}

.btn-view-details {
    display: inline-block;
    background-color: var(--gold-primary);
    color: #000000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
    opacity: 0.9;
}

.staff:hover .btn-view-details {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.6);
    background-color: var(--gold-light);
    color: #000000;
    text-decoration: none;
}

/* Card Animations */
@keyframes slideOutLeft {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(-30px); opacity: 0; }
}
@keyframes slideOutRight {
    0% { transform: translateX(0); opacity: 1; }
    100% { transform: translateX(30px); opacity: 0; }
}
@keyframes slideInRight {
    0% { transform: translateX(30px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
@keyframes slideInLeft {
    0% { transform: translateX(-30px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

.slide-out-left {
    animation: slideOutLeft 0.3s forwards !important;
}
.slide-out-right {
    animation: slideOutRight 0.3s forwards !important;
}
.slide-in-right {
    animation: slideInRight 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
}
.slide-in-left {
    animation: slideInLeft 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards !important;
}

/* Pricing */
.pricing-entry {
    background: var(--charcoal-medium) !important;
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.pricing-entry.active {
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.2);
}

.pricing-entry h3 {
    color: var(--gold-primary) !important;
}

.pricing-entry .price {
    color: var(--cream-light) !important;
}

.pricing-entry ul li {
    color: var(--text-muted);
}

/* Work / Portfolio */
.work-entry {
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.work-entry .info {
    background: rgba(18, 18, 18, 0.8) !important;
}

.work-entry h3 {
    color: var(--gold-primary);
}

/* Blog */
.blog-entry {
    background: var(--charcoal-medium);
    border: 1px solid var(--glass-border);
}

.blog-entry .text h3 a {
    color: var(--gold-primary);
}

/* Footer */
.ftco-footer {
    background: var(--charcoal-dark) !important;
    border-top: 1px solid var(--glass-border);
}

.ftco-footer h2 {
    color: var(--gold-primary);
}

.ftco-footer-social li a {
    background: var(--charcoal-medium) !important;
    color: var(--gold-primary) !important;
}

/* Form Controls */
.form-control {
    background: var(--charcoal-light) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--cream-light) !important;
}

.form-control:focus {
    border-color: var(--gold-primary) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Background Sections */
.bg-light {
    background-color: var(--charcoal-light) !important;
}

.ftco-section {
    /* padding-top: 5em;
    padding-bottom: 5em; */
}

/* Services section — ensure the fixed-height scroll panel never bleeds into next section */
#services {
    /* padding-bottom: 6em; */
    overflow: visible;
}

.heading-section .mb-4 {
    color: var(--gold-primary);
}

/* Service Filter Buttons */
.service-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    justify-content: flex-start;
    align-items: stretch;
    flex-direction: column;
    
    padding: 10px;
    background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(197,160,89,0.06) 100%);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.service-filter-buttons::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.6), transparent);
    pointer-events: none;
}

/* Sidebar column full height */
.services-sidebar-col {
    display: flex;
    flex-direction: column;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(197, 160, 89, 0.45);
    color: var(--gold-primary);
    padding: 12px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: 'Montserrat', sans-serif;
    border-radius: 10px;
    white-space: normal;
    text-align: left;
    width: 100%;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow:
        0 2px 8px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 60%;
    height: 200%;
    background: linear-gradient(105deg, transparent 20%, rgba(255,255,255,0.12) 50%, transparent 80%);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.filter-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(197,160,89,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.filter-btn:hover {
    background: linear-gradient(135deg, rgba(197,160,89,0.18) 0%, rgba(197,160,89,0.08) 100%);
    color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateX(6px) translateZ(8px) scale(1.01);
    box-shadow:
        0 6px 20px rgba(197, 160, 89, 0.25),
        0 2px 8px rgba(0,0,0,0.4),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.filter-btn:hover::before {
    left: 120%;
}

.filter-btn:hover::after {
    opacity: 1;
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(197,160,89,0.35) 0%, rgba(176,141,87,0.25) 100%);
    color: var(--gold-light);
    border-color: var(--gold-primary);
    box-shadow:
        0 8px 24px rgba(197, 160, 89, 0.35),
        0 0 0 1px rgba(197,160,89,0.3),
        inset 0 1px 0 rgba(255,255,255,0.12),
        inset 0 0 15px rgba(197,160,89,0.08);
    transform: translateX(6px) scale(1.01);
}

.filter-btn.active::after {
    opacity: 1;
}

/* Staff Carousel Wrapper */
.staff-carousel-wrapper {
    position: relative;
    padding: 20px 20px 20px 20px;
    margin: 0;
    height: 780px;
    overflow-y: auto;
    overflow-x: visible;
    /* Premium gold scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--gold-primary) rgba(255,255,255,0.06);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(197,160,89,0.1);
}

/* Webkit scrollbar styling */
.staff-carousel-wrapper::-webkit-scrollbar {
    width: 6px;
}
.staff-carousel-wrapper::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
}
.staff-carousel-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-primary), var(--gold-dark));
    border-radius: 3px;
    box-shadow: 0 0 6px rgba(197,160,89,0.4);
}
.staff-carousel-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}

.staff-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-content: center;
    padding: 10px 6px 10px 6px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Controls — hidden */
.carousel-control {
    display: none !important;
}

.carousel-control.prev {
    display: none !important;
}

.carousel-control.next {
    display: none !important;
}

/* Carousel Dots/Pagination */
.carousel-dots {
    display: none;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.dot:hover {
    background: var(--gold-light);
    border-color: var(--gold-primary);
}

.dot.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .staff-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .staff-carousel {
        grid-template-columns: repeat(2, 1fr);
    }

    .staff-carousel-wrapper {
        padding: 20px 40px;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .service-filter-buttons {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .staff-carousel {
        grid-template-columns: 1fr;
    }

    .staff-carousel-wrapper {
        padding: 20px 30px;
    }

    .carousel-control {
        width: 35px;
        height: 35px;
    }

    .service-filter-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .filter-btn {
        width: 100%;
        padding: 10px;
    }
}

/* Scroll Modal Overlay */
.scroll-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    perspective: 2000px;
}

.scroll-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.scroll-container {
    position: relative;
    width: 1500px;
    max-width: 98vw;
    height: 92vh;
    max-height: 95vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform-style: preserve-3d;
}

.scroll-image-wrapper {
    position: relative;
    width: 0;
    height: 100%;
    overflow: hidden;
    transform: translateZ(-500px) scale(0.7);
    filter: blur(8px);
    opacity: 0;
}

.scroll-modal-overlay.active .scroll-image-wrapper {
    animation: unrollScroll 1.8s cubic-bezier(0.25, 1, 0.3, 1) forwards;
}

@keyframes unrollScroll {
    0% {
        width: 10%;
        transform: translateZ(-500px) scale(0.7);
        filter: blur(8px);
        opacity: 0.3;
    }
    60% {
        width: 100%;
        transform: translateZ(-300px) scale(0.85);
        filter: blur(3px);
        opacity: 0.8;
    }
    100% {
        width: 100%;
        transform: translateZ(0) scale(1);
        filter: blur(0);
        opacity: 1;
    }
}

.scroll-bg-img {
    width: 1300px;
    max-width: 95vw;
    height: 100%;
    object-fit: contain; 
}


.close-scroll {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-scroll:hover {
    color: var(--gold-primary);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .close-scroll { top: 10px; right: 10px; font-size: 2rem; }
}

/* Custom Mobile Drawer Navigation Styles */
@media (max-width: 991.98px) {
    /* Hide default bootstrap navbar on mobile */
    #ftco-navbar {
        display: none !important;
    }

    /* Custom Mobile Header Bar */
    .mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 65px;
        background: rgba(18, 18, 18, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(197, 160, 89, 0.2);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
        z-index: 9999;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .mobile-brand {
        font-family: 'Playfair Display', serif;
        font-weight: 800;
        font-size: 1.4rem;
        color: var(--gold-primary) !important;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none !important;
    }

    /* Hamburger Menu Button */
    .mobile-menu-toggle {
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        padding: 0;
        z-index: 10001;
    }

    .hamburger-line {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--gold-primary);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        transform-origin: left center;
    }

    /* Hamburger Animation when Active */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(2px, -1px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(2px, 1px);
    }

    /* Mobile Drawer Overlay */
    .mobile-drawer-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 9998;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .mobile-drawer-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    /* Mobile Drawer Menu */
    .mobile-drawer {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: rgba(18, 18, 18, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(197, 160, 89, 0.2);
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.6);
        z-index: 10000;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        flex-direction: column;
        padding: 30px 24px;
    }

    .mobile-drawer.active {
        right: 0;
    }

    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 20px;
    }

    .drawer-logo {
        font-family: 'Playfair Display', serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--gold-primary);
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .close-drawer {
        background: transparent;
        border: none;
        font-size: 2.2rem;
        color: rgba(255, 255, 255, 0.6);
        cursor: pointer;
        padding: 0;
        line-height: 1;
        transition: color 0.3s ease;
    }

    .close-drawer:hover {
        color: var(--gold-primary);
    }

    /* Drawer Navigation Links */
    .mobile-drawer-nav {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .drawer-nav-item a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 1.05rem;
        color: var(--cream-light) !important;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        text-decoration: none !important;
        transition: color 0.3s ease, padding-left 0.3s ease;
        display: block;
    }

    .drawer-nav-item a:hover,
    .drawer-nav-item.active a {
        color: var(--gold-primary) !important;
        padding-left: 8px;
    }

    .drawer-footer {
        margin-top: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 30px;
    }

    .drawer-footer .btn-primary {
        width: 100%;
        text-align: center;
        border-radius: 30px;
        padding: 12px 20px !important;
        font-size: 0.9rem;
    }
}

/* Sticky Main Navbar */
#ftco-navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
    background: rgba(8, 6, 4, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding-top: 1px;
    padding-bottom: 1px;
    margin-top: 0vh;
}
@media(max-width:767px){
    #ftco-navbar{
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 0vh;
    }
}

/* Services Hero Section */
.services-hero-section {
	background: #080604;
	color: #ffffff;
	padding: 140px 0 60px; /* Reduced height and gap */
	position: relative;
	overflow: hidden;
}
.hero-video-bg {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100vw;
	min-width: 100vw;
	height: 100%;
	transform: translateX(-50%);
	object-fit: cover;
	z-index: 0;
}
.hero-video-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}
.services-hero-section .container {
	position: relative;
	z-index: 2;
}
.services-hero-section .hero-subtitle {
	color: #d8c397;
	font-size: 0.85rem;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
}
.services-hero-section .hero-subtitle svg path {
	fill: #d8c397 !important;
}
.services-hero-section .hero-title {
	font-size: 4rem;
	color: #ffffff;
	font-family: 'Playfair Display', Georgia, serif;
	margin-bottom: 1.5rem;
	font-weight: 700;
}
.services-hero-section .hero-description {
	font-size: 1.1rem;
	color: rgba(255,255,255,0.9);
	line-height: 1.8;
	max-width: 600px;
	margin: 0 auto;
	font-weight: 500;
}
@media (max-width: 768px) {
	.services-hero-section {
		padding: 100px 0 50px;
	}
	.services-hero-section .hero-title {
		font-size: 3rem;
	}
}

/* Sticky Services Navigation */
.services-nav-wrapper {
    position: sticky;
    top: 60px; /* Sticky below navbar */
    z-index: 1020;
    background: rgba(8, 6, 4, 0.85); /* #080604 with opacity */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15); /* gold border */
    padding: 15px 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.services-nav-scroll {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    overflow-x: auto;
    /* Hide scrollbar for clean look */
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 15px;
}
.services-nav-scroll::-webkit-scrollbar {
    display: none;
}

.service-nav-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    white-space: nowrap;
    border-radius: 40px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
}

/* Sweep effect on hover */
.service-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

/* Active Golden Base */
.service-nav-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-nav-btn .btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease, transform 0.4s ease;
    display: inline-block;
    padding-left: 2px; /* Balances the 2px letter-spacing for perfect centering */
}

.service-nav-btn .btn-indicator {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 0 12px var(--gold-primary), 0 0 20px var(--gold-primary);
    opacity: 0;
}

.service-nav-btn:hover {
    color: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(197, 160, 89, 0.4);
    background: rgba(197, 160, 89, 0.08);
}

.service-nav-btn:hover::before {
    left: 200%;
}

.service-nav-btn:hover .btn-indicator {
    bottom: 6px;
    opacity: 1;
}

.service-nav-btn.active {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%) !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.6), inset 0 -2px 5px rgba(0,0,0,0.2), 0 0 15px rgba(197, 160, 89, 0.4);
    border-color: rgba(255, 255, 255, 0.95);
    font-weight: 800;
}

.service-nav-btn.active .btn-text {
    color: #000000 !important;
    font-weight: 800;
}

.service-nav-btn.active::after {
    display: none; /* Removing the pseudo-element to directly color the button background and prevent layering issues */
}

.service-nav-btn.active .btn-indicator {
    display: none;
}

.service-nav-btn.active:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.8), inset 0 -2px 5px rgba(0,0,0,0.1), 0 0 20px rgba(197, 160, 89, 0.6);
    color: #000000 !important;
}

/* Responsiveness for buttons */
@media (max-width: 991px) {
    .services-nav-scroll {
        justify-content: flex-start;
        padding-bottom: 10px;
    }
    .service-nav-btn {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}

/* Detailed Service Carousel Section */
.detailed-service-carousel-section {
    background: #080604;
    color: #f4efe4;
    padding: 80px 0;
}
.ds-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6), 0 0 40px rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.8s ease, opacity 0.8s ease;
}
.ds-image-wrapper:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 40px 70px rgba(0,0,0,0.8), 0 0 80px rgba(197, 160, 89, 0.35);
}
.ds-image {
    width: 100%;
    height: 569px;
    object-fit: cover;
    transition: transform 10s ease-in-out;
}
.ds-image-wrapper:hover .ds-image {
    transform: scale(1.06);
}
.ds-category {
    display: inline-block;
    color: var(--gold-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 6px 15px;
    border-radius: 30px;
    background: rgba(197, 160, 89, 0.05);
}
.ds-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-weight: 700;
}
.ds-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}


.ds-content-wrapper {
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}
/* Sub-options (Thumbnails) */
.ds-sub-options-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}
.ds-sub-option {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.6);
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.ds-sub-option:hover {
    background: rgba(197, 160, 89, 0.1);
    color: #fff;
    border-color: rgba(197, 160, 89, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.ds-sub-option.active {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-dark) 100%);
    color: #000;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4), inset 0 -2px 5px rgba(0,0,0,0.2);
    transform: translateY(-4px) scale(1.05);
    font-weight: 800;
}
.fade-out {
    opacity: 0;
    transform: translateY(30px) scale(0.95) rotateX(5deg);
}
.fade-in {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
}
