/* ==========================================================================
   ALHOOT EL SHARQI — Master Seafood Restaurant Stylesheet
   Direction: RTL (ar-SA)
   Architecture: Hand-crafted Vanilla CSS + GSAP Motion System
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. TOKENS & ROOT VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Brand Color Palette */
  --brand-navy: #0F3552;
  --brand-navy-dark: #061628;
  --brand-blue: #225C8A;
  --brand-orange: #F95702;
  --brand-orange-hover: #D84A00;
  --brand-gold: #D4A373;

  /* Surfaces & Backgrounds */
  --surface-main: #FFFDFC;
  --surface-warm: #FFF7EF;
  --surface-blue: #F3F7FA;
  --surface-white: #FFFFFF;

  /* Text Colors */
  --text-main: #102634;
  --text-secondary: #596972;
  --text-light: #8494A0;
  --text-white: #FFFFFF;

  /* Borders & Shadows */
  --border-soft: rgba(15, 53, 82, 0.1);
  --border-light: rgba(15, 53, 82, 0.05);
  --shadow-sm: 0 4px 14px rgba(15, 53, 82, 0.04);
  --shadow-soft: 0 18px 45px rgba(15, 53, 82, 0.07);
  --shadow-hover: 0 22px 50px rgba(15, 53, 82, 0.11);
  --shadow-orange: 0 10px 30px rgba(249, 87, 2, 0.24);

  /* Typography */
  --font-display: 'Tajawal', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: 'Readex Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Layout Boundaries */
  --container-max: 1280px;
  --header-height: 80px;

  /* Easing & Transitions */
  --trans-fast: 200ms ease;
  --trans-smooth: 400ms cubic-bezier(0.22, 1, 0.36, 1);
  --trans-slow: 850ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   02. RESET & ACCESSIBILITY
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: calc(var(--header-height) + 24px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--surface-main);
  line-height: 1.75;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-smooth), background-color var(--trans-smooth), border-color var(--trans-smooth), transform var(--trans-smooth);
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* Page Scroll Progress Bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--brand-orange);
  z-index: 10000;
  transform-origin: right center;
  transform: scaleX(0);
}

.skip-link {
  position: absolute;
  top: -100px;
  right: 20px;
  background: var(--brand-navy);
  color: #fff;
  padding: 12px 24px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 99999;
  font-weight: 700;
  transition: top var(--trans-fast);
}

.skip-link:focus {
  top: 0;
}

*:focus-visible {
  outline: 3px solid var(--brand-orange);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   03. TYPOGRAPHY SYSTEM
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brand-navy);
}

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

.section-title {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 620px;
  font-weight: 400;
  line-height: 1.65;
}

.section-subtitle-large {
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   04. LAYOUT CONTAINERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container-narrow {
  max-width: 840px;
}

.section {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

/* --------------------------------------------------------------------------
   05. BUTTONS & INTERACTIVE LINKS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.2rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background-color var(--trans-smooth), color var(--trans-smooth), border-color var(--trans-smooth), transform 250ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 250ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--brand-orange);
  color: var(--text-white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background-color: var(--brand-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(249, 87, 2, 0.32);
}

.btn-primary svg {
  transition: transform var(--trans-smooth);
}

.btn-primary:hover svg {
  transform: translateX(-4px);
}

.btn-outline {
  background-color: transparent;
  color: var(--brand-navy);
  border: 1.5px solid var(--border-soft);
}

.btn-outline:hover {
  background-color: var(--surface-warm);
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background-color: #1FBF5B;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
}

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

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   06. TOP ANNOUNCEMENT & HEADER
   -------------------------------------------------------------------------- */
.top-announcement {
  background-color: var(--brand-navy-dark);
  color: #D8E5F0;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.announcement-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #FFF;
  font-weight: 500;
}

.announcement-link:hover {
  color: var(--brand-orange);
}

.divider-dot {
  opacity: 0.4;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 253, 252, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.8rem 0;
  border-bottom: 1px solid transparent;
  transition: background-color 300ms ease, border-color 300ms ease, padding 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled {
  background-color: rgba(255, 253, 252, 0.95);
  border-bottom-color: var(--border-soft);
  padding: 0.45rem 0;
  box-shadow: 0 4px 20px rgba(15, 53, 82, 0.04);
}

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

.header-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: height var(--trans-smooth);
}

.site-header.scrolled .header-logo {
  height: 42px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-main);
  position: relative;
  padding: 0.4rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-navy);
  font-weight: 600;
}

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

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

.btn-nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #25D366;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  background-color: rgba(37, 211, 102, 0.08);
}

.btn-nav-whatsapp:hover {
  background-color: rgba(37, 211, 102, 0.16);
}

/* Mobile Toggle & Drawer */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.hamburger-bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--brand-navy);
  border-radius: 2px;
  transition: all var(--trans-fast);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 53, 82, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-smooth);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--surface-main);
  z-index: 2001;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans-smooth);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-drawer.open {
  transform: translateX(-320px);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-soft);
}

.mobile-drawer-logo {
  height: 38px;
  width: auto;
}

.mobile-close-btn {
  color: var(--text-main);
  padding: 0.4rem;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.mobile-nav-link:hover {
  color: var(--brand-orange);
}

.mobile-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   07. HERO SECTION & SINGLE-ROW HERO CTA LAYOUT
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding-top: 2.2rem;
  padding-bottom: 3.5rem;
  overflow: hidden;
  background-color: var(--surface-main);
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 87, 2, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  z-index: 2;
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--surface-warm);
  color: var(--brand-orange);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(249, 87, 2, 0.15);
  margin-bottom: 1.2rem;
}

.tag-sparkle {
  color: var(--brand-orange);
}

.hero-title {
  font-size: clamp(3.2rem, 5.2vw, 4.8rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
  color: var(--brand-navy);
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line-inner {
  display: block;
  will-change: transform;
}

.text-gradient {
  background: linear-gradient(135deg, var(--brand-orange) 0%, #E04B00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.6rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-primary-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}

.hero-primary-btns .btn-whatsapp {
  padding-left: 1.65rem;
  padding-right: 1.65rem;
}

.hero-media-col {
  position: relative;
  z-index: 1;
}

.hero-media-card {
  position: relative;
}

.media-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  will-change: transform, clip-path;
}

.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.floating-badge {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 3;
}

.badge-top-right {
  top: 1.5rem;
  right: -1.5rem;
}

.badge-bottom-left {
  bottom: 1.5rem;
  left: -1.5rem;
}

.badge-icon-box {
  font-size: 1.4rem;
}

.badge-headline {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.badge-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Shallow Elegant Hero Wave SVG (~40px Vertical Curvature) */
.hero-bottom-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 40px;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-bottom-wave svg {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   07B. REFINED NAVY FOOD SPECIALTY STRIP (85px HEIGHT, SMALL ORANGE DOTS)
   -------------------------------------------------------------------------- */
.navy-specialty-strip {
  background-color: var(--brand-navy-dark);
  color: #FFFFFF;
  height: 85px;
  min-height: 85px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.specialty-items-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  font-weight: 700;
}

.specialty-item {
  color: #E8F1F8;
  white-space: nowrap;
}

.specialty-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-orange);
  display: inline-block;
  flex-shrink: 0;
  opacity: 0.9;
}

/* --------------------------------------------------------------------------
   08. SIGNATURE DISHES (EDITORIAL MOSAIC GRID — NO EMPTY QUADRANTS)
   -------------------------------------------------------------------------- */
.section-dishes {
  background-color: var(--surface-main);
  padding-top: 5rem;
}

.dishes-mosaic-grid {
  display: grid;
  grid-template-columns: 46% 27% 27%;
  gap: 1.5rem;
  align-items: stretch;
}

.dish-card {
  background-color: var(--surface-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  transition: box-shadow 350ms var(--trans-smooth), border-color 350ms var(--trans-smooth);
  height: 100%;
}

.dish-card:hover {
  box-shadow: 0 16px 40px rgba(15, 53, 82, 0.08);
  border-color: rgba(249, 87, 2, 0.25);
}

/* Featured Large Dish (RTL Col 1, Spans Both Rows) */
.dish-card-featured {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.dish-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--surface-blue);
}

.dish-card-featured .dish-media {
  height: 420px;
}

.dish-card:not(.dish-card-featured) .dish-media {
  height: 180px;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

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

.dish-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 53, 82, 0) 60%, rgba(15, 53, 82, 0.12) 100%);
  pointer-events: none;
}

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

.dish-card-featured .dish-body {
  padding: 2rem;
}

.dish-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--brand-navy);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.dish-card:hover .dish-title {
  transform: translateY(-2px);
}

.dish-card-featured .dish-title {
  font-size: 1.75rem;
}

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

.dish-card-featured .dish-desc {
  font-size: 1.05rem;
}

.dish-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: auto;
  transition: color 350ms var(--trans-smooth);
}

.dish-cta-link svg {
  color: var(--brand-orange);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.dish-card:hover .dish-cta-link {
  color: var(--brand-orange);
}

.dish-card:hover .dish-cta-link svg {
  transform: translateX(-5px);
}

/* --------------------------------------------------------------------------
   09. BRAND STORY / FRESHNESS BANNER (CINEMATIC MOMENT & CLIP REVEAL)
   -------------------------------------------------------------------------- */
.section-story-banner {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #FFFFFF;
}

.freshness-clip-reveal {
  clip-path: inset(7% 0 7% 0 round 24px);
  will-change: clip-path, transform;
}

.story-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.story-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(15, 53, 82, 0.88) 0%, rgba(15, 53, 82, 0.5) 60%, transparent 100%);
}

.story-content-container {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.story-content-offcenter {
  margin-right: 4%;
  max-width: 580px;
  text-align: right;
}

.story-title {
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.story-lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: #E2ECF4;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   10. FAMILY FEAST & OFFERS SPLIT
   -------------------------------------------------------------------------- */
.section-offers-split {
  background-color: var(--surface-warm);
}

.offers-split-card {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  gap: 3.5rem;
}

.offers-media-col {
  width: 100%;
}

.offers-image-frame {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.offers-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  will-change: transform;
}

.offers-content-col {
  padding-right: 1rem;
}

.offers-editorial-note {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brand-navy);
  margin-bottom: 2.2rem;
}

/* --------------------------------------------------------------------------
   11. CUSTOMER REVIEWS SPOTLIGHT (EDITORIAL SINGLE QUOTE)
   -------------------------------------------------------------------------- */
.section-reviews-spotlight {
  background-color: var(--surface-main);
}

.review-spotlight-wrapper {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.review-quote-watermark {
  font-family: Georgia, serif;
  font-size: 9rem;
  line-height: 1;
  color: var(--brand-orange);
  opacity: 0.12;
  position: absolute;
  top: -2.5rem;
  right: 1.5rem;
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
}

.review-slider-track {
  position: relative;
  min-height: 240px;
}

.review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity;
}

.review-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.review-card-inner {
  background-color: var(--surface-warm);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  text-align: center;
}

.review-body-text {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.65;
  color: var(--brand-navy);
  font-weight: 700;
  margin-bottom: 2.2rem;
}

.review-author-meta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--brand-navy);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-info {
  text-align: right;
}

.author-name {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.author-source {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.review-controls-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.review-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  transition: all var(--trans-fast);
}

.review-nav-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  background-color: var(--surface-warm);
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-soft);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.review-dot:focus-visible {
  outline: 2px solid var(--brand-orange);
  outline-offset: 2px;
}

.review-dot.active {
  background-color: var(--brand-orange);
  width: 24px;
  border-radius: var(--radius-pill);
}

/* --------------------------------------------------------------------------
   12. LOCATION & CONVERSION HUB
   -------------------------------------------------------------------------- */
.section-location-hub {
  background-color: var(--surface-blue);
}

.location-hub-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 3.5rem;
  align-items: center;
}

.location-details-col {
  padding-left: 1rem;
}

.location-hub-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1.8rem;
}

.location-facts-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.fact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: baseline;
  gap: 1rem;
  font-size: 1.05rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dashed var(--border-soft);
}

.fact-label {
  font-weight: 700;
  color: var(--brand-navy);
}

.fact-value {
  color: var(--text-secondary);
}

.phone-link {
  color: var(--brand-navy);
  font-weight: 600;
}

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

.location-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.location-map-col {
  width: 100%;
}

.map-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.map-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.map-card-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  background-color: rgba(255, 253, 252, 0.94);
  backdrop-filter: blur(8px);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
}

.map-overlay-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 0.2rem;
}

.map-overlay-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}

.map-link-btn {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-orange);
}

.map-link-btn:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   13. SIMPLIFIED FAQ ACCORDION & PLUS ICON ROTATION
   -------------------------------------------------------------------------- */
.section-faq {
  background-color: var(--surface-main);
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-navy);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--brand-orange);
  transition: transform 220ms ease;
}

details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0.5rem 1.6rem 0.5rem;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   14. SITE FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--brand-navy-dark);
  color: #D8E5F0;
  padding-top: 5rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 40% 25% 35%;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 1.2rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #A0B4C6;
  margin-bottom: 1.8rem;
  max-width: 380px;
}

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

.footer-socials a {
  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: all var(--trans-fast);
}

.footer-socials a:hover {
  background-color: var(--brand-orange);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.4rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.95rem;
}

.footer-links a,
.footer-contact a {
  color: #A0B4C6;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.9rem;
  color: #7A92A6;
}

/* --------------------------------------------------------------------------
   15. FIXED SCROLL-TO-TOP BUTTON (BOTTOM-LEFT RTL POSITIONING)
   -------------------------------------------------------------------------- */
.scroll-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--brand-navy);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(15, 53, 82, 0.25);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  pointer-events: none;
  transition: background-color var(--trans-fast), border-color var(--trans-fast);
}

.scroll-to-top:hover {
  background-color: var(--brand-orange);
  border-color: var(--brand-orange);
}

/* --------------------------------------------------------------------------
   16. MOBILE STICKY BOTTOM CTA
   -------------------------------------------------------------------------- */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(255, 253, 252, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-soft);
  padding: 0.8rem 1.2rem;
  padding-bottom: max(0.8rem, env(safe-area-inset-bottom));
  display: none;
  transition: opacity var(--trans-fast), transform var(--trans-fast);
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-btn-main {
  flex: 2;
}

.mobile-btn-sub {
  flex: 1;
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .nav-list,
  .btn-nav-whatsapp {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    padding-top: 2rem;
    padding-bottom: 2.8rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-primary-btns {
    justify-content: center;
    width: auto;
  }

  .hero-img {
    height: 360px;
  }

  .floating-badge {
    padding: 0.6rem 0.9rem;
  }

  .badge-top-right {
    top: 1rem;
    right: 0;
  }

  .badge-bottom-left {
    bottom: 1rem;
    left: 0;
  }

  .navy-specialty-strip {
    height: auto;
    min-height: 75px;
    padding: 1rem 0;
  }

  .specialty-items-wrap {
    gap: 1rem;
    font-size: 1rem;
  }

  .dishes-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dish-card-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .offers-split-card,
  .location-hub-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .offers-content-col,
  .location-details-col {
    padding-right: 0;
  }

  .story-content-offcenter {
    margin-right: 0;
    max-width: 100%;
  }

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

@media (max-width: 768px) {
  .header-cta-btn {
    display: none;
  }

  .announcement-actions {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.4rem, 7.5vw, 3.2rem);
  }

  .specialty-items-wrap {
    font-size: 0.95rem;
    gap: 0.8rem;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .dishes-mosaic-grid {
    grid-template-columns: 1fr;
  }

  .dish-card-featured {
    grid-column: span 1;
  }

  .dish-card-featured .dish-media {
    height: 260px;
  }

  .review-card-inner {
    padding: 2.5rem 1.5rem;
  }

  .review-body-text {
    font-size: 1.35rem;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

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

  .mobile-sticky-cta {
    display: block;
  }

  .scroll-to-top {
    bottom: calc(76px + max(0.8rem, env(safe-area-inset-bottom)));
    left: 16px;
    width: 44px;
    height: 44px;
  }

  .hero-primary-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-primary-btns .btn {
    width: 100%;
  }

  .hero-menu-link {
    margin-inline-start: 0;
    align-self: center;
  }

}

@media (max-width: 480px) {
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-primary-btns .btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   18. PREFERS-REDUCED-MOTION & PRINT
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-line-inner,
  .media-frame,
  .freshness-clip-reveal,
  .story-bg-img,
  .dish-card,
  .review-slide {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

@media print {
  .site-header,
  .top-announcement,
  .mobile-sticky-cta,
  .scroll-to-top,
  .scroll-progress-bar,
  .hero-actions,
  .review-controls-bar {
    display: none !important;
  }

  body {
    background: #FFF;
    color: #000;
  }
}