/* Theme Toggle - Fixed Position (Left Side, Vertically Centered) */
.theme-toggle {
    position: fixed;
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #e5e7eb;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.theme-toggle i {
    color: #fbbf24;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

body.dark-theme .theme-toggle {
    background: rgba(26, 26, 26, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-theme .theme-toggle i {
    color: #fbbf24;
}

body.dark-theme .theme-toggle:hover {
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Responsive - Hide on mobile to avoid conflicts */
@media (max-width: 768px) {
    .theme-toggle {
        left: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 2147483647;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(72, 145, 86, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Navigation - Base positioning (all screens) */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Desktop Navigation Styles */
@media (min-width: 969px) {
    nav {
        background: linear-gradient(135deg,
                    rgba(72, 145, 86, 0.15) 0%,
                    rgba(28, 55, 101, 0.15) 100%),
                    rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
        border-radius: 24px;
        border: 1px solid rgba(72, 145, 86, 0.2);
        box-shadow: 0 4px 16px rgba(72, 145, 86, 0.1),
                    inset 0 1px 1px rgba(255, 255, 255, 0.5);
    }

    nav.scrolled {
        top: 10px;
        padding: 1rem 2rem;
        background: linear-gradient(135deg,
                    rgba(72, 145, 86, 0.25) 0%,
                    rgba(28, 55, 101, 0.25) 100%),
                    rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(72, 145, 86, 0.3);
        box-shadow: 0 12px 40px rgba(72, 145, 86, 0.15),
                    inset 0 1px 1px rgba(255, 255, 255, 0.8);
    }

    body.dark-theme nav {
        background: linear-gradient(135deg,
                    rgba(72, 145, 86, 0.2) 0%,
                    rgba(28, 55, 101, 0.2) 100%),
                    rgba(10, 10, 10, 0.3);
        border: 1px solid rgba(72, 145, 86, 0.15);
        box-shadow: 0 4px 16px rgba(72, 145, 86, 0.2),
                    inset 0 1px 1px rgba(72, 145, 86, 0.1);
    }

    body.dark-theme nav.scrolled {
        background: linear-gradient(135deg,
                    rgba(72, 145, 86, 0.3) 0%,
                    rgba(28, 55, 101, 0.3) 100%),
                    rgba(10, 10, 10, 0.5);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(72, 145, 86, 0.2);
        box-shadow: 0 12px 40px rgba(72, 145, 86, 0.25),
                    inset 0 1px 1px rgba(72, 145, 86, 0.15);
    }
}

.logo {
    position: relative;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
}

.logo-full {
    display: block;
    height: 32px;
    width: auto;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.logo-short {
    position: absolute;
    left: 0;
    height: 36px;
    width: auto;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.95);
    pointer-events: none;
}

/* Desktop: Keep full logo always visible - no logo switching */
@media (min-width: 969px) {
    .logo-short {
        display: none !important;
    }

    .logo-full {
        display: block !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    #nav.scrolled .logo-full,
    nav.scrolled .logo-full {
        opacity: 1 !important;
        transform: scale(1) !important;
        pointer-events: auto !important;
    }
}

body.dark-theme .logo-full,
body.dark-theme .logo-short {
    filter: brightness(1.1);
}

/* Navigation Menu - Mobile First Approach */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

/* Desktop Navigation Menu (≥969px) */
@media (min-width: 969px) {
    .nav-menu {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .nav-menu > li > a {
        color: var(--dark-text);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        padding: 0.7rem 1.2rem;
        display: flex;
        align-items: center;
        gap: 0.4rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .nav-menu > li > a:hover {
        background: rgba(28, 55, 101, 0.1);
    }

    body.dark-theme .nav-menu > li > a {
        color: var(--dark-text-light);
    }

    body.dark-theme .nav-menu > li > a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 340px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px);
    border-radius: 24px;
    padding: 0.8rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1001;
}

body.dark-theme .dropdown {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 16px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    color: var(--dark-text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-theme .dropdown a {
    background: rgba(255, 255, 255, 0.05);
    color: var(--dark-text-light);
    border: 1px solid transparent;
}

.dropdown a:hover {
    transform: translateX(5px);
}

body.dark-theme .dropdown a:hover {
    /* Gradient styles applied via data-gradient attribute selectors below */
}

/* Unique gradient border hover effects for each dropdown item */
.dropdown a[data-gradient="1"]:hover {
    border: 1px solid transparent;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)) padding-box,
                linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899) border-box;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.dropdown a[data-gradient="2"]:hover {
    border: 1px solid transparent;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)) padding-box,
                linear-gradient(135deg, #10b981, #3b82f6, #8b5cf6) border-box;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.dropdown a[data-gradient="3"]:hover {
    border: 1px solid transparent;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)) padding-box,
                linear-gradient(135deg, #f59e0b, #ec4899, #8b5cf6) border-box;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.15);
}

.dropdown a[data-gradient="4"]:hover {
    border: 1px solid transparent;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)) padding-box,
                linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6) border-box;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.15);
}

/* Dark theme gradient borders */
body.dark-theme .dropdown a[data-gradient="1"]:hover {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)) padding-box,
                linear-gradient(135deg, #3b82f6, #8b5cf6, #ec4899) border-box;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

body.dark-theme .dropdown a[data-gradient="2"]:hover {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)) padding-box,
                linear-gradient(135deg, #10b981, #3b82f6, #8b5cf6) border-box;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

body.dark-theme .dropdown a[data-gradient="3"]:hover {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)) padding-box,
                linear-gradient(135deg, #f59e0b, #ec4899, #8b5cf6) border-box;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

body.dark-theme .dropdown a[data-gradient="4"]:hover {
    background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)) padding-box,
                linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6) border-box;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.25);
}

/* Enhanced icon gradient on hover for each dropdown item */
.dropdown a[data-gradient="1"]:hover i {
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
}

.dropdown a[data-gradient="2"]:hover i {
    background: linear-gradient(135deg, #34d399, #60a5fa);
}

.dropdown a[data-gradient="3"]:hover i {
    background: linear-gradient(135deg, #fbbf24, #f472b6);
}

.dropdown a[data-gradient="4"]:hover i {
    background: linear-gradient(135deg, #f472b6, #a78bfa);
}

.dropdown a:last-child {
    margin-bottom: 0;
}

.dropdown a i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.dropdown a:hover i {
    transform: scale(1.1) rotate(5deg);
}

.dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.dropdown-desc {
    font-size: 0.75rem;
    color: var(--gray-text);
    margin-top: 0.2rem;
}

body.dark-theme .dropdown-desc {
    color: rgba(226, 232, 240, 0.6);
}

.menu-toggle {
    display: none;
}

/* Contact Button - Primary Style in Nav */
.contact-btn {
    padding: 0.8rem 2rem;
    background: var(--dark-text);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

body.dark-theme .contact-btn {
    background: var(--light-text);
    color: var(--dark-text);
}

body.dark-theme .contact-btn:hover {
    background: var(--primary-green);
}

/* Mobile Contact Button */
.mobile-contact-item {
    display: none;
}

.mobile-contact-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    margin: 0.5rem 0;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--dark-text);
    color: white;
    border: none;
}

.mobile-contact-btn:hover {
    background: var(--primary-blue);
}

body.dark-theme .mobile-contact-btn {
    background: var(--light-text);
    color: var(--dark-text);
}

body.dark-theme .mobile-contact-btn:hover {
    background: var(--primary-green);
}

/* Floating Get Started CTA Widget */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 999;
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(72, 145, 86, 0.4);
    transition: all 0.3s ease;
    animation: floatingPulse 3s ease-in-out infinite;
}

.floating-cta-btn lottie-player {
    flex-shrink: 0;
    pointer-events: none;
}

.floating-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(72, 145, 86, 0.5);
    animation: none;
}

.floating-cta-btn i {
    font-size: 1.1rem;
}

.floating-cta-text {
    font-size: 1rem;
}

@keyframes floatingPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 8px 24px rgba(72, 145, 86, 0.4);
    }
    50% {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 12px 32px rgba(72, 145, 86, 0.5);
    }
}

body.dark-theme .floating-cta-btn {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    box-shadow: 0 8px 24px rgba(72, 145, 86, 0.6);
}

body.dark-theme .floating-cta-btn:hover {
    box-shadow: 0 12px 32px rgba(72, 145, 86, 0.7);
}

/* Desktop Styles - Ensure proper menu display */
@media (min-width: 969px) {
    .menu-toggle {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
        position: static !important;
        left: auto !important;
        flex-direction: row !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        gap: 0.5rem !important;
        transform: none !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    .mobile-menu-header {
        display: none !important;
    }

    .mobile-contact-item {
        display: none !important;
    }
}

/* Independent Mobile Menu - Always Hidden on Desktop */
.mobile-menu {
    display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 968px) {
    /* Mobile Navigation Bar */
    nav {
        width: calc(100% - 2rem);
        padding: 0.8rem 1.2rem;
        top: 1rem;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }

    nav.scrolled {
        top: 0.5rem;
        padding: 0.7rem 1.2rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border-radius: 12px;
    }

    body.dark-theme nav.scrolled {
        background: rgba(0, 0, 0, 0.1);
    }

    /* Hide Desktop Menu on Mobile */
    .nav-menu {
        display: none !important;
    }

    .contact-btn {
        display: none !important;
    }

    /* Logo in Header - Mobile */
    .logo {
        display: flex;
        align-items: center;
        position: relative;
        height: 36px;
        z-index: 1003;
    }

    .logo-full {
        display: block;
        height: 32px;
        width: auto;
        max-width: 140px;
        object-fit: contain;
        opacity: 1;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    /* Hide short logo on mobile - always show full logo */
    .logo-short {
        display: none !important;
    }

    body.dark-theme .logo-full {
        filter: brightness(1.1);
    }

    /* Hamburger Menu Toggle Button */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        z-index: 1003;
        transition: all 0.3s ease;
        padding: 0;
    }

    .menu-toggle:hover {
        background: rgba(0, 0, 0, 0.05);
    }

    .menu-toggle i {
        font-size: 1.3rem;
        color: var(--dark-text);
        transition: all 0.3s ease;
    }

    body.dark-theme .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    body.dark-theme .menu-toggle i {
        color: var(--light-text);
    }

    /* Show Independent Mobile Menu */
    .mobile-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 100%;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.95) 100%);
        backdrop-filter: blur(40px);
        -webkit-backdrop-filter: blur(40px);
        z-index: 1002;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    body.dark-theme .mobile-menu {
        background: linear-gradient(135deg,
            rgba(10, 10, 10, 0.98) 0%,
            rgba(26, 26, 26, 0.95) 100%);
    }

    /* Show menu when active */
    .mobile-menu.active {
        left: 0;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(72, 145, 86, 0.1);
        position: relative;
    }

    body.dark-theme .mobile-menu-header {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-logo {
        height: 32px;
        width: auto;
        cursor: pointer;
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .mobile-menu-close:hover {
        background: rgba(72, 145, 86, 0.1);
    }

    body.dark-theme .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-close i {
        font-size: 1.5rem;
        color: var(--dark-text);
        transition: all 0.3s ease;
    }

    body.dark-theme .mobile-menu-close i {
        color: var(--light-text);
    }

    .mobile-menu-close:hover i {
        transform: rotate(90deg);
    }

    /* Mobile Menu List */
    .mobile-menu-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    /* Mobile Menu Items */
    .mobile-menu-item {
        border-bottom: 1px solid rgba(72, 145, 86, 0.1);
    }

    body.dark-theme .mobile-menu-item {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 1.2rem 1.5rem;
        min-height: 56px;
        font-size: 1.1rem;
        font-weight: 500;
        color: var(--dark-text);
        text-decoration: none;
        transition: background 0.3s ease;
    }

    body.dark-theme .mobile-menu-link {
        color: var(--light-text);
    }

    .mobile-menu-link:hover,
    .mobile-menu-link:active {
        background: rgba(72, 145, 86, 0.08);
    }

    body.dark-theme .mobile-menu-link:hover,
    body.dark-theme .mobile-menu-link:active {
        background: rgba(255, 255, 255, 0.05);
    }

    /* Mobile Submenu */
    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        background: rgba(72, 145, 86, 0.05);
        transition: max-height 0.3s ease;
    }

    body.dark-theme .mobile-submenu {
        background: rgba(255, 255, 255, 0.03);
    }

    .mobile-menu-item.active .mobile-submenu {
        max-height: 1000px;
    }

    .mobile-submenu-link {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 1.5rem 1rem 2.5rem;
        min-height: 52px;
        color: var(--dark-text);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    body.dark-theme .mobile-submenu-link {
        color: var(--light-text);
    }

    .mobile-submenu-link:hover,
    .mobile-submenu-link:active {
        background: rgba(72, 145, 86, 0.08);
        padding-left: 3rem;
    }

    body.dark-theme .mobile-submenu-link:hover,
    body.dark-theme .mobile-submenu-link:active {
        background: rgba(255, 255, 255, 0.05);
    }

    .mobile-submenu-link i {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
        color: white;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .mobile-submenu-label {
        display: block;
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }

    .mobile-submenu-desc {
        display: block;
        font-size: 0.75rem;
        color: var(--gray-text);
    }

    body.dark-theme .mobile-submenu-desc {
        color: rgba(226, 232, 240, 0.6);
    }

    /* Mobile Menu Footer */
    .mobile-menu-footer {
        padding: 1.5rem;
        margin-top: auto;
        border-top: 1px solid rgba(72, 145, 86, 0.1);
    }

    body.dark-theme .mobile-menu-footer {
        border-top-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-cta-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 16px;
        font-weight: 600;
        font-size: 1.05rem;
        background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
        color: white;
        border: none;
        box-shadow: 0 4px 12px rgba(72, 145, 86, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-cta-btn lottie-player {
        flex-shrink: 0;
        pointer-events: none;
    }

    .mobile-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(72, 145, 86, 0.4);
    }

    body.dark-theme .mobile-cta-btn {
        background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Hide floating CTA on mobile */
    .floating-cta {
        display: none;
    }
}