/* Thalio - Multi-Page Website Styles */
/* Performance: Critical CSS loaded inline, full CSS deferred */

/* Smooth Scroll & Performance */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6b7c2e;
    /* Olive Green from logo */
    --primary-dark: #5a6b1e;
    /* Darker olive for depth */
    --secondary: #f59e0b;
    /* Orange from logo swoosh */
    --dark: #6b4423;
    /* Brown from logo tagline */
    --text: #334155;
    /* Slate Gray text */
    --white: #FFFFFF;
    /* Pure white - main background */
    --cream-bg: #fef8f0;
    /* Warm cream for alternating sections */
    --border: #e8e6df;
    /* Warm border */
    --success: #6b7c2e;
    /* Same as primary */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    /* Performance: Enable hardware acceleration */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--primary);
    overflow: hidden;
    position: relative;
}

.top-bar-scroll {
    display: flex;
    width: fit-content;
    animation: scrollBanner 30s linear infinite;
}

.top-bar-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.top-info {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    padding: 0 20px;
}

/* Header with Navigation */
.header-main {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(107, 124, 46, 0.08);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo-main img {
    height: 150px;
    width: auto;
    max-width: 450px;
    object-fit: contain;
    display: block;
}

.logo-main a {
    display: block;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

.btn-contact-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    background: var(--primary);
    color: white;
}

.btn-contact-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(107, 124, 46, 0.3);
}

.btn-order {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-icon {
    font-size: 1.2rem;
}

.swiggy-btn {
    background: var(--primary);
    color: white;
}

.swiggy-btn:hover {
    background: #ff7d4f;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.zomato-btn {
    background: var(--secondary);
    color: white;
}

.zomato-btn:hover {
    background: #e74c3c;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(226, 55, 68, 0.3);
}

/* === HOME PAGE STYLES === */

/* Hero Home */
.hero-home {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 124, 46, 0.92) 0%, rgba(90, 107, 30, 0.88) 100%);
    z-index: 2;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(2%, -2%) rotate(5deg);
    }

    66% {
        transform: translate(-2%, 2%) rotate(-5deg);
    }
}

.hero-content-center {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title-big {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-big {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.delivery-areas-line {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
    color: white;
    letter-spacing: 0.5px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--dark);
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.badge-icon {
    font-size: 1.3rem;
}

.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary-hero {
    background: var(--primary);
    color: white;
}

.btn-primary-hero:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(107, 124, 46, 0.35);
}

.btn-secondary-hero {
    background: var(--white);
    color: var(--primary);
    border: 2px solid white;
}

.btn-secondary-hero:hover {
    background: var(--cream-bg);
    transform: scale(1.05);
}

/* Announcement Banner */
.announcement-banner {
    background: var(--cream-bg);
    padding: 50px 0;
    border-top: 3px solid var(--secondary);
    border-bottom: 3px solid var(--secondary);
}

.announcement-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.announcement-content p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.7;
}

.announcement-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-announcement {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(107, 124, 46, 0.25);
}

.btn-announcement:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(107, 124, 46, 0.35);
}

.btn-announcement-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(107, 124, 46, 0.25);
}

.btn-announcement-secondary:hover {
    background: #dc8b07;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(107, 124, 46, 0.35);
}

/* Features Home */
.features-home {
    padding: 80px 0;
    background: var(--white);
}

.features-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-box-home {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-box-home h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-box-home p {
    color: #666;
}

/* Quick About */
.quick-about {
    padding: 80px 0;
    background: var(--white);
}

.about-row-home {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-col h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text-col p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.link-arrow:hover {
    text-decoration: underline;
}

.about-image-placeholder {
    background: var(--cream-bg);
    height: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border);
}

.placeholder-emoji {
    font-size: 8rem;
}

/* Menu Preview */
.menu-preview {
    padding: 80px 0;
    background: var(--white);
}

.section-heading-center {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.menu-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-card-preview {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    border: 2px solid var(--border);
}

.menu-card-preview:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(107, 124, 46, 0.15);
    border-color: var(--primary);
}

.featured-preview {
    background: var(--cream-bg);
    border: 3px solid var(--secondary);
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-icon-big {
    font-size: 4.5rem;
    margin-bottom: 20px;
}

.menu-card-preview h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.menu-card-preview p {
    color: #666;
    line-height: 1.6;
}

.text-center-btn {
    text-align: center;
}

.btn-view-full {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(107, 124, 46, 0.25);
}

.btn-view-full:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(107, 124, 46, 0.35);
}

/* CTA Banner */
.cta-banner-home {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: white;
}

.cta-content-home {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content-home h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-content-home p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons-home {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.cta-icon-large {
    font-size: 1.3rem;
}

.contact-cta-white {
    background: var(--white);
    color: var(--primary);
}

.contact-cta-white:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: var(--cream-bg);
}

.phone-cta {
    background: var(--secondary);
    color: white;
}

.phone-cta:hover {
    background: #dc8b07;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(107, 124, 46, 0.35);
}

.cta-note {
    font-size: 1.05rem;
    opacity: 0.9;
    font-style: italic;
    margin-top: 10px;
}

.swiggy-cta {
    background: var(--white);
    color: var(--primary);
}

.swiggy-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.zomato-cta {
    background: var(--dark);
    color: white;
}

.zomato-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* === ABOUT PAGE STYLES === */

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-header::before {
    content: none;
}

.page-header::after {
    content: none;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.about-content-section {
    padding: 80px 0;
    background: var(--white);
}

.about-content-box {
    max-width: 900px;
    margin: 0 auto;
}

.about-content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-content-box h3 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-content-box p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
}

.values-section {
    padding: 80px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
}

/* === MENU PAGE STYLES === */

.menu-full-section {
    padding: 80px 0;
    background: var(--white);
}

/* Three Column Menu Grid */
.menu-grid-three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card-simple {
    background: var(--white);
    border: 3px solid var(--border);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.menu-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(107, 124, 46, 0.15);
    border-color: var(--primary);
}

.featured-simple {
    border: 3px solid var(--secondary);
    background: var(--cream-bg);
}

.popular-badge-simple {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.menu-emoji-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.menu-card-simple h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.menu-desc-simple {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.6;
}

.menu-items-list {
    text-align: left;
    margin: 25px 0;
    padding: 0 10px;
}

.menu-items-list p {
    font-size: 0.95rem;
    color: var(--text);
    margin: 8px 0;
    padding-left: 5px;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: #dc2626;
    font-style: italic;
    font-weight: 600;
}

@media (max-width: 968px) {
    .menu-grid-three-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Circular Thali Image Grid */
.menu-grid-circular {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.menu-card-circular {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    border: 3px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.menu-card-circular:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(107, 124, 46, 0.15);
    border-color: var(--primary);
}

.featured-card {
    border: 3px solid var(--secondary);
    background: var(--cream-bg);
}

.addon-card-vertical {
    max-width: 500px;
    margin: 0 auto;
    border: 3px solid var(--primary);
}

.popular-badge-circular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(107, 124, 46, 0.3);
}

.circular-image-wrapper {
    width: 250px;
    height: 250px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary);
    box-shadow: 0 10px 30px rgba(107, 124, 46, 0.2);
    position: relative;
}

.price-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.circular-thali-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-card-circular:hover .circular-thali-image {
    transform: scale(1.1);
}

.placeholder-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-circle span {
    font-size: 80px;
}

.menu-card-circular h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.menu-short-desc {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.menu-items-compact {
    text-align: left;
    margin-bottom: 30px;
    background: var(--cream-bg);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--border);
}

.menu-items-compact p {
    margin: 10px 0;
    color: var(--dark);
    font-size: 0.95rem;
    padding-left: 5px;
}

.menu-cta-compact {
    margin-top: 25px;
}

.btn-menu-order-small {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 124, 46, 0.3);
}

.btn-menu-order-small:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 124, 46, 0.4);
}

.coming-soon-small {
    margin-top: 12px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Menu Details Section */
.menu-details-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 3px solid var(--border);
}

.menu-detail-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 50px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    position: relative;
    border: 2px solid var(--border);
}

.featured-menu {
    border: 3px solid var(--secondary);
    background: var(--cream-bg);
}

.popular-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(107, 124, 46, 0.3);
}

.menu-detail-icon {
    flex-shrink: 0;
}

.detail-emoji {
    font-size: 6rem;
}

.menu-detail-content {
    flex: 1;
}

.menu-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.menu-description {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.menu-detail-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.menu-items-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.menu-items-list li {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.menu-items-list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary);
    font-size: 1.5rem;
}

.menu-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-menu-order {
    padding: 12px 30px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-menu-order:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(107, 124, 46, 0.35);
}

.btn-menu-order.secondary {
    background: var(--secondary);
}

.btn-menu-order.secondary:hover {
    background: #e74c3c;
}

.coming-soon-text {
    display: inline-block;
    margin-left: 15px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.addon-item {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.addon-item h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.addon-item p {
    font-size: 0.95rem;
    color: #666;
}

.info-banner {
    padding: 60px 0;
    background: var(--white);
}

.info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border-left: 5px solid var(--primary);
}

.info-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 1.1rem;
    color: #666;
}

/* Place Order Section (Menu Page) */
.place-order-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.place-order-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.place-order-box h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.place-order-box>p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.place-order-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-place-order-whatsapp,
.btn-place-order-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-place-order-whatsapp {
    background: white;
    color: var(--primary);
}

.btn-place-order-whatsapp:hover {
    background: var(--cream-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-place-order-phone {
    background: var(--secondary);
    color: white;
}

.btn-place-order-phone:hover {
    background: #dc8b07;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 124, 46, 0.4);
}

.place-order-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 768px) {
    .place-order-box h2 {
        font-size: 1.9rem;
    }

    .place-order-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-place-order-whatsapp,
    .btn-place-order-phone {
        width: 100%;
        justify-content: center;
    }
}

/* === DELIVERY PAGE STYLES === */

.delivery-checker-section {
    padding: 80px 0;
    background: var(--white);
}

.delivery-box-large {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
}

.delivery-box-large h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.delivery-helper-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 35px;
}

.delivery-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.area-select-large {
    flex: 1;
    padding: 18px 20px;
    font-size: 1.05rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.btn-check-large {
    padding: 18px 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-check-large:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(107, 124, 46, 0.35);
}

.delivery-result-box {
    display: none;
    margin-top: 30px;
}

.result-success-box {
    background: var(--white);
    border: 3px solid var(--success);
    padding: 35px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 8px 24px rgba(5, 150, 105, 0.15);
}

.success-icon-large {
    font-size: 3.5rem;
    color: var(--success);
    flex-shrink: 0;
}

.success-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.success-content p {
    color: #666;
    margin-bottom: 20px;
}

.success-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-success-order {
    padding: 10px 25px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.btn-success-order.swiggy {
    background: var(--primary);
}

.btn-success-order.zomato {
    background: var(--secondary);
}

.btn-success-order.contact {
    background: var(--primary);
}

.btn-success-order.contact:hover {
    background: #ff7d4f;
}

.btn-success-order.phone {
    background: var(--dark);
}

.btn-success-order.phone:hover {
    background: #333;
}

.result-error-box {
    background: #f8d7da;
    border: 3px solid #dc3545;
    padding: 20px;
    border-radius: 15px;
}

.result-error-box p {
    color: #721c24;
    font-weight: 500;
}

.areas-list-section {
    padding: 80px 0;
    background: var(--white);
}

.areas-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.area-card-large {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.area-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.15);
    border: 2px solid var(--primary);
}

.area-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.area-card-large h4 {
    font-size: 1.2rem;
}

.areas-expanding-note {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.25);
}

.step-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-card p {
    color: #666;
}

/* === CONTACT PAGE STYLES === */

.contact-page-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark);
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: var(--white);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-full textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    min-height: 150px;
    transition: border-color 0.3s ease;
}

.form-group-full textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group-half input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group-half input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-send-contact {
    padding: 16px 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-send-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 124, 46, 0.3);
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item-sidebar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-icon-sidebar {
    width: 60px;
    height: 60px;
    background: var(--cream-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-item-sidebar h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-item-sidebar p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }

    .info-item-sidebar {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .contact-main-title {
        font-size: 2.2rem;
    }

    .form-row-two {
        grid-template-columns: 1fr;
    }

    .contact-info-sidebar {
        flex-direction: column;
    }

    .btn-send-contact {
        width: 100%;
    }
}

/* Order Options Banner (Contact Page) */
.order-options-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
}

.order-options-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.order-options-content>p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
}

.order-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-order-whatsapp,
.btn-order-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-order-whatsapp {
    background: white;
    color: var(--primary);
}

.btn-order-whatsapp:hover {
    background: var(--cream-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-order-phone {
    background: var(--secondary);
    color: white;
}

.btn-order-phone:hover {
    background: #dc8b07;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(107, 124, 46, 0.4);
}

.btn-icon {
    font-size: 1.3rem;
}

.order-timing-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media (max-width: 768px) {
    .order-options-content h2 {
        font-size: 1.8rem;
    }

    .order-buttons-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-order-whatsapp,
    .btn-order-phone {
        width: 100%;
        justify-content: center;
    }
}

/* Old Contact Styles (keep for compatibility) */
.contact-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-info-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
}

.contact-icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-desc {
    font-size: 0.95rem !important;
    opacity: 0.8;
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.faq-item p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.7;
}

.faq-item a {
    color: var(--primary);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* === INTEREST FORM SECTION === */

.interest-form-section {
    padding: 80px 0;
    background: var(--cream-bg);
}

.interest-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    border: 2px solid var(--border);
    box-shadow: 0 10px 30px rgba(107, 124, 46, 0.1);
}

.interest-form {
    margin-top: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(107, 124, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-submit-interest {
    background: var(--primary);
    color: white;
    padding: 16px 50px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(107, 124, 46, 0.3);
}

.btn-submit-interest:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 124, 46, 0.4);
}

.form-result {
    display: none;
    margin-top: 30px;
}

.form-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.form-success .success-icon {
    width: 60px;
    height: 60px;
    background: #28a745;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 1.5rem;
    color: #155724;
    margin-bottom: 12px;
}

.form-success p {
    color: #155724;
    font-size: 1.05rem;
    margin: 8px 0;
}

.form-success .email-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.form-success .email-link:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .interest-form-wrapper {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-submit-interest {
        padding: 14px 40px;
        font-size: 1rem;
    }
}

/* === FOOTER === */

.footer-modern {
    background: var(--dark);
    color: white;
    padding: 50px 0 25px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(107, 124, 46, 0.3);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 24px rgba(107, 124, 46, 0.4);
}

/* Mobile Responsive for Floating Buttons */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* === FOOTER === */

.footer-modern {
    background: var(--dark);
    color: white;
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-col-brand p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-col-links h4 {
    margin-bottom: 15px;
}

.footer-col-links ul {
    list-style: none;
}

.footer-col-links ul li {
    margin-bottom: 10px;
}

.footer-col-links ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-col-links ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
}

/* === RESPONSIVE === */

@media (max-width: 992px) {
    .header-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
    }

    .hero-title-big {
        font-size: 3rem;
    }

    .about-row-home {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .menu-detail-card {
        flex-direction: column;
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .logo-main img {
        height: 120px;
        max-width: 360px;
    }

    .header-buttons {
        gap: 10px;
    }

    .btn-order {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-link {
        font-size: 0.95rem;
    }

    .hero-title-big {
        font-size: 2.5rem;
    }

    .hero-subtitle-big {
        font-size: 1.2rem;
    }

    .delivery-areas-line {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .hero-cta-buttons {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .section-heading-center {
        font-size: 2.2rem;
    }

    .cta-content-home h2 {
        font-size: 2.2rem;
    }

    .cta-buttons-home {
        flex-direction: column;
    }

    .btn-cta-large {
        width: 100%;
    }

    .delivery-form {
        flex-direction: column;
    }

    .btn-check-large {
        width: 100%;
    }

    .result-success-box {
        flex-direction: column;
        text-align: center;
    }

    .success-buttons {
        justify-content: center;
    }

    .menu-detail-card {
        padding: 25px;
    }

    .detail-emoji {
        font-size: 4rem;
    }

    .top-info {
        flex-direction: column;
        gap: 5px;
        font-size: 0.85rem;
    }

    .top-info span:nth-child(2) {
        display: none;
    }
}