        :root {
            --primary: #B95E82;
            --bg: #F3E9DC;
            --accent: #B6771D;
            --white: #FFFFFF;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg);
            color: #2D2419;
            margin: 0;
            overflow-x: hidden;
        }

        .font-rouge { font-family: 'Rouge Script', cursive; }
        
        .focus-sharpen {
            filter: blur(10px);
            opacity: 0;
            transition: filter 1.2s ease, opacity 1s ease, transform 1s ease;
            transform: scale(0.95);
        }
        .focus-sharpen.active {
            filter: blur(0);
            opacity: 1;
            transform: scale(1);
        }

        .animation-delay-100 { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; }
.animation-delay-200 { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.

        .glass-card {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(185, 94, 130, 0.1);
            border-radius: 24px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .glass-card:hover {
            background: rgba(255, 255, 255, 0.45);
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(45, 36, 25, 0.05);
        }


        /* Add to existing styles for category page animations */
.guide-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.guide-card:nth-child(1) { animation-delay: 0.1s; }
.guide-card:nth-child(2) { animation-delay: 0.2s; }
.guide-card:nth-child(3) { animation-delay: 0.3s; }
.guide-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentlePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.pulse-attention {
    animation: gentlePulse 2s infinite;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    background: linear-gradient(90deg, transparent, var(--primary) 10%, var(--primary) 90%, transparent);
    padding: 10px 0;
    border-radius: 40px;
    margin: 20px 0;
}

.marquee-text {
    display: inline-block;
    animation: marquee 25s linear infinite;
    padding-left: 100%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Add these animation styles to your existing CSS */
@keyframes gentlePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.guide-item {
    animation: slideInRight 0.5s ease forwards;
    opacity: 0;
}

.guide-item:nth-child(1) { animation-delay: 0.1s; }
.guide-item:nth-child(2) { animation-delay: 0.2s; }
.guide-item:nth-child(3) { animation-delay: 0.3s; }
.guide-item:nth-child(4) { animation-delay: 0.4s; }

.section-animate {
    animation: fadeInUp 0.6s ease forwards;
}

.pulse-alert {
    animation: gentlePulse 2s infinite;
}
        
.mega-dropdown {
    display: none;
    position: fixed;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 90vw;
    max-width: 1400px;
    background: var(--bg);
    border-top: 1px solid rgba(185, 94, 130, 0.1);
    border-bottom: 1px solid rgba(185, 94, 130, 0.1);
    padding: 3rem 4rem;
    z-index: 100;
    animation: slideDown 0.4s ease-out forwards;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* For desktop - position relative to header */
@media (min-width: 1024px) {
    .mega-dropdown {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 90vw;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Dropdown container positioning */
#serviceDropdown {
    position: static;
}

@media (min-width: 1024px) {
    #serviceDropdown {
        position: relative;
    }
}

        .tree-line {
            position: relative;
            padding-left: 20px;
        }
        .tree-line::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background: var(--primary);
            opacity: 0.2;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }
        .slide.active { opacity: 1; }

        .search-results-overlay {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--white);
            border-radius: 0 0 24px 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            max-height: 400px;
            overflow-y: auto;
            display: none;
            z-index: 1000;
        }
        

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 1023px) {
    .desktop-nav {
        display: none !important;
    }
    
    .hamburger-btn {
        display: flex !important;
    }
}

/* Show desktop nav on desktop, hide hamburger */
@media (min-width: 1024px) {
    .desktop-nav {
        display: flex !important;
    }
    
    .hamburger-btn {
        display: none !important;
    }
}
