       :root {
            --dv-dark: #4B4642;
            --dv-talk-bg: #635E5A;
            --dv-medium: #7A7671;
            --dv-beige: #D9D4CC;
            --dv-light: #F8F7F5;
            --dv-gold: #cf8a64;
            --dv-gold-deep: #A67C52;
            --dv-orig: #d0cbbb;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            scroll-behavior: smooth;
            background-color: white;
            color: #1e293b;
            margin: 0;
            overflow-x: hidden;
        }

        .bg-dv-dark { background-color: var(--dv-dark); }
        .bg-dv-talk { background-color: var(--dv-talk-bg); }
        .bg-dv-medium { background-color: var(--dv-medium); }
        .bg-dv-beige { background-color: var(--dv-beige); }
        .text-dv-dark { color: var(--dv-dark); }
        .text-dv-medium { color: var(--dv-medium); }
        
        /* Gradient for Stats Section */
        .stats-gradient-bg {
            background: linear-gradient(-45deg, #2D2926, #A67C52, #4B4642, #cf8a64, #a38c7f, #2D2926);
            background-size: 400% 400%;
            animation: gradient-animation 10s ease infinite;
        }

        @keyframes gradient-animation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Floating CTA - Mobile Only, Single Button */
        .floating-cta-container {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 9999;
            width: 90%;
            max-width: 400px;
            display: flex;
        }

        @media (min-width: 768px) {
            .floating-cta-container {
                display: none !important; /* Entirely removed on Desktop */
            }
        }

        /* Hero Video Section */
        .youtube-hero-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            background: black;
            height: 80vh; 
        }
        
        @media (min-width: 769px) {
            .youtube-hero-container {
                height: 90vh; 
            }
        }

        .youtube-hero-container iframe {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 56.25vw;
            min-height: 100%;
            min-width: 177.77%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        /* Logic to fill container */
        @media (max-aspect-ratio: 16/9) {
            .youtube-hero-container iframe {
                width: 177.77vh;
                height: 100vh;
            }
        }
        @media (min-aspect-ratio: 16/9) {
            .youtube-hero-container iframe {
                width: 100vw;
                height: 56.25vw;
            }
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        @keyframes subtle-rotate {
            0% { transform: rotate(0deg); }
            25% { transform: rotate(5deg); }
            75% { transform: rotate(-5deg); }
            100% { transform: rotate(0deg); }
        }

        .service-card:hover .service-icon {
            animation: float 2s ease-in-out infinite;
        }

        .service-card:hover i {
            animation: subtle-rotate 3s ease-in-out infinite;
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal Styles */
        #legalModal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

        #modalContent {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: white;
            padding: 40px;
            border-radius: 20px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
        }

        /* Text Justification Fix */
        .text-justify-custom {
            text-align: justify;
            text-justify: inter-word;
        }

        /* Line clamping */
        .line-clamp-6 {
            display: -webkit-box;
            -webkit-line-clamp: 6;
            -webkit-box-orient: vertical;  
            overflow: hidden;
        }

        .youtube-hero-container {
    position: relative;
}

.sound-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
    /* CHANGED Z-INDEX TO FIX OVERLAP WITH STICKY HEADER (z-50) */
    z-index: 40; 
}

.sound-btn:hover {
    background: rgba(0,0,0,0.8);
}


/* Mobile */
@media (max-width: 768px) {
    .consult-title22 {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .consult-title22 {
        font-size: 2.2rem !important;
    }
}

/* ------------------------------------- */
/* TOP NAVIGATION STYLES                 */
/* ------------------------------------- */
.dvn-nav-container {
    display: none; 
    z-index: 1000;
}

@media (min-width: 769px) {
    .dvn-nav-container {
        display: flex;
        flex: 1;
        justify-content: center;
        padding: 0 2rem;
    }
}

/* Mobile Nav Active State */
.dvn-nav-container.dvn-mobile-active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--dv-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
}

.dvn-nav-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 769px) {
    .dvn-nav-list {
        flex-direction: row;
        gap: 2.5rem;
        align-items: center;
    }
}

.dvn-nav-item {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
@media (min-width: 769px) {
    .dvn-nav-item {
        border-bottom: none;
    }
}

.dvn-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.3s;
}
.dvn-nav-link:hover { color: var(--dv-beige); }
@media (min-width: 769px) {
    .dvn-nav-link { padding: 0.5rem 0; }
}

/* Dropdown Level 1 */
.dvn-dropdown {
    display: none;
    background-color: #3b3734;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (min-width: 769px) {
    .dvn-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        min-width: 240px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 0.5rem 0;
        margin-top: 1.5rem;
    }
    .dvn-nav-item::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 1.5rem;
    }
    .dvn-nav-item:hover > .dvn-dropdown { display: block; }
}
.dvn-dropdown.dvn-open { display: block; }

.dvn-dropdown li a {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.5rem;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.2s, color 0.2s;
}
@media (min-width: 769px) {
    .dvn-dropdown li a {
        color: var(--dv-dark);
        border-bottom: 1px solid #f1f1f1;
    }
    .dvn-dropdown li a:hover {
        background-color: var(--dv-dark);
        color: var(--dv-beige);
    }
}

/* Dropdown Level 2 (Submenu) */
.dvn-has-submenu { position: relative; }
.dvn-sub-dropdown {
    display: none;
    background-color: #2D2926;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (min-width: 769px) {
    .dvn-sub-dropdown {
        position: absolute;
        top: 0;
        left: 100%;
        background-color: white;
        min-width: 240px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 0.5rem 0;
        margin-left: 0.5rem;
    }
    .dvn-has-submenu::after {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        width: 0.5rem;
        height: 100%;
    }
    .dvn-has-submenu:hover > .dvn-sub-dropdown { display: block; }
}
.dvn-sub-dropdown.dvn-open { display: block; }

.dvn-sub-dropdown li a {
    padding-left: 2.5rem;
}
@media (min-width: 769px) {
    .dvn-sub-dropdown li a { padding-left: 1.5rem; }
}