:root {
    --gold: #C9A84C;
    --gold-light: #E8C97A;
    --dark-bg: #0A0A0F;
    --dark-nav: #080810;
    --text-light: #F5F0E8;
    --text-muted: #9A9080;
    --navy: #1a1e3a;
    --navy2: #0e1128;
    --dark: #0d0b07;
    --muted: #9a8870;
    --dark: #0d0b07;
    --dark2: #12100c;
    --dark3: #1e1a12;
    --dark4: #2a2418;
    --cream: #f5efe6;
    --gold2: #e8bf72;
    --gold3: #f0d090;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
}

/* TOP BAR */
.top-bar {
    background: var(--gold);
    padding: 7px 0;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #0A0A0F;
    text-transform: uppercase;
}

.top-bar span {
    margin: 0 14px;
}

.top-bar .dot {
    opacity: 0.5;
}

/* NAVBAR */
#mainNav {
    background: #f5ecd5;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

#mainNav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 36px;
    align-items: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link-custom {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-nav);
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s;
}

.nav-link-custom::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--dark-nav);
    transition: width 0.35s ease;
}

.nav-link-custom:hover {
    color: var(--gold);
}

.nav-link-custom:hover::after {
    width: 100%;
}

.nav-logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-logo img {
    height: 60px;
    width: auto;
    display: block;
    /* Blends dark logo bg into dark navbar, making it look transparent */
    /* mix-blend-mode: lighten;
      filter: brightness(1.15) contrast(1.1); */
    transition: filter 0.3s;
}

.nav-logo img:hover {
    filter: brightness(1.35) contrast(1.1);
}

.btn-reserve {
    background: var(--gold);
    color: #0A0A0F;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 22px;
    border: none;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-reserve:hover {
    background: var(--gold-light);
    color: #0A0A0F;
    transform: translateY(-1px);
}

.hamburger-btn {
    display: none;
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    font-size: 20px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger-btn:hover {
    background: rgba(201, 168, 76, 0.1);
}

/* MOBILE OVERLAY MENU */
#mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-nav);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#mobileMenu.open {
    opacity: 1;
    visibility: visible;
}

#mobileMenu::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 28px;
    background: none;
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 22px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-close:hover {
    background: rgba(201, 168, 76, 0.15);
    transform: rotate(90deg);
}

.mobile-logo {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-style: italic;
    color: var(--gold);
    white-space: nowrap;
}

.mobile-nav-link {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    color: var(--text-light);
    text-decoration: none;
    padding: 14px 0;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: color 0.3s, opacity 0.5s ease, transform 0.5s ease;
    text-align: center;
}

#mobileMenu.open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

#mobileMenu.open .mobile-nav-link:nth-child(2) {
    transition-delay: 0.05s;
}

#mobileMenu.open .mobile-nav-link:nth-child(3) {
    transition-delay: 0.10s;
}

#mobileMenu.open .mobile-nav-link:nth-child(4) {
    transition-delay: 0.15s;
}

#mobileMenu.open .mobile-nav-link:nth-child(5) {
    transition-delay: 0.20s;
}

#mobileMenu.open .mobile-nav-link:nth-child(6) {
    transition-delay: 0.25s;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-divider {
    width: 40px;
    height: 1px;
    background: rgba(201, 168, 76, 0.3);
    margin: 10px auto;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

#mobileMenu.open .mobile-divider {
    opacity: 1;
}

.mobile-reserve {
    margin-top: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}

#mobileMenu.open .mobile-reserve {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary-gold {
    background: var(--gold);
    color: #0A0A0F;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 36px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-primary-gold:hover {
    color: #0A0A0F;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 15px 30px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* HOME SECTION */
#home {
    min-height: calc(100vh - 104px);
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

#home::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 80% at 0% 50%, rgba(139, 32, 32, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 40% 60% at 90% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

/* Bootstrap row override — full height */
#home .container-fluid {
    height: 100%;
    min-height: calc(100vh - 104px);
    position: relative;
    z-index: 1;
    padding: 0;
}

#home .row {
    min-height: calc(100vh - 104px);
    margin: 0;
}

/* LEFT col — content */
.hero-content-col {
    display: flex;
    align-items: center;
    padding: 70px 60px 70px 80px;
}

.hero-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-tag::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 5vw, 78px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--text-light);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 10px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-subtitle::before {
    content: "";
    width: 36px;
    height: 1px;
    background: var(--text-muted);
    flex-shrink: 0;
}

.hero-desc {
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.72);
    margin-bottom: 42px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* RIGHT col — image */
.hero-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 60px 50px 20px;
    position: relative;
}

.hero-image-col::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 35%;
    background: radial-gradient(ellipse at bottom, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-food-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 40px rgba(201, 168, 76, 0.08));
    transition: transform 0.8s ease, filter 0.8s ease;
}

.hero-food-img:hover {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 50px rgba(201, 168, 76, 0.14));
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease 0.25s, transform 1s ease 0.25s;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.halal-float {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 10;
    animation: floatUpDown 3s ease-in-out infinite;
    cursor: default;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.halal-float .hf-circle {
    width: 64px;
    height: 64px;
    background: #1a7a3a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(26, 122, 58, 0.55), 0 0 0 3px rgba(26, 122, 58, 0.2);
    transition: box-shadow 0.3s;
}

.halal-float:hover .hf-circle {
    box-shadow: 0 6px 28px rgba(26, 122, 58, 0.75), 0 0 0 5px rgba(26, 122, 58, 0.25);
}

.halal-float .hf-circle svg {
    width: 34px;
    height: 34px;
    fill: #fff;
}

.halal-float .hf-label {
    font-family: "Montserrat", sans-serif;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a7a3a;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

/* ── STATS BAR ── */
#statsbar {
    background: linear-gradient(90deg, var(--navy2) 0%, var(--navy) 50%, var(--navy2) 100%);
    padding: 0;
}

.statsbar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(201, 150, 58, .2);
    border-bottom: 1px solid rgba(201, 150, 58, .2);
}

.stat-item {
    text-align: center;
    padding: 36px 24px;
    border-right: 1px solid rgba(201, 150, 58, .15);
    position: relative;
    transition: background .35s;
}

.stat-item:last-child {
    border-right: none
}

.stat-item:hover {
    background: rgba(201, 150, 58, .06)
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .35s;
}

.stat-item:hover::before {
    transform: scaleX(1)
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-lbl {
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-top: 8px;
}

.stat-icon {
    font-size: 1rem;
    color: rgba(201, 150, 58, .4);
    margin-bottom: 8px;
    display: block;
}

/* ══════════════════════════════════════
       ABOUT
    ══════════════════════════════════════ */
/* ══════════════════════════════════════
       SECTION DIVIDER + LABELS (kept from original)
    ══════════════════════════════════════ */
.section-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.section-divider .line {
    flex: 1;
    height: 1px;
    background: rgba(201, 150, 58, .25);
}

.section-divider .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.section-tag {
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

#about {
    padding: 110px 0;
    background: var(--dark);
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    width: 100%;
    border-radius: 2px;
    filter: brightness(.85) saturate(1.1);
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--gold);
    color: var(--dark);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 8px 30px rgba(201, 150, 58, .4);
}

.about-badge .num {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-badge .lbl {
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.about-halal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 150, 58, .1);
    border: 1px solid rgba(201, 150, 58, .3);
    padding: 8px 20px;
    border-radius: 30px;
    margin-top: 28px;
    font-size: .78rem;
    letter-spacing: .1em;
    color: var(--gold);
}

/* ══════════════════════════════
   MENU CAROUSEL
══════════════════════════════ */
#menu {
    padding: 80px 0;
    background: var(--dark)
}

.menu-carousel {
    position: relative;
    overflow: hidden
}

.mc-track {
    display: flex;
    transition: transform .55s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
}

/* ── Each slide ── */
.mc-slide {
    min-width: 100%;
    display: grid;
    /* Desktop: image | info side by side */
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    align-items: stretch;
}

/* ── Image panel ── */
.mc-slide-img {
    position: relative;
    overflow: hidden;
    /* Desktop height */
    height: 520px;
}

.mc-slide-img img {
    position: absolute;
    inset: 0;
    /* top/right/bottom/left: 0 */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 6s ease;
}

.mc-slide.active .mc-slide-img img {
    transform: scale(1.05)
}

/* ── Info panel ── */
.mc-slide-info {
    background: var(--dark4);
    padding: 56px 52px 80px;
    /* bottom padding leaves room for dots/buttons */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.mc-slide-info::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 150, 58, .07) 0%, transparent 70%);
    pointer-events: none;
}

.mc-cat {
    font-size: .67rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.mc-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: 14px;
}

.mc-desc {
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 400px;
}

.mc-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
}

/* ── Controls row (dots + arrows) ── */
.mc-footer {
    position: absolute;
    bottom: 28px;
    left: 52px;
    right: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mc-dots {
    display: flex;
    gap: 8px;
    align-items: center
}

.mc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--muted2);
    cursor: pointer;
    transition: all .3s;
    border: none;
    padding: 0;
}

.mc-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 3px
}

.mc-arrows {
    display: flex;
    gap: 10px
}

.mc-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201, 150, 58, .35);
    background: transparent;
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold)
}

/* ═══ FULL MENU ═══ */
.menu-card {
    background: #2a2418;
    border: 1px solid rgba(201, 150, 58, .1);
    border-radius: 4px;
    padding: 36px 32px;
    height: 100%;
    transition: border-color .3s, transform .3s;
}

.menu-card:hover {
    border-color: rgba(201, 150, 58, .38);
    transform: translateY(-4px)
}

.menu-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(201, 150, 58, .18);
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px
}

.menu-item:last-child {
    margin-bottom: 0
}

.menu-item-name {
    font-size: .9rem;
    color: #f5efe6
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(201, 150, 58, .18);
    margin: 0 10px;
    position: relative;
    top: -3px
}

.menu-item-price {
    font-size: .85rem;
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap
}

/* ═══ WHY US ═══ */
#whyus {
    padding: 120px 0;
    background: var(--dark)
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 56px;
}

.feature-item {
    background: #2a2418;
    border: 1px solid rgba(201, 150, 58, .08);
    border-radius: 4px;
    padding: 36px 28px;
    text-align: center;
    transition: border-color .3s, transform .3s;
}

.feature-item:hover {
    border-color: rgba(201, 150, 58, .4);
    transform: translateY(-5px)
}

.feature-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(201, 150, 58, .1);
    border: 1px solid rgba(201, 150, 58, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: background .35s;
}

.feature-item:hover .feature-icon {
    background: rgba(201, 150, 58, .22)
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--gold)
}

.feature-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #f5efe6;
    margin-bottom: 10px
}

.feature-text {
    font-size: .83rem;
    color: #9a8870;
    line-height: 1.7
}

/* ═══ TESTIMONIALS ═══ */
#testimonials {
    padding: 120px 0;
    background: var(--dark)
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px
}

.testi-card {
    background: var(--dark3);
    border: 1px solid rgba(201, 150, 58, .1);
    border-radius: 4px;
    padding: 36px 32px;
    transition: border-color .3s, transform .3s;
    position: relative;
}

.testi-card:hover {
    border-color: rgba(201, 150, 58, .38);
    transform: translateY(-4px)
}

.testi-quote {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(201, 150, 58, .15);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
}

.testi-stars {
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: 2px;
    margin-bottom: 14px
}

.testi-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: rgba(245, 239, 230, .75);
    line-height: 1.75;
    margin-bottom: 22px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(201, 150, 58, .12);
    padding-top: 16px
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 150, 58, .12);
    border: 1px solid rgba(201, 150, 58, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
}

.testi-name {
    font-size: .88rem;
    font-weight: 500;
    color: var(--cream)
}

.testi-loc {
    font-size: .72rem;
    color: var(--muted)
}

/* ═══ CONTACT ═══ */
#contact {
    padding: 120px 0;
    background: var(--dark3);
    position: relative;
    overflow: hidden
}

#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201, 150, 58, .05) 0%, transparent 70%);
}

.contact-box {
    background: var(--dark4);
    border: 1px solid rgba(201, 150, 58, .16);
    border-radius: 4px;
    padding: 64px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(201, 150, 58, .08);
    border: 1px solid rgba(201, 150, 58, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.ci-label {
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted)
}

.ci-value {
    font-size: .95rem;
    color: var(--cream);
    margin-top: 2px
}

.ci-value a {
    color: var(--cream);
    text-decoration: none;
    transition: color .3s
}

.ci-value a:hover {
    color: var(--gold)
}

.halal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(201, 150, 58, .12), rgba(201, 150, 58, .04));
    border: 1px solid rgba(201, 150, 58, .28);
    border-radius: 4px;
    padding: 16px 28px;
    margin-top: 10px;
}

.halal-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a7a2e;
    border: 2px solid #2da84a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.2;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 15px 38px;
    border-radius: 2px;
    border: none;
    transition: background .3s, transform .2s;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: var(--gold2);
    color: var(--dark);
    transform: translateY(-2px)
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    font-size: .74rem;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 14px 38px;
    border-radius: 2px;
    border: 1px solid rgba(201, 150, 58, .4);
    transition: all .3s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold)
}

.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 10%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.scroll-hint span {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted)
}

.scroll-line {
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    animation: scrollRight 1.8s ease-in-out infinite;
}

@keyframes scrollRight {

    0%,
    100% {
        opacity: 1;
        transform: scaleX(1)
    }

    50% {
        opacity: .3;
        transform: scaleX(.5)
    }
}

/* ═══ FOOTER ═══ */
footer {
    background: var(--dark2);
    border-top: 1px solid rgba(201, 150, 58, .12);
    padding: 50px 0 26px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(201, 150, 58, .1);
    margin-bottom: 24px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 14px;
    opacity: .85
}

.footer-tagline {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 240px
}

.footer-col-title {
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #f5ecd5;
    margin-bottom: 16px
}

.footer-col-links {
    list-style: none;
    padding: 0
}

.footer-col-links li {
    margin-bottom: 9px
}

.footer-col-links a {
    font-size: .83rem;
    color: var(--gold);
    text-decoration: none;
    transition: color .3s
}


.footer-col-links a:hover {
    color: var(--gold-light)
}

.footer-bottom {
    text-align: center;
    font-size: .73rem;
    color: #f5ecd5;
}

.footer-bottom a {
    text-decoration: none
}


.foot-icon {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.foot-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(201, 150, 58, .25);
    background: transparent;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all .3s;
}

.foot-social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

/* ═══ SCROLL-TO-TOP ═══ */
#backTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 990;
    box-shadow: 0 6px 20px rgba(201, 150, 58, .35);
    transition: background .2s, transform .15s;
    cursor: pointer;
    font-size: 1rem;
}

#backTop:hover {
    background: var(--gold2);
    transform: translateY(-2px)
}

#backTop.show {
    display: flex
}

/* ═══ REVEAL ANIMATIONS ═══ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-left.visible {
    opacity: 1;
    transform: none
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal-right.visible {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .17s
}

.d3 {
    transition-delay: .26s
}

.d4 {
    transition-delay: .35s
}

.d5 {
    transition-delay: .44s
}

.d6 {
    transition-delay: .53s
}

.glow-hover:hover {
    filter: drop-shadow(0 0 12px rgba(201, 150, 58, .4))
}

/* ═══════════════════════════════════════════════════════
   SECTION 1 — ALL DISHES
═══════════════════════════════════════════════════════ */
#alldishes {
    padding: 120px 0;
    background: var(--dark3);
    position: relative;
    overflow: hidden;
}

/* faint watermark text */
#alldishes::before {
    content: 'MENU';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 22rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: rgba(253, 214, 142, 0.025);
    pointer-events: none;
    white-space: nowrap;
    line-height: 1;
}

/* category tab pills */
.dish-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
}

.dish-tab {
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    background: transparent;
    border: 1px solid rgba(201, 150, 58, .25);
    color: var(--muted);
    padding: 9px 22px;
    border-radius: 2px;
    cursor: pointer;
    transition: all .25s;
}

.dish-tab:hover {
    border-color: var(--gold);
    color: var(--gold2)
}

.dish-tab.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark)
}

/* dish grid */
.dish-panel {
    display: none
}

.dish-panel.active {
    display: block
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 150, 58, .08);
    border: 1px solid rgba(201, 150, 58, .08);
    border-radius: 4px;
    overflow: hidden;
}

@media(max-width:991px) {
    .dish-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:575px) {
    .dish-grid {
        grid-template-columns: 1fr
    }
}

.dish-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--dark4);
    gap: 12px;
    transition: background .25s;
}

.dish-row:hover {
    background: #2f2818
}

.dish-row-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0
}

.dish-row-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(201, 150, 58, .1);
    border: 1px solid rgba(201, 150, 58, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: var(--gold);
    transition: background .25s;
}

.dish-row:hover .dish-row-icon {
    background: rgba(201, 150, 58, .2)
}

.dish-row-name {
    font-size: .9rem;
    color: var(--cream);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dish-row-tag {
    font-size: .58rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}

.dish-row-price {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold2);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   SECTION 2 — 365 DAYS SPECIAL MENU
═══════════════════════════════════════════════════════ */
#special365 {
    padding: 0;
    background: var(--dark2);
    position: relative;
    overflow: hidden;
}

/* big decorative "365" behind */
#special365::before {
    content: '365';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: 28rem;
    font-weight: 700;
    color: rgba(201, 150, 58, .03);
    pointer-events: none;
    line-height: 1;
}

/* two-column layout */
.sp365-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

@media(max-width:991px) {
    .sp365-wrap {
        grid-template-columns: 1fr
    }
}

/* left — dark promo side */
.sp365-left {
    background: linear-gradient(135deg, var(--navy2) 0%, #0f0d1f 55%, var(--dark) 100%);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sp365-left::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 150, 58, .08) 0%, transparent 65%);
    pointer-events: none;
}

.sp365-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 150, 58, .12);
    border: 1px solid rgba(201, 150, 58, .3);
    border-radius: 2px;
    padding: 7px 16px;
    margin-bottom: 24px;
    width: fit-content;
}

.sp365-badge i {
    font-size: .75rem;
    color: var(--gold)
}

.sp365-badge span {
    font-size: .65rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold2);
    font-weight: 600
}

.sp365-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 16px;
}

.sp365-heading em {
    font-style: italic;
    color: var(--gold)
}

.sp365-sub {
    color: rgba(245, 239, 230, .5);
    font-size: .88rem;
    font-weight: 300;
    line-height: 1.85;
    max-width: 360px;
    margin-bottom: 32px;
}

.sp365-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    width: fit-content;
}

.sp365-cta:hover {
    background: var(--gold2);
    color: var(--dark);
    transform: translateY(-2px)
}

/* right — offer cards */
.sp365-right {
    background: var(--dark3);
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

@media(max-width:991px) {
    .sp365-left {
        padding: 60px 32px
    }

    .sp365-right {
        padding: 50px 32px
    }
}

@media(max-width:575px) {
    .sp365-left {
        padding: 52px 22px
    }

    .sp365-right {
        padding: 40px 22px
    }
}

.offer-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--dark4);
    border: 1px solid rgba(201, 150, 58, .1);
    border-radius: 4px;
    padding: 22px 26px;
    position: relative;
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}

.offer-card:hover {
    border-color: rgba(201, 150, 58, .4);
    transform: translateX(4px)
}

/* gold left accent bar */
.offer-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .35s;
}

.offer-card:hover::before {
    transform: scaleY(1)
}

.offer-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(201, 150, 58, .1);
    border: 1px solid rgba(201, 150, 58, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    transition: background .3s;
}

.offer-card:hover .offer-icon {
    background: rgba(201, 150, 58, .2)
}

.offer-body {
    flex: 1;
    min-width: 0
}

.offer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 4px;
    line-height: 1.2;
}

.offer-desc {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.6
}

.offer-price-wrap {
    text-align: right;
    flex-shrink: 0
}

.offer-was {
    font-size: .7rem;
    color: var(--muted2);
    text-decoration: line-through;
    margin-bottom: 2px
}

.offer-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.offer-note {
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold2);
    margin-top: 2px
}


#reservation {
      padding: 90px 0;
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    #reservation::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 150, 58, .05) 0%, transparent 70%);
      pointer-events: none;
    }

    .resv-box {
      background: var(--dark3);
      border: 1px solid rgba(201, 150, 58, .18);
      border-radius: 6px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
    }

    @media(max-width:767px) {
      .resv-box {
        grid-template-columns: 1fr
      }
    }

    /* gold top accent line */
    .resv-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    /* LEFT — dark rich side */
    .resv-left {
      background: linear-gradient(135deg, var(--navy2) 0%, #0f0d1f 55%, var(--dark) 100%);
      padding: 56px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .resv-left::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201, 150, 58, .09) 0%, transparent 65%);
      pointer-events: none;
    }

    .resv-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201, 150, 58, .1);
      border: 1px solid rgba(201, 150, 58, .25);
      border-radius: 2px;
      padding: 6px 14px;
      margin-bottom: 22px;
      width: fit-content;
    }

    .resv-eyebrow i {
      font-size: .7rem;
      color: var(--gold)
    }

    .resv-eyebrow span {
      font-size: .62rem;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold2);
      font-weight: 600
    }

    .resv-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.1;
      color: var(--cream);
      margin-bottom: 14px;
    }

    .resv-heading em {
      font-style: italic;
      color: var(--gold)
    }

    .resv-sub {
      color: rgba(245, 239, 230, .5);
      font-size: .88rem;
      font-weight: 300;
      line-height: 1.85;
      max-width: 320px;
    }

    /* RIGHT — contact methods */
    .resv-right {
      padding: 56px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
    }

    @media(max-width:767px) {

      .resv-left,
      .resv-right {
        padding: 40px 28px
      }
    }

    .resv-method {
      display: flex;
      align-items: center;
      gap: 18px;
      background: var(--dark4);
      border: 1px solid rgba(201, 150, 58, .09);
      border-radius: 4px;
      padding: 20px 24px;
      text-decoration: none;
      transition: border-color .3s, transform .3s, background .3s;
      position: relative;
      overflow: hidden;
    }

    .resv-method::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--gold);
      transform: scaleY(0);
      transform-origin: bottom;
      transition: transform .35s;
    }

    .resv-method:hover {
      border-color: rgba(201, 150, 58, .38);
      transform: translateX(5px);
      background: #2a2418;
    }

    .resv-method:hover::before {
      transform: scaleY(1)
    }

    .resv-method-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      flex-shrink: 0;
      background: rgba(201, 150, 58, .1);
      border: 1px solid rgba(201, 150, 58, .22);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.1rem;
      transition: background .3s;
    }

    .resv-method:hover .resv-method-icon {
      background: rgba(201, 150, 58, .22)
    }

    .resv-method-body {
      flex: 1;
      min-width: 0
    }

    .resv-method-label {
      font-size: .62rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 3px;
    }

    .resv-method-value {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--cream);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .resv-method-note {
      font-size: .72rem;
      color: var(--muted);
      margin-top: 2px
    }

    .resv-method-arrow {
      color: rgba(201, 150, 58, .35);
      font-size: 1rem;
      flex-shrink: 0;
      transition: color .3s, transform .3s;
    }

    .resv-method:hover .resv-method-arrow {
      color: var(--gold);
      transform: translateX(3px)
    }

    .resv-note {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 6px;
      padding: 12px 16px;
      background: rgba(201, 150, 58, .05);
      border-radius: 3px;
      border: 1px solid rgba(201, 150, 58, .1);
    }

    .resv-note i {
      color: var(--gold);
      font-size: .8rem;
      flex-shrink: 0
    }

    .resv-note span {
      font-size: .75rem;
      color: var(--muted);
      line-height: 1.5
    }