@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* ========== CSS RESET ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ========== CSS VARIABLES ========== */
:root {
    --orange-50: #fff7ed;
    --orange-100: #ffedd5;
    --red-500: #ef4444;
    --orange-500: #f97316;
    --blue-500: #3b82f6;
    --green-500: #22c55e;
    --gray-600: #4b5563;
    --blue-600: #2563eb;
    --gray-900: #111827;
    /* Warm, earthy Gujarati-inspired palette (HSL converted to HEX) */
    --background: hsl(30, 50%, 98%);
    --foreground: #1a0e00;
    --card: hsl(30, 40%, 97%);
    --card-foreground: hsl(25, 30%, 15%);

    /* Terracotta - Primary brand color */
    --primary: #74421B;
    --secondary1: #9a690f;
    --primary-foreground: hsl(30, 50%, 98%);

    /* Cream - Secondary */
    --secondary: hsl(35, 45%, 94%);
    --secondary-foreground: hsl(25, 30%, 20%);

    /* Muted tones */
    --muted: hsl(30, 20%, 92%);
    --muted-foreground: #474747;

    /* Forest Green - Accent */
    --accent: hsl(145, 35%, 28%);
    --accent-foreground: hsl(30, 50%, 98%);

    /* Golden - Highlight */
    --highlight: hsl(42, 65%, 56%);
    --highlight-foreground: hsl(25, 30%, 15%);

    --border: hsl(30, 25%, 88%);

    /* Typography */
    --font-serif: "Work Sans", sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing & Radius */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsla(25, 30%, 15%, 0.08);
    --shadow-card: 0 8px 30px -8px hsla(25, 30%, 15%, 0.12);
    --shadow-elevated: 0 20px 50px -15px hsla(25, 30%, 15%, 0.15);

    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #74421B 0%, hsl(42, 65%, 56%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(30, 40%, 99%) 0%, hsl(30, 35%, 96%) 100%);
}

/* ========== BASE STYLES ========== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ========== UTILITY CLASSES ========== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.section-padding {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 6rem 0;
    }
}

.text-gradient {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-glass {
    background: var(--gradient-card);
    backdrop-filter: blur(4px);
    border: 1px solid hsla(30, 25%, 88%, 0.5);
    box-shadow: var(--shadow-card);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.hours-time {
    display: flex;
    line-height: normal;
    align-items: flex-start;
    font-size: 0.8rem;
    gap: 0.5rem;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: #9a690f;
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--secondary1);
    border: 2px solid var(--secondary1);
}

.btn-outline:hover {
    background: var(--secondary1);
    color: var(--primary-foreground);
}

.btn-rounded {
    border-radius: var(--radius-full);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animation-delay-100 {
    animation-delay: 100ms;
}

.animation-delay-200 {
    animation-delay: 200ms;
}

.animation-delay-300 {
    animation-delay: 300ms;
}

.animation-delay-400 {
    animation-delay: 400ms;
}

/* ========== HEADER ========== */
.site-header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px -4px hsla(25, 30%, 15%, 0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

.logo {
    display: flex;
    /* flex-direction: column; */
    align-self: flex-start;
    margin-top: 0.5rem;
    align-items: center;
    outline: none;
    gap: 1rem;
    max-width: 110px;
    background-color: #ffffff;
    border-radius: 200px;
    padding: 0.5rem;
    height: 110px;
    box-shadow: 0 4px 20px -4px hsla(25, 30%, 15%, 0.1);
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);

}


.logo-sub {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: -0.25rem;
}

.nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .nav ul {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: hsla(25, 30%, 15%, 0.8);
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: hsla(25, 30%, 15%, 0.8);
    transition: color 0.2s ease;
}

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

.mobile-menu-btn {
    display: flex;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    display: none;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-nav-link {
    padding: 0.75rem 1rem;
    color: hsla(25, 30%, 15%, 0.8);
    transition: all 0.2s ease;
}

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

.mobile-nav-actions {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsla(30, 50%, 98%, 1), hsla(30, 50%, 98%, 0.8), hsla(30, 50%, 98%, 0));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 42rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsla(145, 35%, 28%, 0.1);
    border-radius: var(--radius-full);
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.75;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-stat-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.hero-stat-icon.highlight {
    background: hsla(42, 65%, 56%, 0.2);
}

.hero-stat-icon.accent {
    background: hsla(145, 35%, 28%, 0.2);
}

.hero-stat-icon.primary {
    background: hsla(18, 52%, 54%, 0.2);
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8rem;
    background: linear-gradient(to top, var(--background), transparent);
    z-index: 1;
}

/* ========== TRUST SECTION ========== */
.trust {
    padding: 3rem 0;
    background: hsla(35, 45%, 94%, 0.5);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .trust-title {
        font-size: 2rem;
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}



.trust-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 2rem;
}

.trust-icon.red {
    background: hsla(0, 84%, 60%, 0.1);
    color: #dc2626;
}

.trust-icon.orange {
    background: hsla(25, 95%, 53%, 0.1);
    color: #ea580c;
}

.trust-icon.blue {
    background: hsla(217, 91%, 60%, 0.1);
    color: #2563eb;
}

.trust-icon.green {
    background: hsla(145, 35%, 28%, 0.1);
    color: var(--accent);
}

.trust-platform {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.trust-rating {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
}

.trust-subtext {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* ========== STATS SECTION ========== */
.stats {
    background: var(--background);

}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item .stat-value {
    line-height: 1;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--secondary);
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-label {
    color: var(--muted-foreground);
    font-weight: 500;
    margin-top: 0.5rem;
    line-height: normal;
    opacity: 0.8;
}

.stats-description {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 3rem auto 0;
    justify-content: center;
}

/* ========== ABOUT SECTION ========== */
.about {
    background: hsla(35, 45%, 94%, 0.3);
}

.about-grid {
    display: grid;
    gap: 4.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px hsla(25, 30%, 15%, 0.2);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(25, 30%, 15%, 0.4), transparent);
    border-radius: 1rem;
}

.about-floating-card {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--background);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-elevated);
    max-width: 220px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-floating-value {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0;
}

.about-floating-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.section-badge {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    /* text-transform: uppercase; */
    letter-spacing: 0.05em;
    background: #ffffff;
    padding: 4px 10px;
    border-radius: 50px;
    line-height: normal;
    display: inline-block;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
    margin-top: 0.6rem;
    margin-bottom: 1rem;
    line-height: normal;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
}

.about-tag.accent {
    background: hsla(145, 35%, 28%, 0.1);
    color: var(--accent);
}

.about-tag.primary {
    background: hsla(18, 52%, 54%, 0.1);
    color: var(--primary);
}

.about-tag.highlight {
    background: hsla(42, 65%, 56%, 0.1);
    color: var(--highlight);
}




/* order direct css  */


.why-order-direct {
    background-position: center;
    background-size: cover;
    position: relative;
    margin: auto;

}

.why-order-direct::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #4e280b;
    opacity: 0.92;

}

.subtitle {
    color: #555;
    margin-bottom: 20px;
}

.order-grid .left .section-title {
    color: #fff;
}

.order-grid .left .about-tag {
    max-width: max-content;
    line-height: normal;
}



.order-grid .left .section-text {
    color: #fff;
    opacity: 0.7;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.benefits-list li strong {

    font-size: 1.2rem;
}

.benefits-list li span {
    opacity: 0.5;
    font-weight: 300;
}

.benefits-list li {
    margin-bottom: 15px;
    /* background-color: #eee; */
    /* padding: 1rem;
    border-radius: 1rem; */
    position: relative;
    padding-left: 2.4rem;
}

.benefits-list li::before {
    content: "";
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10.7925 15.1712C10.5925 15.1712 10.4025 15.0912 10.2625 14.9512L7.8425 12.5312C7.5525 12.2412 7.5525 11.7612 7.8425 11.4712C8.1325 11.1812 8.6125 11.1812 8.9025 11.4712L10.7925 13.3612L15.0925 9.06125C15.3825 8.77125 15.8625 8.77125 16.1525 9.06125C16.4425 9.35125 16.4425 9.83125 16.1525 10.1212L11.3225 14.9512C11.1825 15.0912 10.9925 15.1712 10.7925 15.1712Z" fill="%23D8AC46"/><path d="M12.0028 22.75C11.3728 22.75 10.7428 22.54 10.2528 22.12L8.67281 20.76C8.51281 20.62 8.11281 20.48 7.90281 20.48H6.18281C4.70281 20.48 3.50281 19.28 3.50281 17.8V16.09C3.50281 15.88 3.36281 15.49 3.22281 15.33L1.87281 13.74C1.05281 12.77 1.05281 11.24 1.87281 10.27L3.22281 8.68C3.36281 8.52 3.50281 8.13 3.50281 7.92V6.2C3.50281 4.72 4.70281 3.52 6.18281 3.52H7.91281C8.12281 3.52 8.52281 3.37 8.68281 3.24L10.2628 1.88C11.2428 1.04 12.7728 1.04 13.7528 1.88L15.3328 3.24C15.4928 3.38 15.8928 3.52 16.1028 3.52H17.8028C19.2828 3.52 20.4828 4.72 20.4828 6.2V7.9C20.4828 8.11 20.6328 8.51 20.7728 8.67L22.1328 10.25C22.9728 11.23 22.9728 12.76 22.1328 13.74L20.7728 15.32C20.6328 15.48 20.4828 15.88 20.4828 16.09V17.79C20.4828 19.27 19.2828 20.47 17.8028 20.47H16.1028C15.8928 20.47 15.4928 20.62 15.3328 20.75L13.7528 22.11C13.2628 22.54 12.6328 22.75 12.0028 22.75ZM6.18281 5.02C5.53281 5.02 5.00281 5.55 5.00281 6.2V7.91C5.00281 8.48 4.73281 9.21 4.36281 9.64L3.01281 11.23C2.66281 11.64 2.66281 12.35 3.01281 12.76L4.36281 14.35C4.73281 14.79 5.00281 15.51 5.00281 16.08V17.79C5.00281 18.44 5.53281 18.97 6.18281 18.97H7.91281C8.49281 18.97 9.22281 19.24 9.66281 19.62L11.2428 20.98C11.6528 21.33 12.3728 21.33 12.7828 20.98L14.3628 19.62C14.8028 19.25 15.5328 18.97 16.1128 18.97H17.8128C18.4628 18.97 18.9928 18.44 18.9928 17.79V16.09C18.9928 15.51 19.2628 14.78 19.6428 14.34L21.0028 12.76C21.3528 12.35 21.3528 11.63 21.0028 11.22L19.6428 9.64C19.2628 9.2 18.9928 8.47 18.9928 7.89V6.2C18.9928 5.55 18.4628 5.02 17.8128 5.02H16.1128C15.5328 5.02 14.8028 4.75 14.3628 4.37L12.7828 3.01C12.3728 2.66 11.6528 2.66 11.2428 3.01L9.66281 4.38C9.22281 4.75 8.48281 5.02 7.91281 5.02H6.18281Z" fill="%23D8AC46"/></svg>');
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-position: center;
    position: absolute;
    left: 0;
    top: 6px;
}

.cta {
    margin-top: 20px;
    font-size: 16px;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    z-index: 1;
    position: relative;
}



.order-grid .left {
    color: #fff;
}


.delivery-areas {

    margin: auto;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
}

.subtitle {
    color: #555;
    margin-bottom: 16px;
}

.description {
    margin-bottom: 20px;
}

.areas-title {
    margin-bottom: 10px;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
    padding-left: 0;
    /* margin-bottom: 1rem; */
}

.cta {
    margin-top: 20px;
    font-size: 16px;
}

.areas-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: normal;
}

.areas-list li::before {
    content: "";
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.657 16.6567L13.414 20.8997C13.2284 21.0854 13.0081 21.2328 12.7656 21.3333C12.523 21.4339 12.2631 21.4856 12.0005 21.4856C11.738 21.4856 11.478 21.4339 11.2354 21.3333C10.9929 21.2328 10.7726 21.0854 10.587 20.8997L6.343 16.6567C5.22422 15.5379 4.46234 14.1124 4.15369 12.5606C3.84504 11.0087 4.00349 9.40022 4.60901 7.93844C5.21452 6.47665 6.2399 5.22725 7.55548 4.34821C8.87107 3.46918 10.4178 3 12 3C13.5822 3 15.1289 3.46918 16.4445 4.34821C17.7601 5.22725 18.7855 6.47665 19.391 7.93844C19.9965 9.40022 20.155 11.0087 19.8463 12.5606C19.5377 14.1124 18.7758 15.5379 17.657 16.6567Z" stroke="%2374421B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M15 11C15 11.7956 14.6839 12.5587 14.1213 13.1213C13.5587 13.6839 12.7956 14 12 14C11.2044 14 10.4413 13.6839 9.87868 13.1213C9.31607 12.5587 9 11.7956 9 11C9 10.2044 9.31607 9.44129 9.87868 8.87868C10.4413 8.31607 11.2044 8 12 8C12.7956 8 13.5587 8.31607 14.1213 8.87868C14.6839 9.44129 15 10.2044 15 11Z" stroke="%2374421B" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: 24px;
    background-position: center;
    min-width: 24px;
}






/* ========== DISHES SECTION ========== */
.dishes {
    background: var(--background);
}

.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto 3rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.dishes-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .dishes-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dish-card {
    position: relative;
    background: var(--secondary);
    border-radius: 1rem;
    overflow: hidden;
}

.dish-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(25, 30%, 15%, 0.6), transparent, transparent);
}

.dish-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: var(--radius-full);
}

.footer .footer-brand {
    max-width: 120px;
    /* background: #fff; */
    display: inline-flex;
    margin-bottom: 1rem;
}

.dish-content {
    padding: 1.5rem;
}

.dish-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: normal;
}

.dish-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.view-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    transition: gap 0.3s ease;
}

.view-menu-link:hover {
    gap: 1rem;
}

/* ========== REVIEWS SECTION ========== */
.reviews {
    background: var(--secondary1);
    background-size: cover;
    position: relative;
}

/* 
.reviews::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, hsla(30, 50%, 98%, 1), hsla(30, 50%, 98%, 0.8), hsla(30, 50%, 98%, 0));

} */

.reviews .container {
    position: relative;
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;

}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background: var(--background);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.review-quote {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: hsla(18, 52%, 54%, 0.2);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-star {
    color: var(--highlight);
}

.review-text {
    /* font-size: 1.125rem; */
    color: hsla(25, 30%, 15%, 0.8);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: auto;
}

.review-author {
    font-weight: 600;
    color: var(--foreground);
}

.review-date {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    width: 50px;
    height: 50px;
    overflow: hidden;
    object-fit: cover;
    border-radius: 50px;
}

.review-source-dot {
    color: #3b82f6;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* color: var(--primary); */
    font-weight: 500;
    text-decoration: none;
}



/* ========== ORDER SECTION ========== */
.order {
    background: hsla(18, 52%, 54%, 0.05);
    position: relative;
    overflow: hidden;
}

.order-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
}

.order-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
}

.order-bg-circle.primary {
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background: var(--primary);
    transform: translate(-50%, -50%);
}

.order-bg-circle.highlight {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: var(--highlight);
    transform: translate(50%, 50%);
}

.order-content {
    position: relative;
    z-index: 10;
    text-align: center;
    /* max-width: 48rem; */
    margin: 0 auto;
}

.order-platforms {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    /* margin-bottom: 2rem; */
    grid-template-columns: repeat(4, 1fr);

}


.order-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    padding: 2rem;
    border-radius: 16px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    font-family: var(--font-serif);
}

.order-btn .head-tls {
    line-height: normal;
    margin-bottom: 10px;
}

.order-btn small {
    font-size: 0.75rem;
    font-family: var(--font-sans);
}

.order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px -10px currentColor;
}

.order-btn.zomato {
    background: #ef4444;
}

.order-btn.zomato:hover {
    background: #dc2626;
}

.order-btn.swiggy {
    background: #f97316;
}

.order-btn.swiggy:hover {
    background: #ea580c;
}

.order-btn-emoji {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.order-btn-emoji svg {
    width: 1.8rem;
    height: 1.8rem;
    min-width: 1.8rem;
}

.order-contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}


.contact-btn:hover {
    transform: scale(1.05);
}

.contact-btn.call {
    background: var(--accent);
    color: var(--accent-foreground);
}

.contact-btn.call:hover {
    background: hsla(145, 35%, 24%, 1);
}

.contact-btn.whatsapp {
    background: #22c55e;
    color: white;
}

.contact-btn.whatsapp:hover {
    background: #16a34a;
}

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


/* Blog Section */
.blog-section {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, white, var(--orange-50));
}

.blog-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.blog-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.blog-content h3 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    line-height: normal;
}

.blog-card:hover h3 {
    color: var(--orange-600);
}

.blog-content p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-link {
    gap: 1rem;
}

/* ========== FAQ SECTION ========== */
.faq {
    background: hsl(31.76deg 100% 96.67%);
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--background);
    border-radius: var(--radius-lg);
    padding: 0 1.5rem;
    box-shadow: var(--shadow-soft);
}

.faq-item.active .faq-question {
    color: var(--secondary1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding-bottom: 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--foreground);
    color: hsla(30, 50%, 98%, 0.8);
    padding: 4rem 0 0rem 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.footer .footer-bottom,
.footer .container {
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--foreground);
    opacity: 0.9;
}

.footer-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 0.8fr 1.5fr 1.8fr;
    }
}

.footer-brand-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--background);
    margin-bottom: 0.25rem;
}

.footer-brand-sub {
    font-size: 0.875rem;
    color: hsla(30, 50%, 98%, 0.6);
    margin-bottom: 1.5rem;
}

.footer-brand-text {
    color: hsla(30, 50%, 98%, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-social {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: hsla(30, 50%, 98%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social:hover {
    background: var(--primary);
    color: var(--primary-foreground);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--background);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: hsla(30, 50%, 98%, 0.7);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary1);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-icon {
    color: var(--secondary1);
    margin-top: 0.125rem;
}

.footer-hours-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;

}

.footer-grid .footer-title.space {
    margin-bottom: 8px;
    margin-top: 8px;
}


.footer-hours-label {
    font-weight: 500;
    color: var(--background);
    margin-bottom: 6px;
}

.footer-bottom {
    border-top: 1px solid hsla(30, 50%, 98%, 0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: hsla(30, 50%, 98%, 0.6);
}

.footer-compliance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsla(30, 50%, 98%, 0.6);
}

.footer-compliance ul {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-compliance ul li a {
    transition: all 0.3s ease-in-out 0s;
}

.footer-compliance ul li a:hover {
    color: var(--secondary1);
}

/* ========== SVG ICONS ========== */
.icon {
    width: 1.25rem;
    min-width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    vertical-align: middle;
}

.icon-lg {
    width: 1.5rem;
    height: 1.5rem;
}

.icon-xl {
    width: 2rem;
    height: 2rem;
}



/* other css  */


.trust-card {
    text-align: left;
    padding: 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid;
    background: linear-gradient(to bottom right, var(--bg-from), white);
    align-items: center;
    display: flex;
    gap: 0.6rem;
}




.trust-zomato {
    --bg-from: #fef2f2;
    border-color: #fecaca;
}

.trust-swiggy {
    --bg-from: var(--orange-50);
    border-color: var(--orange-100);
}

.trust-google {
    --bg-from: #eff6ff;
    border-color: #dbeafe;
}

.trust-fssai {
    --bg-from: #f0fdf4;
    border-color: #bbf7d0;
}

.trust-icon svg {
    width: 1rem;
    height: 1rem;
    color: white;
}

.bg-red {
    background: var(--red-500);
}

.bg-orange {
    background: var(--orange-500);
}

.bg-blue {
    background: var(--blue-500);
}

.bg-green {
    background: var(--green-500);
}

.rating-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    line-height: 1;
    font-family: var(--font-serif);
}


.stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    font-size: 1rem;
    color: var(--gray-300);
}

.star.filled {
    color: var(--orange-500);
}

.trust-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin: 0;
    line-height: normal;
}

.trust-sublabel {
    font-size: 0.75rem;
    color: var(--blue-600);
    margin: 0;
}

.whatsapp-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 111;
    animation: bounce2 2s ease infinite;
    width: 55px;
    height: 55px;
}


@keyframes bounce2 {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-10px);
    }
}




@media (max-width: 1199px) {
    .hero {
        min-height: auto;
        padding-top: 9rem;
    }

    .btn {
        padding: 0.75rem 1rem;
    }

    .logo {
        max-width: 100px;
        height: 100px;
    }

    .nav ul {
        gap: 1.5rem;
    }

    .hero-bg-overlay {
        background: linear-gradient(to right, hsl(30deg 50% 98%), hsl(30deg 50% 98% / 92%), hsl(30deg 50% 98% / 70%));
    }

    .order-grid {
        gap: 2rem;
    }

    .benefits-list {
        margin-bottom: 1rem;
    }

    .about-floating-card {
        right: 0;
    }

    .reviews {
        padding-top: 0;
    }

    .review-card {
        padding: 1.5rem;
    }

    .review-source {
        width: 40px;
        height: 40px;
    }

    .order-btn {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .order-platforms {
        gap: 1rem;
    }

    .blog-grid {
        gap: 1.5rem;
    }

    .faq {
        padding-top: 0;
    }


}


@media (max-width: 767px) {
    .mobile-nav.active {
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .mobile-nav-links {
        padding-top: 1.7rem;
    }

    .about-image img {
        height: 350px;
    }

    .header-inner {
        height: 4rem;
    }

    .footer-grid {
        gap: 1.5rem;
    }


    .blog-section {
        padding: 4rem 1rem;
    }



    .order-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }



    .order-btn .head-tls {
        margin-bottom: 5px;
    }

    .whatsapp-fixed {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .delivery-areas {
        padding: 1.5rem;
    }

    .hero {
        padding-top: 7rem;
    }

    .hero-badge {
        margin-bottom: 1rem;
    }



    .trust-grid {
        margin-top: 2rem;
    }

    .logo {
        height: 80px;
        margin-top: 0.2rem;
        max-width: 80px;
    }

    .icon-xl {
        width: 1.5rem;
        height: 1.5rem;
    }

    .stat-icon {
        width: 3rem;
        height: 3rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stats-grid {
        gap: 1rem;
    }

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


}