/* ==========================================================================
   HEKAYH RESTAURANT - SIALKOT, PAKISTAN
   Custom Luxury Editorial Restaurant Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Color System
   -------------------------------------------------------------------------- */
:root {
    --primary-dark: #17120F;
    --deep-brown: #2A1D17;
    --warm-cream: #F7F0E7;
    --cream-light: #FAF5EE;
    --off-white: #FFFDFC;
    --burnt-orange: #B85C38;
    --terracotta: #C66A42;
    --muted-gold: #C5A15B;
    --gold-light: #E4C88A;
    --olive-accent: #6E7047;
    --text-dark: #26211D;
    --text-muted: #665D55;
    --text-light: #ECE5DC;
    --soft-grey: #EEE9E3;
    --border-warm: #E2D9CE;
    
    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-eyebrow: 'Montserrat', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-soft: 0 10px 30px rgba(23, 18, 15, 0.06);
    --shadow-hover: 0 16px 36px rgba(23, 18, 15, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   2. Base & Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--warm-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    padding-bottom: 0;
}

/* For mobile fixed bottom bar padding */
@media (max-width: 991px) {
    body {
        padding-bottom: 72px;
    }
}

h1, h2, h3, h4, h5, h6,
.font-heading {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.eyebrow {
    font-family: var(--font-eyebrow);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--burnt-orange);
    display: inline-block;
    margin-bottom: 0.75rem;
}

.eyebrow-gold {
    color: var(--muted-gold);
}

.eyebrow-olive {
    color: var(--olive-accent);
}

p.lead {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.75;
}

a {
    color: var(--burnt-orange);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--terracotta);
}

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

/* --------------------------------------------------------------------------
   3. Buttons & CTAs
   -------------------------------------------------------------------------- */
.btn-hekayh {
    font-family: var(--font-eyebrow);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.btn-hekayh-primary {
    background-color: var(--burnt-orange);
    color: #ffffff;
    border-color: var(--burnt-orange);
}

.btn-hekayh-primary:hover {
    background-color: var(--terracotta);
    border-color: var(--terracotta);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 92, 56, 0.25);
}

.btn-hekayh-secondary {
    background-color: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-hekayh-secondary:hover {
    background-color: var(--primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-hekayh-outline-light {
    background-color: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-hekayh-outline-light:hover {
    background-color: #ffffff;
    color: var(--primary-dark);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn-hekayh-gold {
    background-color: var(--muted-gold);
    color: var(--primary-dark);
    border-color: var(--muted-gold);
}

.btn-hekayh-gold:hover {
    background-color: var(--gold-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 161, 91, 0.3);
}

.btn-hekayh-sm {
    padding: 0.55rem 1.15rem;
    font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   4. Top Bar & Navigation
   -------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-size: 0.82rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
    color: var(--text-light);
}

.top-bar a:hover {
    color: var(--muted-gold);
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.2);
    margin: 0 0.5rem;
}

.navbar-hekayh {
    background-color: rgba(23, 18, 15, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 217, 206, 0.1);
    padding: 0.9rem 0;
    transition: var(--transition);
    z-index: 1020;
}

.navbar-hekayh.sticky-nav {
    position: sticky;
    top: 0;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    padding: 0.65rem 0;
}

.navbar-brand-hekayh {
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
}

.navbar-brand-hekayh .brand-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #ffffff;
    line-height: 1;
}

.navbar-brand-hekayh .brand-sub {
    font-family: var(--font-eyebrow);
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--muted-gold);
    text-transform: uppercase;
    margin-top: 3px;
}

.nav-link-hekayh {
    font-family: var(--font-eyebrow);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light) !important;
    padding: 0.5rem 0.9rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link-hekayh::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.9rem;
    right: 0.9rem;
    height: 2px;
    background-color: var(--muted-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease-out;
}

.nav-link-hekayh:hover,
.nav-link-hekayh.active {
    color: #ffffff !important;
}

.nav-link-hekayh:hover::after,
.nav-link-hekayh.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Offcanvas Mobile Navigation */
.offcanvas-hekayh {
    background-color: var(--primary-dark);
    color: #ffffff;
    max-width: 320px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-hekayh .btn-close-white {
    opacity: 0.8;
}

.offcanvas-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-light);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.offcanvas-nav .nav-link:hover,
.offcanvas-nav .nav-link.active {
    color: var(--muted-gold);
    padding-left: 0.5rem;
}

/* --------------------------------------------------------------------------
   5. Hero Sections
   -------------------------------------------------------------------------- */
.hero-restaurant {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(23, 18, 15, 0.92) 0%,
        rgba(23, 18, 15, 0.75) 50%,
        rgba(23, 18, 15, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.hero-title {
    font-size: clamp(2.6rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 2.2rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(197, 161, 91, 0.15);
    border: 1px solid rgba(197, 161, 91, 0.4);
    color: var(--muted-gold);
    font-family: var(--font-eyebrow);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.92rem;
    font-weight: 500;
}

.hero-feature-item i {
    color: var(--muted-gold);
    font-size: 1.25rem;
}

/* Page Banner Hero (Subpages) */
.page-banner {
    position: relative;
    background-color: var(--primary-dark);
    padding: 5rem 0 4rem;
    color: #ffffff;
    text-align: center;
    border-bottom: 1px solid var(--border-warm);
    background-size: cover;
    background-position: center;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 18, 15, 0.85);
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: #ffffff;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin-bottom: 0.75rem;
}

.page-banner p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 680px;
    margin: 0 auto;
}

.breadcrumb-hekayh {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    font-family: var(--font-eyebrow);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.breadcrumb-hekayh a {
    color: var(--muted-gold);
}

.breadcrumb-hekayh span {
    color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   6. Quick Info Strip
   -------------------------------------------------------------------------- */
.quick-info-strip {
    background-color: var(--deep-brown);
    color: #ffffff;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.quick-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 1rem;
}

.quick-info-icon {
    font-size: 1.6rem;
    color: var(--muted-gold);
    line-height: 1;
    margin-top: 0.15rem;
}

.quick-info-label {
    font-family: var(--font-eyebrow);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 0.2rem;
}

.quick-info-val {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.4;
}

.quick-info-val a {
    color: #ffffff;
}

.quick-info-val a:hover {
    color: var(--muted-gold);
}

/* --------------------------------------------------------------------------
   7. Section Containers & Layout
   -------------------------------------------------------------------------- */
.section-padding {
    padding: 5.5rem 0;
}

.section-padding-sm {
    padding: 3.5rem 0;
}

.bg-cream {
    background-color: var(--warm-cream);
}

.bg-cream-light {
    background-color: var(--cream-light);
}

.bg-dark-brown {
    background-color: var(--deep-brown);
    color: var(--text-light);
}

.bg-dark-brown h2,
.bg-dark-brown h3,
.bg-dark-brown h4 {
    color: #ffffff;
}

.bg-primary-dark {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.bg-primary-dark h2,
.bg-primary-dark h3,
.bg-primary-dark h4 {
    color: #ffffff;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header.text-center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin-bottom: 1rem;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background-color: var(--muted-gold);
    margin: 1.25rem 0;
}

.gold-divider.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* --------------------------------------------------------------------------
   8. Editorial Food & Menu Cards
   -------------------------------------------------------------------------- */
.dish-card {
    background-color: var(--off-white);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.dish-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184, 92, 56, 0.4);
}

.dish-card-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 68%; /* 4:3ish ratio */
    overflow: hidden;
    background-color: var(--soft-grey);
}

.dish-card-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.dish-card:hover .dish-card-img-wrap img {
    transform: scale(1.05);
}

.dish-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--burnt-orange);
    color: #ffffff;
    font-family: var(--font-eyebrow);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.dish-badge-gold {
    background-color: var(--muted-gold);
    color: var(--primary-dark);
}

.dish-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dish-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.4rem;
}

.dish-category {
    font-family: var(--font-eyebrow);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--olive-accent);
}

.dish-price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--burnt-orange);
}

.dish-card-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.dish-card-title a {
    color: var(--primary-dark);
}

.dish-card-title a:hover {
    color: var(--burnt-orange);
}

.dish-card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.dish-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--soft-grey);
}

/* Category Filter Tabs */
.menu-filter-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
}

.menu-filter-btn {
    font-family: var(--font-eyebrow);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.65rem 1.3rem;
    border-radius: var(--radius-sm);
    background-color: var(--off-white);
    border: 1px solid var(--border-warm);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.menu-filter-btn:hover {
    background-color: var(--border-warm);
    color: var(--primary-dark);
}

.menu-filter-btn.active {
    background-color: var(--burnt-orange);
    border-color: var(--burnt-orange);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(184, 92, 56, 0.25);
}

/* Menu Row Display Style */
.menu-row-item {
    background-color: var(--off-white);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition);
}

.menu-row-item:hover {
    border-color: var(--burnt-orange);
    box-shadow: var(--shadow-soft);
}

.menu-row-thumb {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
}

.menu-row-info {
    flex-grow: 1;
}

.menu-row-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed var(--border-warm);
    padding-bottom: 0.35rem;
    margin-bottom: 0.4rem;
}

.menu-row-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--primary-dark);
}

.menu-row-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--burnt-orange);
    flex-shrink: 0;
    padding-left: 1rem;
}

.menu-row-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Signature Kunafa Feature Section
   -------------------------------------------------------------------------- */
.kunafa-feature-section {
    background: linear-gradient(135deg, #FAF4EB 0%, #F5E8D3 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(197, 161, 91, 0.25);
    border-bottom: 1px solid rgba(197, 161, 91, 0.25);
}

.kunafa-feature-card {
    background-color: var(--off-white);
    border: 1px solid rgba(197, 161, 91, 0.3);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.kunafa-badge {
    background-color: var(--muted-gold);
    color: var(--primary-dark);
    font-family: var(--font-eyebrow);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   10. Family Dining & Platters Sections
   -------------------------------------------------------------------------- */
.editorial-image-grid {
    position: relative;
}

.editorial-image-main {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.editorial-image-secondary {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 48%;
    border-radius: var(--radius-md);
    border: 5px solid var(--off-white);
    box-shadow: var(--shadow-hover);
}

@media (max-width: 767px) {
    .editorial-image-secondary {
        position: static;
        width: 100%;
        border: none;
        margin-top: 1rem;
    }
}

/* --------------------------------------------------------------------------
   11. Gallery & Lightbox
   -------------------------------------------------------------------------- */
.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

@media (max-width: 991px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 575px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    background-color: var(--soft-grey);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 18, 15, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 1.5rem;
    text-align: center;
    color: #ffffff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--muted-gold);
    margin-bottom: 0.5rem;
}

.gallery-overlay-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

/* Vanilla Lightbox Modal */
.hekayh-lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(15, 12, 10, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hekayh-lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-align: center;
    margin-top: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--muted-gold);
}

/* --------------------------------------------------------------------------
   12. Reviews & Testimonials
   -------------------------------------------------------------------------- */
.review-card {
    background-color: var(--off-white);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-md);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(197, 161, 91, 0.4);
}

.review-rating {
    color: #f5a623;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.review-quote {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--warm-cream);
    color: var(--burnt-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid var(--border-warm);
}

.review-author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.review-platform {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. Reservation & Forms
   -------------------------------------------------------------------------- */
.reservation-card {
    background-color: var(--off-white);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 575px) {
    .reservation-card {
        padding: 1.75rem;
    }
}

.form-label-hekayh {
    font-family: var(--font-eyebrow);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 0.4rem;
}

.form-control-hekayh {
    background-color: #ffffff;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control-hekayh:focus {
    outline: none;
    border-color: var(--burnt-orange);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.12);
}

.form-control-hekayh::placeholder {
    color: #9c9389;
    font-size: 0.9rem;
}

.honeypot-field {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
}

.alert-hekayh {
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    border-left: 4px solid;
}

.alert-hekayh-success {
    background-color: #F1F6EF;
    color: #2D5826;
    border-color: #4C8E40;
}

.alert-hekayh-danger {
    background-color: #FDF1EF;
    color: #8C291A;
    border-color: #B85C38;
}

/* --------------------------------------------------------------------------
   14. Instagram Section
   -------------------------------------------------------------------------- */
.social-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1 / 1;
}

.social-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.social-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(23, 18, 15, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #ffffff;
    font-size: 1.8rem;
}

.social-preview-item:hover .social-preview-overlay {
    opacity: 1;
}

.social-preview-item:hover img {
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.footer-hekayh {
    background-color: var(--primary-dark);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.footer-tagline {
    font-family: var(--font-eyebrow);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted-gold);
    margin-bottom: 1.25rem;
}

.footer-heading {
    font-family: var(--font-eyebrow);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--muted-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--muted-gold);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    color: var(--text-light);
}

.footer-contact-item i {
    color: var(--muted-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: var(--text-light);
}

.footer-contact-item a:hover {
    color: var(--muted-gold);
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-social-btn:hover {
    background-color: var(--burnt-orange);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   16. Floating WhatsApp & Mobile Bottom Bar
   -------------------------------------------------------------------------- */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1040;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: #25D366;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    font-family: var(--font-eyebrow);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    background-color: #20BA5A;
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp i {
    font-size: 1.4rem;
}

@media (max-width: 991px) {
    .floating-whatsapp {
        bottom: 85px;
        right: 15px;
        padding: 0.7rem;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }
    
    .floating-whatsapp span {
        display: none;
    }
}

/* Mobile Fixed Bottom Action Bar */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
    z-index: 1030;
    padding: 0.5rem 0.25rem;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991px) {
    .mobile-bottom-bar {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

.mobile-bottom-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    font-family: var(--font-eyebrow);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    min-width: 60px;
}

.mobile-bottom-btn i {
    font-size: 1.25rem;
    margin-bottom: 2px;
    color: var(--muted-gold);
}

.mobile-bottom-btn:hover,
.mobile-bottom-btn.active {
    color: #ffffff;
}

.mobile-bottom-btn.order-btn {
    background-color: var(--burnt-orange);
    color: #ffffff;
    border-radius: var(--radius-sm);
    padding: 0.4rem 0.75rem;
}

.mobile-bottom-btn.order-btn i {
    color: #ffffff;
}
