/* ========================================
   Ghar Kaa Tiffin - Main Styles
   Theme: Modern Food Delivery Brand
   Colors: Primary Green #16A34A, Orange #F97316
   ======================================== */

/* ----- Reset & Base ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #16A34A;
    --primary-dark: #0F7B36;
    --primary-light: #22C55E;
    --orange: #F97316;
    --orange-light: #FB923C;
    --white: #FFFFFF;
    --cream: #FFF7ED;
    --dark: #1A1A2E;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    padding-top: 76px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ----- Scrollbar ----- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ----- Preloader ----- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-food {
    text-align: center;
}

.plate {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.food-item {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    animation: foodBounce 1.2s ease-in-out infinite;
}

.food-item:nth-child(2) {
    background: var(--orange);
    animation-delay: 0.2s;
}
.food-item:nth-child(3) {
    background: var(--primary-light);
    animation-delay: 0.4s;
}

@keyframes foodBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
}

/* ----- Buttons ----- */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(22, 163, 74, 0.5);
    color: var(--white);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
    opacity: 0;
}

.btn-primary:hover::after {
    opacity: 1;
    left: 100%;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 10px 26px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
}

/* ----- Glassmorphism Cards ----- */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.85);
}

/* ----- Section Styles ----- */
.section-padding {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(22, 163, 74, 0.12);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

.section-title span {
    color: var(--primary);
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.intro-main-title {
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--dark);
}

.intro-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

/* ----- Navbar ----- */
.navbar {
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    height: 80px;
    padding: 0 !important;
    display: flex;
    align-items: center;
    transition: var(--transition);
    z-index: 1060;
}

.navbar .container {
    height: 100%;
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 72px;
    width: auto;
}

.brand-text {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--dark);
    letter-spacing: -0.5px;
    font-family: 'Inter', sans-serif;
}

/* Navbar links for desktop */
.navbar-nav {
    display: flex;
    gap: 6px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark) !important;
    padding: 8px 16px !important;
    border-radius: 50px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: rgba(22, 163, 74, 0.06);
}

/* Green Call Button in Navbar */
.btn-nav-call {
    background-color: #16A34A;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.btn-nav-call:hover {
    background-color: #11843b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.35);
}

/* Orange Order Button in Navbar */
.btn-nav-order {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
}

.btn-nav-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Custom Hamburger Menu Icon */
.custom-toggler {
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    padding: 0;
    z-index: 1100;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-toggler.open {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.custom-toggler-span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-toggler-span:nth-child(2) {
    margin: 5px 0;
}

.custom-toggler.open .custom-toggler-span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.custom-toggler.open .custom-toggler-span:nth-child(2) {
    opacity: 0;
}

.custom-toggler.open .custom-toggler-span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile buttons inside navbar */
.nav-mobile-ctas {
    display: none;
}

.btn-nav-call-mob {
    background-color: #16A34A;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 3px 8px rgba(22, 163, 74, 0.2);
    white-space: nowrap;
}

.btn-nav-call-mob:hover {
    background-color: #11843b;
    transform: scale(1.05);
}

.btn-nav-order-mob {
    background: linear-gradient(135deg, #F97316, #EA580C);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 8px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
    white-space: nowrap;
}

.btn-nav-order-mob:hover {
    transform: scale(1.05);
}

/* Drawer Menu (Mobile & Tablet) */
@media (max-width: 991.98px) {
    .nav-mobile-ctas {
        display: flex !important;
        align-items: center;
        gap: 8px;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -310px;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        padding: 40px 24px;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
    }
    
    .navbar-collapse.show {
        right: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 10px 20px !important;
        border-radius: 8px;
        width: 100%;
        display: block;
    }
    
    .mobile-menu-header {
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
        border-bottom: 1px solid #f3f4f6;
        padding-bottom: 15px;
    }
    
    .mobile-menu-title {
        font-weight: 800;
        font-size: 1.25rem;
        color: var(--dark);
    }
    
    .btn-close-menu {
        background: none;
        border: none;
        font-size: 1.4rem;
        color: var(--gray);
        cursor: pointer;
        padding: 4px;
    }
    
    .btn-close-menu:hover {
        color: var(--dark);
    }
    
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1040;
    }
    
    .nav-overlay.show {
        opacity: 1;
        visibility: visible;
    }
}

/* ----- Hero Slider Section ----- */
.hero-slider-section {
    position: relative;
    width: 100%;
    background-color: var(--dark);
    margin-top: 0px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Big Floating Call Button Overlay */
.slider-call-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 480px;
    padding: 0 15px;
}

.btn-overlay-call-action {
    background: #F97316;
    color: #ffffff !important;
    font-size: 1.6rem;
    font-weight: 800;
    padding: 10px 24px;
    border-radius: 12px;
    border: 3px solid #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.45);
    transition: var(--transition);
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.btn-overlay-call-action:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.65);
    background: #EA580C;
}

.pulse-glow {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7), 0 8px 24px rgba(249, 115, 22, 0.45);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0), 0 8px 24px rgba(249, 115, 22, 0.45);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0), 0 8px 24px rgba(249, 115, 22, 0.45);
    }
}

/* Slider Dots */
.slider-dots-container {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #007bff;
    transform: scale(1.2);
}

/* Dynamic text transition */
#dynamicTitle, #dynamicDesc {
    transition: opacity 0.2s ease-in-out;
}
/* ----- Features ----- */
.features-section {
    background: var(--white);
}

.feature-card {
    text-align: center;
    padding: 32px 20px;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(22, 163, 74, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    margin: 0 auto 16px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* ----- About Preview ----- */
.about-preview {
    background: var(--cream);
}

.about-preview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ----- Meal Plans ----- */
.plans-section {
    background: var(--white);
}

@media (min-width: 992px) {
    .col-lg-5-cols {
        flex: 0 0 auto;
        width: 20%;
    }
}

.plan-card {
    text-align: center;
    padding: 24px 20px 28px;
}

.plan-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.plan-card h5 {
    font-weight: 700;
}

.plan-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.plan-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 20px;
    text-align: left;
}

.plan-features li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--gray);
}

.plan-features li i {
    color: var(--primary);
    margin-right: 8px;
}

/* ----- Today's Menu ----- */
.menu-section {
    background: var(--cream);
}

.menu-item {
    padding: 24px 12px;
    text-align: center;
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-4px) scale(1.03);
}

.menu-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.menu-item h6 {
    font-weight: 700;
    margin-bottom: 2px;
}

.menu-item p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

/* ----- How It Works ----- */
.how-it-works {
    background: var(--white);
}

.step-card {
    padding: 24px 16px;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-card h5 {
    font-weight: 700;
}

.step-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ----- Reviews / Testimonials ----- */
.reviews-section {
    background: var(--cream);
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    padding: 24px;
}

.testimonial-stars {
    color: #F59E0B;
    margin-bottom: 12px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.testimonial-author img {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--gray);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    box-shadow: var(--shadow);
    color: var(--dark);
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.slider-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* ----- CTA Section ----- */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
}

.cta-wrapper {
    padding: 48px 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
}

.cta-wrapper h2 {
    color: var(--white);
    font-weight: 800;
    font-size: 2rem;
}

.cta-wrapper p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    padding: 14px 32px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    background: var(--cream);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* ----- Footer ----- */
.footer-section {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-brand h5 {
    color: var(--white);
    font-weight: 700;
    margin-top: 12px;
}

.footer-logo {
    height: 48px;
    width: auto;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-section h6 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 4px;
    min-width: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ----- Floating Buttons ----- */
.floating-buttons {
    position: fixed;
    bottom: 40px !important;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999 !important;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-btn {
    background: #25D366;
}

.call-btn {
    background: var(--orange);
}

.pulse {
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.call-btn.pulse {
    animation-name: pulseRingOrange;
}

@keyframes pulseRingOrange {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5); }
    70% { box-shadow: 0 0 0 16px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

/* ----- Back to Top ----- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

/* ----- Page Banner ----- */
.page-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0 50px;
    text-align: center;
    color: var(--white);
    margin-top: -76px;
    padding-top: 120px;
}

.page-banner h1 {
    font-weight: 800;
    font-size: 2.8rem;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    justify-content: center;
    margin: 0;
}

.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
}
.page-banner .breadcrumb-item.active {
    color: var(--white);
}
.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ----- About Page ----- */
.about-mission {
    margin-top: 24px;
}

.mission-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.mission-item i {
    font-size: 1.8rem;
    color: var(--primary);
    min-width: 44px;
}

.mission-item strong {
    display: block;
    font-weight: 700;
}

.mission-item p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Counters */
.counters-section {
    background: var(--cream);
    padding: 60px 0;
}

.counter-card {
    text-align: center;
    padding: 32px 20px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    display: inline-block;
}

.counter-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.counter-card p {
    font-weight: 600;
    color: var(--gray);
    margin: 0;
}

/* Why Choose */
.why-choose {
    background: var(--white);
}

.choose-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.choose-card i {
    font-size: 1.8rem;
    color: var(--primary);
    min-width: 44px;
    padding-top: 4px;
}

.choose-card h5 {
    font-weight: 700;
    margin-bottom: 2px;
}

.choose-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

/* Kitchen Section */
.kitchen-section {
    background: var(--cream);
}

.kitchen-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.kitchen-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.kitchen-features li i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ----- Services Page ----- */
.service-card {
    text-align: center;
    padding: 32px 20px;
}

.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.12), rgba(22, 163, 74, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 16px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(4deg);
}

.service-card h5 {
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Menu Filter */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.filter-btn {
    padding: 8px 24px;
    border-radius: 50px;
    border: 2px solid rgba(22, 163, 74, 0.2);
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray);
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.3);
}

.menu-card {
    overflow: hidden;
    border-radius: var(--radius);
}

.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-card-body {
    padding: 16px;
}

.menu-card-body h5 {
    font-weight: 700;
}

.menu-card-body p {
    color: var(--gray);
    font-size: 0.85rem;
}

.menu-price {
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

/* ----- Gallery Page ----- */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
}

.gallery-filter-btn {
    padding: 8px 24px;
    border-radius: 50px;
    border: 2px solid rgba(22, 163, 74, 0.2);
    background: transparent;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.2rem;
    margin-bottom: 6px;
}

.gallery-overlay span {
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 32px;
    font-size: 3rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--orange);
}

/* ----- Contact Page ----- */
.contact-form-wrapper {
    padding: 32px;
}

.contact-form-wrapper h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-form-wrapper .form-control {
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.6);
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.12);
}

.contact-info {
    padding: 32px;
}

.contact-info h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.info-item i {
    font-size: 1.4rem;
    color: var(--primary);
    min-width: 36px;
    padding-top: 2px;
}

.info-item strong {
    display: block;
    font-weight: 700;
}

.info-item p {
    margin: 0;
    color: var(--gray);
}

.info-item a {
    color: var(--primary);
    font-weight: 500;
}

.contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-actions .btn {
    flex: 1;
    min-width: 120px;
}

.map-wrapper {
    padding: 8px;
    overflow: hidden;
}

/* ====== CUSTOM PREMIUM STYLING & ANIMATIONS ====== */
.hover-zoom {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease !important;
}
.hover-zoom:hover {
    transform: scale(1.05) !important;
    box-shadow: var(--shadow-hover) !important;
}

/* Enforce style rules on food and kitchen images */
.plan-img, 
.menu-card img, 
.gallery-card img, 
.about-preview-image img, 
.about-content img,
.kitchen-section img {
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Healthy Badge Hero position */
.badge-healthy {
    bottom: 12%;
    right: -5%;
    color: #EF4444; /* Red color for heart */
    animation-delay: 2.5s;
}

/* Smooth transition elements */
.nav-link, .btn, .glass-card, .feature-icon, .service-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* AOS Reveal Animations using CSS */
[data-aos] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-aos="fade-up"] {
    transform: translateY(40px);
}
[data-aos="fade-left"] {
    transform: translateX(-40px);
}
[data-aos="fade-right"] {
    transform: translateX(40px);
}
[data-aos="zoom-in"] {
    transform: scale(0.9);
}
[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ----- AOS Stagger Delay Utilities ----- */
[data-aos-delay="100"] {
    transition-delay: 0.1s !important;
}
[data-aos-delay="200"] {
    transition-delay: 0.2s !important;
}
[data-aos-delay="300"] {
    transition-delay: 0.3s !important;
}
[data-aos-delay="400"] {
    transition-delay: 0.4s !important;
}

/* ----- Feature Card Hover Micro-Animations ----- */
.feature-card:hover .feature-icon .fa-leaf {
    animation: leafRotate 1.2s ease-in-out infinite alternate;
}
.feature-card:hover .feature-icon .fa-hands-wash {
    animation: handsWash 1.2s ease-in-out infinite;
}
.feature-card:hover .feature-icon .fa-truck-fast {
    animation: truckZoom 0.8s ease-in-out infinite alternate;
}
.feature-card:hover .feature-icon .fa-wallet {
    animation: walletPulse 1.2s ease-in-out infinite;
}

@keyframes leafRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(20deg); }
}

@keyframes handsWash {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(-8deg) translateY(-2px); }
    75% { transform: rotate(8deg) translateY(2px); }
}

@keyframes truckZoom {
    0% { transform: translateX(0); }
    100% { transform: translateX(6px); }
}

@keyframes walletPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15) rotate(-5deg); }
}