        body {
            font-family: 'Poppins', sans-serif;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        .heading-font {
            font-family: 'Playfair Display', serif;
        }

        /* ===== Hero Section ===== */
        .hero-bg {
            background: linear-gradient(rgba(97, 121, 71, 0.77), rgba(97, 121, 71, 0.75)), url('assets/img/vada-pav.jpg');
            background-size: cover;
            background-position: center;
            min-height: 90dvh;
        }

        /* ===== Color Utilities ===== */
        .olive-bg { background-color: #617947; }
        .olive-text { color: #617947; }
        .olive-border { border-color: #617947; }
        .olive-light { background-color: #f8f9f5; }
        .olive-dark { background-color: #4a5d38; }
        
        .olive-700 { 
            background-color: #617947 !important; 
            color: #617947 !important; 
        }
        .text-olive-700 { color: #617947 !important; }
        .border-olive-700 { border-color: #617947 !important; }
        .hover\:bg-olive-800:hover { background-color: #506644 !important; }

        /* ===== Enhanced Vibrant Styles ===== */
        .shadow-soft { box-shadow: 0 10px 30px rgba(17, 24, 39, 0.10); }
        .shadow-pop { box-shadow: 0 18px 45px rgba(17, 24, 39, 0.14); }

        .vibrant-card {
            position: relative;
            border: 1px solid rgba(97,121,71,0.14);
            background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
            box-shadow: 0 12px 34px rgba(17, 24, 39, 0.10);
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .vibrant-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 18px 48px rgba(17, 24, 39, 0.14);
            border-color: rgba(97,121,71,0.28);
        }

        .vibrant-card::after {
            content: "";
            position: absolute;
            inset: -2px;
            pointer-events: none;
            opacity: 0;
            background: linear-gradient(120deg, transparent 0%, rgba(97,121,71,0.10) 45%, transparent 70%);
            transform: translateX(-25%);
            transition: opacity .25s ease, transform .6s ease;
            border-radius: inherit;
        }

        .vibrant-card:hover::after {
            opacity: 1;
            transform: translateX(25%);
        }

        .icon-bubble {
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.55), rgba(255,255,255,0.08)),
                        linear-gradient(135deg, rgba(97,121,71,1), rgba(74,93,56,1));
            box-shadow: 0 12px 26px rgba(97,121,71,0.22);
        }

        .olive-top-accent {
            border-top: 4px solid var(--olive);
            border-image: linear-gradient(90deg, rgba(97,121,71,1), rgba(74,93,56,1)) 1;
        }

        .menu-list li {
            padding: 10px 0;
            border-bottom: 1px dashed rgba(107,114,128,0.35);
        }

        .menu-list li:last-child { border-bottom: 0; }

        .section-kicker {
            letter-spacing: .08em;
            text-transform: uppercase;
            font-weight: 700;
            color: rgba(97,121,71,0.95);
        }

        /* ===== Animations ===== */
        .floating-btn {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes bounce-delay {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .animate-bounce { animation: bounce 4s ease-in-out infinite; }
        .animate-bounce-delay { animation: bounce-delay 4s ease-in-out infinite 0.8s; }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== Menu Item Hover ===== */
        .menu-item {
            transition: transform 0.3s ease;
        }

        .menu-item:hover {
            transform: translateY(-5px);
        }

        /* ===== Background Sections ===== */
        #about { min-height: 90dvh; }

        #menu, #contact {
            background: linear-gradient(135deg, #f8f9f5c7 0%, rgba(92, 51, 23, 0.275) 50%, rgba(74, 94, 53, 0.286) 100%), 
                        url('assets/img/Back.jpg') center center / cover no-repeat;
        }

        /* ===== Mobile Menu ===== */
        #mobile-menu {
            transition: max-height 0.3s ease-in-out;
            max-height: 0;
            overflow: hidden;
        }

        #mobile-menu:not(.hidden) {
            max-height: 500px;
        }

        /* ===== Iframe Styling ===== */
        iframe {
            filter: grayscale(20%) sepia(10%);
            border-radius: 8px;
        }

        /* ===== Focus Styles ===== */
        a:focus-visible, button:focus-visible {
            outline: 3px solid rgba(97,121,71,0.35);
            outline-offset: 3px;
            border-radius: 9999px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 640px) {
            .hero-bg h1 { font-size: 2.5rem; }
            .hero-bg p.text-xl { font-size: 1.25rem; }
        }
/* ========================================
   ENHANCED WHY CHOOSE US SECTION STYLES
   ======================================== */

.premium-card {
    position: relative;
    height: 100%;
    perspective: 1000px;
}

.premium-card-inner {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,249,245,0.95) 100%);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(97,121,71,0.12);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    border: 2px solid rgba(97,121,71,0.1);
}

.premium-card:hover .premium-card-inner {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(97,121,71,0.25);
    border-color: rgba(97,121,71,0.3);
}

/* Animated Background Gradients */
.premium-gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    animation: rotateGradient 8s linear infinite;
}

.premium-card:hover .premium-gradient {
    opacity: 0.15;
}

.premium-gradient-1 {
    background: conic-gradient(from 0deg, #22c55e, #617947, #86efac, #22c55e);
}

.premium-gradient-2 {
    background: conic-gradient(from 120deg, #f59e0b, #617947, #fbbf24, #f59e0b);
}

.premium-gradient-3 {
    background: conic-gradient(from 240deg, #3b82f6, #617947, #60a5fa, #3b82f6);
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Icon Styling */
.premium-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.premium-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #617947 0%, #4a5d38 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    position: relative;
    box-shadow: 0 8px 24px rgba(97,121,71,0.3);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.premium-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(97,121,71,0.4), rgba(74,93,56,0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-card:hover .premium-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 40px rgba(97,121,71,0.45);
}

.premium-card:hover .premium-icon::before {
    opacity: 1;
}

/* Pulse Animation for Icons */
.premium-icon-pulse {
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Typography */
.premium-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #617947;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.premium-card-text {
    color: #4b5563;
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* Sparkle Decorations */
.premium-sparkle {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.premium-sparkle-1 {
    top: 20px;
    right: 20px;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.premium-sparkle-2 {
    bottom: 20px;
    left: 20px;
    animation: sparkleFloat 3s ease-in-out infinite 1.5s;
}

.premium-card:hover .premium-sparkle {
    opacity: 0.7;
}

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

/* ========================================
   ENHANCED CUISINE HIGHLIGHTS SECTION
   ======================================== */

.cuisine-card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid transparent;
    box-shadow: 0 8px 30px rgba(17, 24, 39, 0.08);
}

.cuisine-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(97,121,71,0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cuisine-card:hover::before {
    opacity: 1;
}

.cuisine-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(97,121,71,0.2);
}

/* Gradient Variants */
.cuisine-card-gradient-1:hover { background: linear-gradient(135deg, #fef3c7 0%, #ffffff 50%); }
.cuisine-card-gradient-2:hover { background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%); }
.cuisine-card-gradient-3:hover { background: linear-gradient(135deg, #fee2e2 0%, #ffffff 50%); }
.cuisine-card-gradient-4:hover { background: linear-gradient(135deg, #d1fae5 0%, #ffffff 50%); }
.cuisine-card-gradient-5:hover { background: linear-gradient(135deg, #fce7f3 0%, #ffffff 50%); }
.cuisine-card-gradient-6:hover { background: linear-gradient(135deg, #e0e7ff 0%, #ffffff 50%); }
.cuisine-card-gradient-7:hover { background: linear-gradient(135deg, #fef9c3 0%, #ffffff 50%); }

/* Glow Effect */
.cuisine-card-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.cuisine-glow-1 { background: #fbbf24; top: -60px; right: -60px; }
.cuisine-glow-2 { background: #60a5fa; top: -60px; left: -60px; }
.cuisine-glow-3 { background: #f87171; bottom: -60px; right: -60px; }
.cuisine-glow-4 { background: #34d399; bottom: -60px; left: -60px; }
.cuisine-glow-5 { background: #ec4899; top: -60px; right: -60px; }
.cuisine-glow-6 { background: #8b5cf6; top: -60px; left: -60px; }
.cuisine-glow-7 { background: #eab308; bottom: -60px; right: -60px; }

.cuisine-card:hover .cuisine-card-glow {
    opacity: 0.25;
}

/* Icon Container */
.cuisine-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cuisine-icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(97,121,71,0.25);
}

.cuisine-icon-bg-1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.cuisine-icon-bg-2 { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.cuisine-icon-bg-3 { background: linear-gradient(135deg, #f87171, #ef4444); }
.cuisine-icon-bg-4 { background: linear-gradient(135deg, #34d399, #10b981); }
.cuisine-icon-bg-5 { background: linear-gradient(135deg, #ec4899, #db2777); }
.cuisine-icon-bg-6 { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.cuisine-icon-bg-7 { background: linear-gradient(135deg, #eab308, #ca8a04); }

.cuisine-card:hover .cuisine-icon-bg {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 15px 45px rgba(97,121,71,0.4);
}

.cuisine-icon-main {
    font-size: 36px;
    color: white;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cuisine-card:hover .cuisine-icon-main {
    transform: scale(1.2) rotateY(360deg);
}

/* Typography */
.cuisine-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #617947;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.cuisine-card-desc {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Shine Effect on Hover */
.cuisine-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.8s ease;
    pointer-events: none;
}

.cuisine-card:hover .cuisine-card-shine {
    left: 100%;
}

/* ========================================
   ENHANCED CTA BUTTON WITH GRADIENT
   ======================================== */

.cta-button-gradient {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #617947 0%, #4a5d38 100%);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(97,121,71,0.3);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cta-button-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4a5d38 0%, #617947 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button-gradient:hover::before {
    opacity: 1;
}

.cta-button-gradient:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 45px rgba(97,121,71,0.45);
}

.cta-button-text {
    position: relative;
    z-index: 2;
}

.cta-button-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.cta-button-gradient:hover .cta-button-icon {
    transform: translateX(6px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .premium-card-inner {
        padding: 32px 24px;
    }
    
    .premium-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .cuisine-icon-container {
        width: 70px;
        height: 70px;
    }
    
    .cuisine-icon-main {
        font-size: 30px;
    }
}

/* ========================================
   CIRCULAR IMAGE SLIDER STYLES
   ======================================== */

.circular-slider-container {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    border-radius: 50px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #617947;
    border-color: #617947;
    width: 24px;
    border-radius: 5px;
}

/* Hover effect for circular slider */
.circular-slider-container:hover .slider-img {
    transform: scale(1.05);
}

.slider-img {
    transition: transform 0.7s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slider-dots {
        bottom: 15px;
        gap: 8px;
        padding: 6px 12px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dot.active {
        width: 20px;
    }
}

/* ========================================
   HERO BRAND TEXT - PROMINENT STYLE
   ======================================== */

.hero-brand-text {
    background: linear-gradient(135deg, #617947 0%, #4a5d38 50%, #84cc16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(97, 121, 71, 0.4);
    filter: drop-shadow(0 4px 12px rgba(97, 121, 71, 0.5)) 
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    display: inline-block;
    animation: brandPulse 3s ease-in-out infinite;
}

/* Add glow effect behind text */
.hero-brand-text::before {
    content: 'TASTY HEAVEN';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: #84cc16;
    filter: blur(20px);
    opacity: 0.6;
}

/* Subtle pulse animation */
@keyframes brandPulse {
    0%, 100% {
        filter: drop-shadow(0 4px 12px rgba(97, 121, 71, 0.5)) 
                drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    50% {
        filter: drop-shadow(0 6px 20px rgba(97, 121, 71, 0.7)) 
                drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
    }
}


/* ========================================
   HERO BRAND TEXT - PROMINENT STYLE
   ======================================== */

.hero-brand-text {
    background: linear-gradient(135deg, #617947 0%, #4a5d38 50%, #84cc16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(97, 121, 71, 0.4);
    filter: drop-shadow(0 4px 12px rgba(97, 121, 71, 0.5)) 
            drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    position: relative;
    display: inline-block;
    animation: brandPulse 3s ease-in-out infinite;
}

/* Add glow effect behind text */
.hero-brand-text::before {
    content: 'TASTY HEAVEN';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    color: #84cc16;
    filter: blur(20px);
    opacity: 0.6;
}

/* Subtle pulse animation */
@keyframes brandPulse {
    0%, 100% {
        filter: drop-shadow(0 4px 12px rgba(97, 121, 71, 0.5)) 
                drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }
    50% {
        filter: drop-shadow(0 6px 20px rgba(97, 121, 71, 0.7)) 
                drop-shadow(0 3px 8px rgba(0, 0, 0, 0.4));
    }
}



/* ========================================
   HERO GRADIENT BACKGROUND
   ======================================== */

.hero-gradient-bg {
    background: linear-gradient(135deg, 
        #43f97b 0%,          /* Light green */
        #2b4033 15%,         /* Lighter green */
        #ccb453 35%,         /* Light yellow */
        #fed7aa 50%,         /* Light peach */
        #ad9946 65%,         /* Soft yellow */
        #d9f99d 80%,         /* Lime green */
        #e0f2fe 100%         /* Very light blue */
    );
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

/* Animated gradient shift */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Alternative: Radial gradient option (comment out above and use this if preferred) */
.hero-gradient-bg-radial {
    background: radial-gradient(ellipse at top left, 
        #f0fdf4 0%, 
        #dcfce7 20%, 
        #fef3c7 40%, 
        #fed7aa 60%, 
        #e0f2fe 100%
    );
}

/* Enhanced shape patterns to work with gradient */
.shape-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: floatShape 12s ease-in-out infinite;
}

.shape-circle-1 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(97,121,71,0.3), transparent 70%);
    top: 10%;
    left: 15%;
}

.shape-circle-2 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(251,146,60,0.25), transparent 70%);
    top: 20%;
    right: 20%;
    animation-delay: 1s;
}

.shape-circle-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(74,222,128,0.22), transparent 70%);
    bottom: 25%;
    left: 10%;
    animation-delay: 2s;
}

.shape-circle-4 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(250,204,21,0.2), transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 1.5s;
}

.shape-circle-5 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(249,115,22,0.28), transparent 70%);
    bottom: 15%;
    right: 30%;
    animation-delay: 0.5s;
}

.shape-circle-6 {
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(132,204,22,0.2), transparent 70%);
    top: 35%;
    left: 25%;
    animation-delay: 2.5s;
}

.shape-circle-7 {
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, rgba(234,179,8,0.18), transparent 70%);
    bottom: 40%;
    right: 40%;
    animation-delay: 1.2s;
}

.shape-circle-8 {
    width: 170px;
    height: 170px;
    background: radial-gradient(circle, rgba(34,197,94,0.16), transparent 70%);
    top: 60%;
    left: 40%;
    animation-delay: 1.8s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    33% {
        transform: translateY(-25px) translateX(15px) scale(1.1);
    }
    66% {
        transform: translateY(15px) translateX(-10px) scale(0.95);
    }
}

/* Enhanced SVG Icons for gradient background */
.svg-icons-container {
    position: absolute;
    inset: 0;
    z-index: 3;
}

.svg-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.3;
    animation: rotateIconFloat 22s ease-in-out infinite;
    filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.12));
}

/* Leaf Icons (Various greens) */
.leaf-1 {
    top: 15%;
    left: 40%;
    color: #4a5d38;
    width: 95px;
    height: 95px;
}

.leaf-2 {
    bottom: 30%;
    right: 15%;
    color: #16a34a;
    width: 90px;
    height: 90px;
    animation-delay: 4s;
}

.leaf-3 {
    top: 60%;
    left: 20%;
    color: #65a30d;
    width: 100px;
    height: 100px;
    animation-delay: 8s;
}

/* Carrot Icons (Orange shades) */
.carrot-1 {
    top: 25%;
    right: 35%;
    color: #ea580c;
    width: 80px;
    height: 80px;
    animation-delay: 2s;
}

.carrot-2 {
    bottom: 45%;
    left: 12%;
    color: #fb923c;
    width: 85px;
    height: 85px;
    animation-delay: 6s;
}

/* Pepper Icons (Red tones) */
.pepper-1 {
    top: 35%;
    right: 25%;
    color: #dc2626;
    width: 90px;
    height: 90px;
    animation-delay: 1s;
}

.pepper-2 {
    bottom: 20%;
    left: 35%;
    color: #f87171;
    width: 75px;
    height: 75px;
    animation-delay: 5s;
}

@keyframes rotateIconFloat {
    0%, 100% {
        transform: rotate(0deg) scale(1) translateY(0px);
        opacity: 0.3;
    }
    25% {
        transform: rotate(90deg) scale(1.15) translateY(-15px);
        opacity: 0.4;
    }
    50% {
        transform: rotate(180deg) scale(1) translateY(0px);
        opacity: 0.35;
    }
    75% {
        transform: rotate(270deg) scale(1.15) translateY(10px);
        opacity: 0.4;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .shape {
        opacity: 0.35;
    }
    
    .shape-circle-1,
    .shape-circle-2,
    .shape-circle-3,
    .shape-circle-4,
    .shape-circle-5,
    .shape-circle-6,
    .shape-circle-7,
    .shape-circle-8 {
        width: 120px !important;
        height: 120px !important;
    }
    
    .svg-icon {
        width: 65px !important;
        height: 65px !important;
        opacity: 0.25;
    }
}


/* ========================================
   3D BOOK FLIP MENU - SIDE BY SIDE PAGES
   ======================================== */

.book-menu-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    perspective: 2500px;
}

.book-container {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    height: 85vh;
    min-height: 700px;
    max-height: 900px;
    display: flex;
    transform-style: preserve-3d;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background: white;
}

/* ========================================
   LEFT & RIGHT PAGE SIDES
   ======================================== */

.book-left-side,
.book-right-side {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.book-left-side {
    border-radius: 8px 0 0 8px;
    box-shadow: inset -2px 0 5px rgba(0, 0, 0, 0.1);
}

.book-right-side {
    border-radius: 0 8px 8px 0;
    box-shadow: inset 2px 0 5px rgba(0, 0, 0, 0.1);
}

.page-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Page transition effects */
.page-content.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

/* ========================================
   BOOK SPINE (CENTER LINE)
   ======================================== */

.book-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.08) 50%,
        rgba(0,0,0,0.2) 100%
    );
    transform: translateX(-50%);
    z-index: 10;
    border-radius: 2px;
    box-shadow: 
        0 0 10px rgba(0, 0, 0, 0.4),
        inset 2px 0 3px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

/* ========================================
   COVER PAGE STYLES
   ======================================== */

.cover-page-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #617947 0%, #4a5d38 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    color: white;
    text-align: center;
    position: relative;
}

.cover-logo {
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    background: white;
    padding: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cover-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cover-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cover-divider {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin: 20px auto;
    animation: scaleIn 0.6s ease-out 0.6s both;
}

.cover-instruction {
    font-size: 1rem;
    opacity: 0.85;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cover-instruction i {
    font-size: 1.2rem;
    animation: pointPulse 2s ease-in-out infinite;
}

@keyframes pointPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

.cover-badge {
    position: absolute;
    bottom: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.cover-badge i {
    color: #86efac;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* ========================================
   MENU PAGE STYLES
   ======================================== */

.menu-page-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

.menu-bg-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-bg-image:hover {
    transform: scale(1.02);
}

/* Zoom Button */
.zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(97, 121, 71, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.menu-page-content:hover .zoom-btn {
    opacity: 1;
}

.zoom-btn:hover {
    background: rgba(74, 93, 56, 1);
    transform: scale(1.1);
}

/* ========================================
   BACK COVER
   ======================================== */

.back-cover-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a5d38 0%, #617947 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.back-cover-text {
    text-align: center;
    color: white;
}

.back-cover-text h3 {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
}

.back-cover-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.phone-link-front {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 5px 20px;
  border-radius: 50px;
  border: none;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* ========================================
   NAVIGATION CONTROLS
   ======================================== */

.book-controls {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.book-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #617947 0%, #4a5d38 100%);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(97, 121, 71, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-nav-btn:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(97, 121, 71, 0.4);
}

.book-nav-btn:active:not(:disabled) {
    transform: translateY(-1px) scale(1.02);
}

.book-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-indicator {
    font-size: 1.2rem;
    font-weight: 600;
    color: #617947;
    padding: 12px 24px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    text-align: center;
}

#currentPage {
    font-size: 1.3rem;
    color: #4a5d38;
    font-weight: 700;
}

/* ========================================
   ZOOM MODAL
   ======================================== */

.zoom-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zoom-modal.active {
    display: flex;
    opacity: 1;
}

.zoom-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
}

#zoomedImage {
    max-width: none;
    height: auto;
    cursor: grab;
    transition: transform 0.3s ease;
    user-select: none;
}

#zoomedImage:active {
    cursor: grabbing;
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.zoom-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.zoom-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.zoom-controls button {
    width: 44px;
    height: 44px;
    background: rgba(97, 121, 71, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-controls button:hover {
    background: #4a5d38;
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVE - MOBILE (SINGLE PAGE)
   ======================================== */

@media (max-width: 768px) {
    .book-container {
        width: 95vw;
        height: 70vh;
        min-height: 500px;
        flex-direction: column;
    }
    
    /* Hide left page on mobile, show only right */
    .book-left-side {
        display: none;
    }
    
    .book-right-side {
        width: 100%;
        border-radius: 8px;
        box-shadow: none;
    }
    
    /* Hide spine on mobile */
    .book-spine {
        display: none;
    }
    
    /* Adjust cover page for mobile */
    .cover-page-content {
        padding: 40px 20px;
    }
    
    .logo-img {
        width: 80px;
        height: 80px;
    }
    
    .cover-title {
        font-size: 2rem;
    }
    
    .cover-subtitle {
        font-size: 1rem;
    }
    
    .cover-instruction {
        font-size: 0.9rem;
    }
    
    .cover-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
        bottom: 20px;
    }
    
    /* Navigation */
    .book-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .page-indicator {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    #currentPage {
        font-size: 1.2rem;
    }
    
    .book-controls {
        gap: 15px;
    }
    
    .zoom-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .book-container {
        height: 65vh;
        min-height: 450px;
    }
    
    .cover-title {
        font-size: 1.75rem;
    }
    
    .cover-subtitle {
        font-size: 0.9rem;
    }
}

/* ========================================
   TABLET OPTIMIZATION
   ======================================== */

@media (min-width: 769px) and (max-width: 1024px) {
    .book-container {
        width: 92vw;
        height: 75vh;
        min-height: 600px;
    }
    
    .cover-title {
        font-size: 2.5rem;
    }
    
    .cover-subtitle {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 100px;
        height: 100px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE (SINGLE PAGE)
   ======================================== */

@media (max-width: 768px) {
    .book-container {
        width: 95vw;
        height: 70vh;
        min-height: 500px;
    }
    
    /* On mobile, show only one page at a time */
    .book-left-side,
    .book-right-side {
        width: 100%;
        border-radius: 8px;
        box-shadow: none;
    }
    
    /* Initially hide left page on mobile */
    .book-left-side {
        display: none;
    }
    
    /* Show right page by default */
    .book-right-side {
        display: block;
    }
    
    /* When mobile-show-left class is added, show left and hide right */
    .book-container.mobile-show-left .book-left-side {
        display: block;
    }
    
    .book-container.mobile-show-left .book-right-side {
        display: none;
    }
    
    /* Hide spine on mobile */
    .book-spine {
        display: none;
    }
    
    /* Adjust cover page for mobile */
    .cover-page-content {
        padding: 40px 20px;
    }
    
    .logo-img {
        width: 80px;
        height: 80px;
    }
    
    .cover-title {
        font-size: 2rem;
    }
    
    .cover-subtitle {
        font-size: 1rem;
    }
    
    .cover-instruction {
        font-size: 0.9rem;
    }
    
    .cover-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
        bottom: 20px;
    }
    
    /* Navigation */
    .book-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .page-indicator {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    #currentPage {
        font-size: 1.2rem;
    }
    
    .book-controls {
        gap: 15px;
    }
    
    .zoom-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .book-container {
        height: 65vh;
        min-height: 450px;
    }
    
    .cover-title {
        font-size: 1.75rem;
    }
    
    .cover-subtitle {
        font-size: 0.9rem;
    }
}

/* ========================================
   TABLET OPTIMIZATION
   ======================================== */

@media (min-width: 769px) and (max-width: 1024px) {
    .book-container {
        width: 92vw;
        height: 75vh;
        min-height: 600px;
    }
    
    .cover-title {
        font-size: 2.5rem;
    }
    
    .cover-subtitle {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 100px;
        height: 100px;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


