:root {
    --ebony: #1e1b3a;
    --ebony-2: #262253;
    --ebony-3: #2f2a66;
    --gold: #e8c878;
    --saffron: #d2a857;
    --gold-soft: #c4ad64;
    --text: #f5ecd4;
    --muted: #b9b0c9;
    --line: rgba(232, 200, 120, .25);
    --grad-gold: linear-gradient(135deg, #e8c878 0%, #c4a85a 60%, #8a7338 100%);
    --shadow-gold: 0 12px 40px -10px rgba(232, 200, 120, .45);
    --serif: "Playfair Display";
    --sans: sans-serif;
    --footer-bg: #04070c;
    --footer-secondary: #17234c;

    --header-bg: #221c44;
    --header-light: rgba(197, 175, 151, 0.79);

    --gold: #d5b46d;
    --gold-light: #e3c9a4;
    --cream: #E5CFBD;

    --dropdown-bg: #111c3e;

    --white: #ffffff;
    --text-muted: #999999;

    --border: #3c3353;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--ebony);
    color: var(--text);
    line-height: 1.85;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: radial-gradient(circle at top right, rgba(232, 200, 120, .08), transparent 28%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .24s ease;
}

a:hover {
    color: var(--gold);
}

.container1 {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

.container1.narrow {
    max-width: 880px;
}

.center {
    text-align: center;
}

.mt-50 {
    margin-top: 50px;
}

.muted {
    color: var(--muted);
}

.gold {
    color: var(--saffron);
}

.gold-italic {
    font-family: var(--serif);
    font-style: italic;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
}

.gold-link {
    color: var(--saffron);
    font-weight: 500;
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    transition: color .24s ease, border-color .24s ease;
}

.gold-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ========== BUTTONS ========== */
.btn1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .28s ease, background .28s ease, border .28s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn1-primarys {
    background: var(--grad-gold);
    color: #221C44;
    box-shadow: var(--shadow-gold);
}

.btn1-primarys:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 58px -20px rgba(232, 187, 75, .55);
}

.btn1-ghosts {
    background: rgba(255, 255, 255, .05);
    color: var(--saffron);
    border: 1px solid rgba(200, 146, 42, .3);
}

.btn1-ghosts:hover {
    background: rgba(232, 200, 120, .1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* ========== ELEMENTS ========== */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 18px;
}

.eyebrow.center {
    display: flex;
    justify-content: center;
}

.eyebrow .line {
    width: 42px;
    height: 1px;
    background: var(--gold);
    border-radius: 1px;
}

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -.4px;
    color: #fff;
    line-height: 1.15;
}

h1 {
    font-size: clamp(42px, 6vw, 76px);
}

h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    margin-bottom: 18px;
}

h3 {
    font-size: clamp(20px, 2.2vw, 28px);
    margin-bottom: 14px;
}

.section,
.section1 {
    position: relative;
    padding: 100px 0;
}

.section-dark {
    background: linear-gradient(180deg, rgba(18, 15, 40, .96) 0%, rgba(19, 16, 45, 1) 100%);
}

.section-head {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.lead {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.9;
    max-width: 760px;
    margin: 16px auto 0;
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: grid;
    place-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.44);
    animation: slowZoom 26s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 6, 18, .9) 0%, rgba(12, 9, 28, .4) 50%, rgba(8, 6, 18, .96) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100%, 1160px);
    padding: 48px;
    background: rgba(8, 5, 24, .82);
    border: 1px solid rgba(232, 200, 120, .12);
    border-radius: 28px;
    box-shadow: 0 40px 120px -45px rgba(0, 0, 0, .7);
    display: grid;
    gap: 34px;
}

.hero-title {
    line-height: 1.02;
    max-width: 780px;
}

.hero-sub {
    font-size: 18px;
    color: #d9cdb9;
    max-width: 720px;
    margin: 0;
    line-height: 1.9;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    gap: 20px;
}

.hstat-num {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 600;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hstat-num .star {
    font-size: 24px;
}

.hstat-lbl {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

/* ========== TRUST STRIP ========== */
.trust-strip {
    background: linear-gradient(90deg, rgba(34, 17, 65, .96) 0%, rgba(32, 20, 60, .96) 50%, rgba(34, 17, 65, .96) 100%);
    border-top: 1px solid rgba(232, 200, 120, .12);
    border-bottom: 1px solid rgba(232, 200, 120, .12);
    padding: 46px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: center;
}

.trust-item {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(232, 200, 120, .1);
    border-radius: 20px;
    padding: 20px 18px;
    display: grid;
    gap: 8px;
    justify-items: center;
    min-height: 120px;
}

.t-num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 700;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.t-lbl {
    font-size: 12px;
    letter-spacing: 1.8px;
    color: var(--muted);
    text-transform: uppercase;
    margin: 0;
}

/* ========== WHY GRID ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 32px;
}

.why-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(232, 200, 120, .1);
    padding: 34px;
    border-radius: 24px;
    display: grid;
    gap: 18px;
    min-height: 260px;
    overflow: hidden;
    position: relative;
    transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(232, 200, 120, .08), transparent 45%);
    opacity: 0;
    transition: opacity .35s ease;
    pointer-events: none;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 200, 120, .2);
    background: rgba(255, 255, 255, .05);
}

.why-card:hover::before {
    opacity: .9;
}

.why-card .num {
    font-family: var(--serif);
    font-size: 42px;
    color: var(--gold);
    opacity: .9;
    font-weight: 600;
    margin-bottom: 0;
}

.why-card h3 {
    margin: 0;
}

.why-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/* ========== DISH GRID ========== */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    gap: 34px;
}

.dish-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(232, 200, 120, .1);
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 90px -35px rgba(0, 0, 0, .55);
    border-color: rgba(232, 200, 120, .2);
}

.dish-img {
    height: 320px;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.dish-card:hover .dish-img {
    transform: scale(1.06);
}

.dish-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 10, 20, 0) 0%, rgba(26, 10, 20, .48) 100%);
}

.dish-body {
    padding: 30px 28px 32px;
    display: grid;
    gap: 18px;
}

.dish-body h3 {
    margin: 0;
    font-size: 24px;
}

.dish-body p {
    color: var(--muted);
    font-size: 15px;
    margin: 0;
    line-height: 1.9;
}

.dish-link {
    color: var(--saffron);
    font-size: 14px;
    font-weight: 600;
    transition: color .24s ease;
}

.dish-card:hover .dish-link {
    color: var(--gold);
    letter-spacing: .5px;
}

/* ========== HERITAGE ========== */
.heritage {
    background: var(--ebony);
}

.heritage-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
    gap: 80px;
    align-items: center;
}

.heritage-img {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 110px -55px rgba(0, 0, 0, .65);
}

.heritage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 540px;
}

.heritage-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--grad-gold);
    padding: 26px 32px;
    border-radius: 24px;
    text-align: center;
    color: #1A0A00;
    box-shadow: var(--shadow-gold);
}

.hb-num {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.hb-lbl {
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.heritage-text {
    display: grid;
    gap: 18px;
}

.heritage-text h2 {
    margin: 0;
}

.heritage-text p {
    color: var(--muted);
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
}

/* ========== AMBIENCE ========== */
.ambience-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: stretch;
}

.ambience-main {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 90px -40px rgba(0, 0, 0, .55);
}

.ambience-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 520px;
    transition: transform .8s ease;
}

.ambience-main:hover img {
    transform: scale(1.03);
}

.ambience-list {
    display: grid;
    gap: 20px;
}

.amb-card {
    background: linear-gradient(160deg, rgba(200, 146, 42, .06), rgba(200, 146, 42, .01));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px 28px;
    transition: transform .3s ease, border-color .3s ease;
    min-height: 140px;
    display: grid;
    gap: 8px;
}

.amb-card:hover {
    transform: translateX(6px);
    border-color: rgba(200, 146, 42, .2);
}

.amb-card h3 {
    margin: 0;
}

.amb-card p {
    color: var(--muted);
    line-height: 1.9;
    margin: 0;
}

/* ========== LOCATION ========== */
.location-card {
    max-width: 980px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(200, 146, 42, .08), rgba(200, 146, 42, .02));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 48px;
}

.location-card h3 {
    color: var(--saffron);
    font-size: 18px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--sans);
    font-weight: 500;
}

.location-card .big {
    font-family: var(--serif);
    font-size: 24px;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.4;
}

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.loc-k {
    display: block;
    color: var(--saffron);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.loc-v {
    color: var(--text);
    font-size: 15px;
    line-height: 1.85;
}

.loc-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ========== DELIVERY ========== */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 28px;
    margin-bottom: 50px;
}

.del-card {
    background: linear-gradient(160deg, rgba(200, 146, 42, .06), rgba(200, 146, 42, .01));
    border: 1px solid rgba(232, 200, 120, .1);
    border-radius: 18px;
    padding: 40px 32px;
    text-align: center;
    transition: transform .3s ease, border-color .3s ease;
}

.del-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 200, 120, .25);
}

.del-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.del-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

/* ========== TESTIMONIALS ========== */
.testi1-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 28px;
}

.testi1 {
    background: linear-gradient(160deg, rgba(200, 146, 42, .06), rgba(200, 146, 42, .01));
    border: 1px solid rgba(232, 200, 120, .1);
    border-radius: 18px;
    padding: 36px;
    transition: transform .3s ease, border-color .3s ease;
    min-height: 240px;
    display: grid;
    gap: 20px;
}

.testi1:hover {
    border-color: rgba(232, 200, 120, .2);
    transform: translateY(-5px);
}

.stars {
    color: var(--saffron);
    letter-spacing: 4px;
    margin-bottom: 16px;
    font-size: 16px;
}

.testi1 .texts {
    font-family: var(--serif);
    font-size: 20px;
    font-style: italic;
    color: #fff;
    margin: 0;
    line-height: 1.8;
}

.testi1 .cite {
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
}
 .reviews-section {
            padding: 90px 0;
            background: #0b0917;
            color: #fff;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }

        .review-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(196, 160, 80, 0.16);
            border-radius: 24px;
            padding: 32px;
            min-height: 260px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .review-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 60px rgba(196, 160, 80, 0.25), 0 0 40px rgba(196, 160, 80, 0.1);
            border-color: rgba(196, 160, 80, 0.35);
            background: rgba(255, 255, 255, 0.06);
        }

        .review-card h3 {
            margin: 0 0 14px;
            font-size: 1.25rem;
            color: #fff;
        }

        .review-card p {
            margin: 0 0 18px;
            color: rgba(255, 255, 255, 0.78);
            line-height: 1.75;
        }

        .review-card .review-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.66);
            font-size: 0.95rem;
        }


/* ========== FAQ ========== */
.faq1 {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq1 details {
    background: linear-gradient(160deg, rgba(200, 146, 42, .05), rgba(200, 146, 42, .01));
    border: 1px solid rgba(232, 200, 120, .1);
    border-radius: 14px;
    padding: 24px 28px;
    transition: background .3s ease, border-color .3s ease;
}

.faq1 details[open] {
    border-color: rgba(232, 200, 120, .35);
    background: linear-gradient(160deg, rgba(200, 146, 42, .12), rgba(200, 146, 42, .02));
}

.faq1 summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--serif);
    font-size: 20px;
    color: #fff;
    font-weight: 500;
}

.faq1 summary::-webkit-details-marker {
    display: none;
}

.faq1 .plus {
    color: var(--saffron);
    font-size: 24px;
    transition: transform .3s ease;
    font-weight: 300;
}

.faq1 details[open] .plus {
    transform: rotate(45deg);
}

.faq1 p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 120px 0;
    background: radial-gradient(ellipse at center, rgba(200, 146, 42, .15) 0%, var(--ebony) 70%);
    border-top: 1px solid rgba(232, 200, 120, .12);
}

.final-cta h2 {
    font-size: clamp(36px, 5vw, 60px);
    margin-bottom: 20px;
    max-width: 900px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 36px;
}

.section-head {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-head .eyebrow {
    margin-bottom: 18px;
}

/* ========== FLOATING ========== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 40;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .4);
    transition: transform .3s ease;
}

.wa-float:hover {
    transform: scale(1.1);
}

.mobile-bar {
    display: none;
}

/* ========== REVEAL ========== */
.reveal {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: none;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .container1 {
        padding: 0 24px;
    }

    .hero-content {
        padding: 40px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .why-grid,
    .dish-grid,
    .delivery-grid,
    .testi1-grid {
        grid-template-columns: 1fr 1fr;
    }

    .heritage-grid,
    .ambience-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container1 {
        padding: 0 20px;
    }

    .hero {
        padding: 90px 0 50px;
    }

    .hero-content {
        padding: 32px;
    }

    .section,
    .section1 {
        padding: 70px 0;
    }

    .hero-title {
        font-size: clamp(36px, 8vw, 56px);
    }

    .lead {
        font-size: 16px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid,
    .dish-grid,
    .delivery-grid,
    .testi1-grid {
        grid-template-columns: 1fr;
    }

    .loc-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .mobile-bar {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(14, 10, 25, .96);
        border-top: 1px solid rgba(232, 200, 120, .15);
        padding: 12px 16px;
        gap: 10px;
        z-index: 45;
    }

    .mb-btn {
        flex: 1;
        text-align: center;
        padding: 12px;
        border-radius: 12px;
        border: 1px solid rgba(232, 200, 120, .12);
        color: var(--saffron);
        background: rgba(232, 200, 120, .08);
    }

    .mb-btn.primary {
        background: var(--grad-gold);
        color: #1A0A00;
        border-color: transparent;
    }

    .wa-float {
        bottom: 84px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container1 {
        padding: 0 16px;
    }

    .hero-content {
        padding: 28px;
    }

    .hero-title {
        font-size: clamp(30px, 10vw, 42px);
    }

    .hero-sub {
        font-size: 16px;
    }

    .trust-strip {
        padding: 32px 0;
    }

    .location-card {
        padding: 32px 24px;
    }
}

/* ========== RESPONSIVE HERO CONTAINER ========== */
.hero-content {
    margin: 0 96px;
    padding: 60px 0;
}

@media (max-width: 1024px) {
    .hero-content {
        margin: 0 60px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin: 0 40px;
        padding: 40px 0;
    }
}

@media (max-width: 640px) {
    .hero-content {
        margin: 0 20px;
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin: 0 16px;
        padding: 24px 0;
    }
}

/* ========== RESPONSIVE GRIDS ========== */
@media (max-width: 768px) {
    .timeline {
        grid-template-columns: 1fr !important;
    }
    
    .milestone {
        grid-template-columns: auto 1fr !important;
    }
}

@media (max-width: 640px) {
    [style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    [style*="display:grid"] {
        gap: 16px !important;
    }
}

/* ========== RESPONSIVE TYPOGRAPHY ========== */
@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 5vw, 3rem) !important;
    }
    
    h2 {
        font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
    }
    
    .hero-sub {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
    }
    
    h2 {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem) !important;
    }
    
    .eyebrow {
        font-size: 0.75rem !important;
    }
}

/* ========== RESPONSIVE SPACING ========== */
@media (max-width: 768px) {
    .container1 {
        padding: 0 24px;
    }
}

@media (max-width: 480px) {
    .container1 {
        padding: 0 16px;
    }
    
    .feature-card {
        padding: 20px !important;
        min-height: auto !important;
    }
    
    .location-copy,
    .delivery-panel {
        padding: 20px !important;
    }
}

/* ========== RESPONSIVE IMAGES ========== */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
}

/* ========== RESPONSIVE SECTION PADDING ========== */
@media (max-width: 768px) {
    .timeline-section,
    .stats-reviews,
    .delivery-section {
        padding: 40px 0 !important;
    }
    
    /* Reduce gap on flex containers at tablet */
    [style*="gap:100px"] {
        gap: 40px !important;
    }
}

@media (max-width: 480px) {
    .timeline-section,
    .stats-reviews,
    .delivery-section {
        padding: 24px 0 !important;
    }
    
    /* Reduce gap on flex containers at mobile */
    [style*="gap:100px"] {
        gap: 20px !important;
    }
    
    [style*="gap:28px"] {
        gap: 16px !important;
    }
    
    [style*="gap:18px"] {
        gap: 12px !important;
    }
}

/* ========== RESPONSIVE BOOTSTRAP GRID OVERRIDES ========== */
@media (max-width: 640px) {
    [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .row {
        margin-right: -8px !important;
        margin-left: -8px !important;
    }
}

/* ========== RESPONSIVE BUTTONS & CTA ========== */
.btn1 {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hero-ctas {
        gap: 10px;
        justify-content: center;
    }
    
    .btn1 {
        font-size: 0.95rem;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .btn1 {
        width: 100%;
        padding: 12px 16px;
        font-size: 0.9rem;
        text-align: center;
    }
}

/* ========== HERO "RESERVE TABLE" BUTTON TEXT COLOR FIX ========== */
.hero-ctas .btn1-primarys,
.hero-ctas .btn1-primarys:link,
.hero-ctas .btn1-primarys:visited,
.hero-ctas .btn1-primarys:hover,
.hero-ctas .btn1-primarys:focus,
.hero-ctas .btn1-primarys:active {
    color: #221C44 !important;
}