/* ==========================================================================
   ALHOOTELSHARQI — Luxury Seafood Restaurant Stylesheet (Master Edition)
   Direction: RTL (ar-SA)
   Fonts: Tajawal (Headlines) & Readex Pro (Body & UI)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Core Marine Palette */
  --navy-950: #061628;
  --navy-900: #0B2545;
  --navy-850: #0F3159;
  --navy-800: #133E68;
  --navy-700: #1E558E;
  --navy-100: #EBF3FA;
  --navy-050: #F3F8FC;

  /* Radiant Coral & Amber Gold */
  --coral-600: #D84315;
  --coral-500: #F95702;
  --coral-400: #FF6B35;
  --coral-100: #FFF0E8;
  --coral-050: #FFF9F5;

  --gold-500: #D4A373;
  --gold-400: #E9C46A;
  --gold-100: #FAF3E0;

  --green-600: #25D366;
  --green-700: #128C7E;

  /* Surfaces */
  --surface-white: #FFFFFF;
  --surface-pearl: #F8FAFC;
  --surface-ice: #F0F5FA;
  --surface-warm: #FFFBF8;

  /* Text Colors */
  --text-main: #0B192C;
  --text-muted: #475B6C;
  --text-light: #7A8E9F;
  --text-white: #FFFFFF;

  /* Borders & Shadows */
  --border-light: #E2ECF4;
  --border-soft-coral: rgba(249, 87, 2, 0.2);
  --border-glass: rgba(255, 255, 255, 0.8);

  --shadow-sm: 0 4px 14px rgba(11, 37, 69, 0.04);
  --shadow-md: 0 12px 32px rgba(11, 37, 69, 0.07);
  --shadow-lg: 0 24px 60px rgba(11, 37, 69, 0.11);
  --shadow-coral-glow: 0 8px 26px rgba(249, 87, 2, 0.28);

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

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

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

  /* Transitions */
  --trans-fast: 160ms ease;
  --trans-smooth: 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE RULES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: all 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;
}

.skip-link {
  position: absolute;
  top: -100px;
  right: 20px;
  background: var(--navy-900);
  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(--coral-500);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-900);
  line-height: 1.3;
  font-weight: 800;
}

.container {
  width: min(100% - 36px, var(--container-max));
  margin-inline: auto;
}

.section {
  padding-block: 84px;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding-block: 56px;
  }
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-3 { margin-top: 14px; }
.mt-4 { margin-top: 20px; }
.mt-5 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 14px; }

.section-header {
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 50px;
}

.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-tag-gold {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--coral-600);
  background-color: var(--coral-100);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  color: var(--navy-950);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.max-width-center {
  max-width: 820px;
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   4. BUTTONS & INTERACTIVE ELEMENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: var(--radius-pill);
  transition: all var(--trans-smooth);
  cursor: pointer;
  white-space: nowrap;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 15px 34px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral-500) 0%, var(--coral-600) 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-coral-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-400) 0%, var(--coral-500) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249, 87, 2, 0.38);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--navy-850) 0%, var(--navy-950) 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.25);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 37, 69, 0.35);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #2ae06f 0%, #159c8c 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.38);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy-950);
  border: 1.5px solid var(--border-light);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: var(--navy-900);
  color: #FFFFFF;
  border-color: var(--navy-900);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. TOP ANNOUNCEMENT & HEADER
   -------------------------------------------------------------------------- */
.top-announcement {
  background-color: var(--navy-950);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  padding-block: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

@media (max-width: 768px) {
  .top-announcement { display: none; }
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: #25D366;
  border-radius: 50%;
  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: 12px;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--coral-400);
  font-weight: 600;
}
.announcement-link:hover { color: #fff; }

.divider-dot { color: rgba(255, 255, 255, 0.3); }

/* Main Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: all var(--trans-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.08);
  height: 72px;
}

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

.header-logo-link {
  display: flex;
  align-items: center;
}

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

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-900);
  padding: 6px 4px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background-color: var(--coral-500);
  border-radius: var(--radius-pill);
  transform: scaleX(0);
  transition: transform var(--trans-fast);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--green-700);
  background-color: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
}
.btn-nav-whatsapp:hover {
  background-color: var(--green-600);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 1040px) {
  .main-nav { display: none; }
  .btn-nav-whatsapp { display: none; }
  .header-cta-btn { display: none; }
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
  padding: 2px;
  z-index: 1002;
}

@media (max-width: 1040px) {
  .mobile-toggle { display: flex; }
}

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

/* Mobile Drawer Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 22, 40, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1005;
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-smooth);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(86vw, 360px);
  background-color: var(--surface-white);
  z-index: 1006;
  transform: translateX(100%);
  transition: transform var(--trans-smooth);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  box-shadow: -10px 0 40px rgba(6, 22, 40, 0.2);
  overflow-y: auto;
}

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

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

.mobile-close-btn {
  color: var(--navy-900);
  padding: 6px;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-950);
  display: block;
  padding-block: 6px;
}
.mobile-nav-link:hover { color: var(--coral-500); }

.mobile-drawer-actions {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION (EDITORIAL LUXURY)
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 48px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(235, 243, 250, 0.85) 0%, var(--surface-pearl) 70%);
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 87, 2, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  align-items: center;
  gap: 48px;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.tag-sparkle { color: var(--coral-500); }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--navy-950);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--coral-500) 0%, var(--coral-600) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 580px;
}

@media (max-width: 1024px) {
  .hero-subtitle {
    margin-inline: auto;
  }
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .hero-ctas {
    justify-content: center;
  }
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

@media (max-width: 1024px) {
  .hero-stats-row {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .hero-stats-row {
    flex-direction: column;
    gap: 14px;
  }
  .stat-divider { display: none; }
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
}

.stat-card strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.2;
}

.stat-card p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.stat-icon { font-size: 1.3rem; }

.stat-divider {
  width: 1px;
  height: 36px;
  background-color: var(--border-light);
}

/* Hero Media Column */
.hero-media-card {
  position: relative;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 60px rgba(11, 37, 69, 0.14);
  border: 4px solid #FFFFFF;
}

.media-frame {
  border-radius: calc(var(--radius-xl) - 4px);
  overflow: hidden;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 1.2s var(--trans-smooth);
}

.hero-media-card:hover .hero-img {
  transform: scale(1.03);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 14px 34px rgba(11, 37, 69, 0.12);
  z-index: 5;
}

.badge-top-right {
  top: -16px;
  right: -16px;
}

.badge-bottom-left {
  bottom: -16px;
  left: -16px;
}

@media (max-width: 600px) {
  .floating-badge { display: none; }
}

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

.badge-headline {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.2;
}

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

/* --------------------------------------------------------------------------
   7. VALUE PROPOSITION (WHY US - BENTO GRID)
   -------------------------------------------------------------------------- */
.section-why-us {
  background-color: #FFFFFF;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-us-grid {
    grid-template-columns: 1fr;
  }
}

.feature-box {
  background: var(--surface-pearl);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all var(--trans-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-box:hover {
  background: #FFFFFF;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(11, 37, 69, 0.08);
  border-color: var(--coral-500);
}

.feature-box-highlight {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy-050) 0%, #FFFFFF 100%);
  border-color: rgba(19, 62, 104, 0.2);
}

@media (max-width: 1024px) {
  .feature-box-highlight {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .feature-box-highlight {
    grid-column: span 1;
  }
}

.feature-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--coral-100) 0%, #FFFFFF 100%);
  color: var(--coral-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(249, 87, 2, 0.2);
  transition: transform var(--trans-smooth);
}

.feature-box:hover .feature-icon-circle {
  transform: scale(1.08) rotate(5deg);
  background: var(--coral-500);
  color: #FFFFFF;
}

.feature-title {
  font-size: 1.24rem;
  color: var(--navy-950);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   8. BEST SELLERS SECTION (GOURMET PRODUCT CARDS)
   -------------------------------------------------------------------------- */
.section-best-sellers {
  background-color: var(--surface-pearl);
}

.carousel-nav-buttons {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-light);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--trans-fast);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--coral-500);
  color: #FFFFFF;
  border-color: var(--coral-500);
  transform: scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-block: 10px 24px;
}

.product-carousel-track::-webkit-scrollbar {
  height: 6px;
}
.product-carousel-track::-webkit-scrollbar-thumb {
  background-color: var(--border-light);
  border-radius: 4px;
}

.luxury-dish-card {
  flex: 0 0 310px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--trans-smooth);
}

.luxury-dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 87, 2, 0.3);
}

.dish-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--trans-smooth);
}

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

.dish-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tag-crispy { background: linear-gradient(135deg, #F95702, #C74600); }
.tag-grilled { background: linear-gradient(135deg, #133E68, #0B2545); }
.tag-fresh { background: linear-gradient(135deg, #028090, #00A896); }
.tag-value { background: linear-gradient(135deg, #E65100, #EF6C00); }
.tag-family { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }

.dish-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dish-name {
  font-size: 1.3rem;
  color: var(--navy-950);
  margin-bottom: 8px;
}

.dish-summary {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.dish-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.dish-badge-sub {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
}

.btn-dish-order {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background-color: var(--navy-100);
  color: var(--navy-900);
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all var(--trans-fast);
}

.luxury-dish-card:hover .btn-dish-order {
  background-color: var(--coral-500);
  color: #fff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   9. OFFERS SECTION (LUXURY BANNER - ZERO GAP)
   -------------------------------------------------------------------------- */
.section-offers {
  background: var(--surface-pearl);
}

.luxury-offer-card {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  box-shadow: 0 20px 50px rgba(6, 22, 40, 0.18);
  position: relative;
}

@media (max-width: 960px) {
  .luxury-offer-card {
    grid-template-columns: 1fr;
  }
}

.offer-content-side {
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}

@media (max-width: 960px) {
  .offer-content-side {
    padding: 36px 24px;
    text-align: center;
    align-items: center;
    order: 2;
  }
}

.offer-exclusive-badge {
  display: inline-block;
  background: rgba(249, 87, 2, 0.2);
  border: 1px solid var(--coral-500);
  color: var(--coral-400);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.offer-headline {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.3;
}

.offer-subtext {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  margin-bottom: 26px;
}

.offer-highlights {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

@media (max-width: 960px) {
  .offer-highlights {
    justify-content: center;
  }
}

.offer-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  color: #FFFFFF;
  backdrop-filter: blur(8px);
}

.offer-media-side {
  position: relative;
  width: 100%;
  min-height: 380px;
}

@media (max-width: 960px) {
  .offer-media-side {
    min-height: 260px;
    height: 260px;
    order: 1;
  }
}

.offer-img-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.offer-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-floating-chip {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(6, 22, 40, 0.88);
  backdrop-filter: blur(12px);
  color: var(--coral-400);
  border: 1px solid rgba(249, 87, 2, 0.4);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  z-index: 3;
}

/* --------------------------------------------------------------------------
   10. FAMILY BUNDLES SECTION
   -------------------------------------------------------------------------- */
.section-family {
  background-color: var(--surface-warm);
}

.family-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 960px) {
  .family-editorial-grid {
    grid-template-columns: 1fr;
  }
}

.family-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.family-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.family-floating-pill {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(6, 22, 40, 0.9);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.family-floating-pill strong {
  display: block;
  font-size: 0.95rem;
  color: var(--coral-400);
}

.family-floating-pill span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.family-perks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-block: 24px;
}

.perk-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.perk-icon {
  color: var(--coral-500);
  font-size: 1.2rem;
  line-height: 1.4;
}

.perk-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--navy-950);
  margin-bottom: 2px;
}

.perk-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. FRESHNESS SECTION (FULL-WIDTH PARALLAX BANNER)
   -------------------------------------------------------------------------- */
.section-freshness-full {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-block: 80px;
}

.freshness-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.freshness-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.freshness-dark-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(6, 22, 40, 0.82) 0%, rgba(6, 22, 40, 0.94) 100%);
}

.freshness-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.freshness-badge-pill {
  display: inline-block;
  background: rgba(249, 87, 2, 0.2);
  border: 1px solid var(--coral-500);
  color: var(--coral-400);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.freshness-grand-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #FFFFFF;
  margin-bottom: 18px;
}

.freshness-lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   12. REVIEWS / SOCIAL PROOF (GOOGLE VERIFIED)
   -------------------------------------------------------------------------- */
.section-reviews {
  background-color: var(--surface-pearl);
}

.reviews-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: 10px 24px;
}

.reviews-carousel-track::-webkit-scrollbar {
  height: 6px;
}
.reviews-carousel-track::-webkit-scrollbar-thumb {
  background-color: var(--border-light);
  border-radius: 4px;
}

.luxury-review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--trans-smooth);
}

.luxury-review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(11, 37, 69, 0.15);
}

.review-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.stars-badge {
  color: #FFB703;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.google-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-800);
  background: var(--navy-100);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.review-quote {
  font-size: 0.94rem;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.reviewer-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-name {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-950);
}

.reviewer-role {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   13. HOW TO ORDER (CONNECTED STEP FLOW)
   -------------------------------------------------------------------------- */
.section-steps {
  background-color: #FFFFFF;
}

.steps-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-flow-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border-light), var(--border-light) 6px, transparent 6px, transparent 12px);
  z-index: 1;
}

@media (max-width: 960px) {
  .steps-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-flow-grid::before { display: none; }
}

@media (max-width: 540px) {
  .steps-flow-grid {
    grid-template-columns: 1fr;
  }
}

.step-flow-card {
  background: var(--surface-pearl);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 22px 28px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all var(--trans-smooth);
}

.step-flow-card:hover {
  background: #FFFFFF;
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-500);
}

.step-num-bubble {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(249, 87, 2, 0.35);
}

.step-heading {
  font-size: 1.15rem;
  color: var(--navy-950);
  margin-bottom: 10px;
}

.step-paragraph {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   14. WHATSAPP VIP CONCIERGE
   -------------------------------------------------------------------------- */
.section-whatsapp-concierge {
  padding-block: 40px;
}

.whatsapp-concierge-card {
  background: linear-gradient(135deg, #EAFBF0 0%, #FFFFFF 100%);
  border: 2px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-xl);
  padding: 38px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .whatsapp-concierge-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

.concierge-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: var(--green-600);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

.concierge-title {
  font-size: 1.6rem;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.concierge-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
}

/* --------------------------------------------------------------------------
   15. LOCATION SECTION
   -------------------------------------------------------------------------- */
.section-location {
  background-color: var(--surface-pearl);
}

.location-composite-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

@media (max-width: 960px) {
  .location-composite-grid {
    grid-template-columns: 1fr;
  }
}

.location-meta-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.location-card-heading {
  font-size: 1.4rem;
  color: var(--navy-950);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.location-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.loc-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.loc-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.loc-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--navy-950);
  margin-bottom: 2px;
}

.loc-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hover-link {
  color: var(--navy-800);
  font-weight: 700;
}
.hover-link:hover {
  color: var(--coral-500);
}

.location-button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dual-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.location-map-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  border: 1px solid var(--border-light);
}

.map-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-artwork-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-floating-overlay {
  position: relative;
  z-index: 2;
  background: rgba(6, 22, 40, 0.92);
  backdrop-filter: blur(16px);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  color: #FFFFFF;
  max-width: 82%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.map-pin-pulse {
  font-size: 2rem;
  margin-bottom: 8px;
}

.map-floating-overlay h4 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.map-floating-overlay p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.btn-map-directions {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform var(--trans-fast);
}
.btn-map-directions:hover {
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   16. FAQ SECTION
   -------------------------------------------------------------------------- */
.section-faq {
  background-color: #FFFFFF;
}

.luxury-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card-item {
  background: var(--surface-pearl);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--trans-smooth);
}

.faq-card-item[open] {
  background: #FFFFFF;
  border-color: var(--coral-500);
  box-shadow: var(--shadow-sm);
}

.faq-card-question {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-950);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

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

.faq-arrow-icon {
  color: var(--navy-700);
  transition: transform var(--trans-fast);
  display: flex;
  align-items: center;
}

.faq-card-item[open] .faq-arrow-icon {
  transform: rotate(180deg);
  color: var(--coral-500);
}

.faq-card-answer {
  padding: 0 28px 22px;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* --------------------------------------------------------------------------
   17. FINAL CLIMAX CTA
   -------------------------------------------------------------------------- */
.section-final-climax {
  background: radial-gradient(circle at 50% 50%, #FFF4EE 0%, var(--surface-pearl) 100%);
  padding-block: 90px;
}

.climax-cta-box {
  text-align: center;
  max-width: 740px;
  margin-inline: auto;
}

.climax-tag-pill {
  display: inline-block;
  background: var(--coral-100);
  color: var(--coral-600);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.climax-title {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  color: var(--navy-950);
  margin-bottom: 16px;
}

.climax-subtitle {
  font-size: 1.18rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.8;
}

.climax-buttons-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   18. LUXURY FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--navy-950);
  color: #FFFFFF;
  padding-top: 72px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.2fr;
  gap: 48px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 960px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-logo {
  height: 58px;
  width: auto;
  margin-bottom: 18px;
}

.footer-brand-description {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 24px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans-fast);
}

.footer-social-icon:hover {
  background: var(--coral-500);
  border-color: var(--coral-500);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 2.5px;
  background-color: var(--coral-500);
  border-radius: var(--radius-pill);
  margin-top: 8px;
}

.footer-links-list, .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links-list a {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}
.footer-links-list a:hover {
  color: var(--coral-400);
  padding-right: 4px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-c-icon {
  font-size: 1.1rem;
}

.footer-c-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}
.footer-c-link:hover { color: var(--coral-400); }

.footer-bottom-bar {
  padding-block: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* --------------------------------------------------------------------------
   19. MOBILE STICKY BOTTOM CTA
   -------------------------------------------------------------------------- */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  padding: 10px 16px max(10px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border-light);
  box-shadow: 0 -8px 24px rgba(11, 37, 69, 0.1);
  z-index: 999;
}

@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 64px; }
}

.mobile-sticky-inner {
  display: flex;
  gap: 10px;
}

.mobile-sticky-inner .btn {
  flex: 1;
}

/* --------------------------------------------------------------------------
   20. SCROLL REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--trans-smooth), transform 700ms var(--trans-smooth);
  will-change: opacity, transform;
}

.scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
