/* ============================================================
   HAMASAT CAFETERIA — REDESIGNED LAYOUT
   Original Light Color Palette | Primary: #66ccff
   New Structure & Layout — Same Colors
   Fonts: Playfair Display SC + Karla
   ============================================================ */

/* =============================================
   CSS CUSTOM PROPERTIES — ENHANCED PALETTE
   ============================================= */
:root {
  /* === PRIMARY BRAND COLOR (PRESERVED) === */
  --primary: #66ccff;
  --primary-hover: #28baf5;
  --primary-deep: #0fa3e0;
  --primary-subtle: rgba(102, 204, 255, 0.08);
  --primary-light: rgba(102, 204, 255, 0.16);
  --primary-border: rgba(102, 204, 255, 0.35);

  /* === ENHANCED BACKGROUNDS — warm-cool balance === */
  --bg-base: #fdfeff;
  --bg-hero: linear-gradient(140deg, #ffffff 0%, #edf6ff 55%, #f5f0ff 100%);
  --bg-section: #f4f8fd;
  --bg-section-alt: #e8f3fc;
  --bg-card: #ffffff;
  --bg-nav: rgba(253, 254, 255, 0.96);

  /* === ENHANCED TEXT — deeper, richer hierarchy === */
  --text-primary: #111111;
  --text-secondary: #222222;
  --text-muted: #5e7a90;
  --text-light: #8ea8be;

  /* === ENHANCED ACCENTS === */
  --gold: #c9830a;           /* richer amber for ratings */
  --gold-bg: rgba(201, 131, 10, 0.08);
  --success: #12b76a;        /* vivid green */
  --success-hover: #0d9456;
  --error: #e63950;          /* richer red */
  --error-hover: #c2253a;
  --popular: #f04f6d;        /* vivid coral */

  /* === ENHANCED BORDERS === */
  --border: #dae4ef;
  --border-light: #ecf2f8;

  /* === ENHANCED TYPOGRAPHY === */
  --font-heading: "Cormorant SC", "Cormorant Garamond", Georgia, serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  /* === REFINED SHADOWS === */
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.07), 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.09), 0 12px 32px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12), 0 24px 60px rgba(0, 0, 0, 0.08);
  --shadow-cyan: 0 6px 24px rgba(102, 204, 255, 0.28);
  --shadow-cyan-hover: 0 12px 40px rgba(102, 204, 255, 0.4);

  /* === RADIUS === */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 50px;

  /* === TRANSITIONS === */
  --t: 0.28s ease;
  --t-slow: 0.5s ease;
}

/* =============================================
   GLOBAL RESET & BASE
   ============================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-body);
}

h1, h2, h3, h4, .logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.02em;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

::selection {
  background: var(--primary-light);
  color: var(--primary-deep);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-section); }
::-webkit-scrollbar-thumb { background: var(--primary-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* =============================================
   NAVIGATION — PROFESSIONAL REDESIGN
   Clean editorial style with refined details
   ============================================= */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 6%;
  height: 80px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Scrolled state — added via JS */
nav.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  border-bottom-color: var(--border);
}

/* Thin cyan accent — bottom left corner strip */
nav::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--primary);
  border-radius: 0 2px 0 0;
  transition: width 0.4s ease;
}

nav:hover::before {
  width: 120px;
}

/* ---- LOGO ---- */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.logo img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 50%;
  border: 1.5px solid var(--primary-border);
  padding: 2px;
  transition: border-color var(--t), transform var(--t);
}

.logo:hover img {
  border-color: var(--primary);
  transform: scale(1.04);
}

/* Vertical separator after logo */
.logo::after {
  content: '';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: var(--border);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-text {
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.06em;
  line-height: 1;
  font-family: var(--font-heading);
  transition: color var(--t);
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-family: var(--font-body);
  line-height: 1;
}

.logo:hover .logo-text { color: var(--primary-deep); }

/* ---- NAV LINKS ---- */
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 0 auto;       /* center between logo and actions */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links li { margin: 0; }

.nav-links a {
  display: block;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  position: relative;
  transition: color var(--t);
}

/* Animated underline */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 20px;
  right: 20px;
  height: 1.5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--text-primary);
}

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

.nav-links a.active {
  color: var(--text-primary);
  font-weight: 700;
}

/* ---- RIGHT ACTIONS ---- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language switcher — outlined ghost style */
.language-switcher {
  display: flex;
  align-items: center;
}

.language-switcher button {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--t);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-switcher button::before {
  content: '\f0ac';   /* fa-globe */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--primary);
}

.language-switcher button:hover {
  border-color: var(--primary);
  color: var(--primary-deep);
  background: var(--primary-subtle);
  transform: none;
}

/* CTA — "Order Now" button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary);
  color: var(--text-primary);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--font-body);
  transition: all var(--t);
  box-shadow: 0 4px 16px rgba(102, 204, 255, 0.3);
  white-space: nowrap;
}

.nav-cta i { font-size: 0.72rem; }

.nav-cta:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-cyan-hover);
  transform: translateY(-1px);
}

/* Hamburger toggle (tablet) */
.menu-toggle {
  display: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--text-primary);
  z-index: 1001;
  background: transparent;
  border: 1.5px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  transition: all var(--t);
}

.menu-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-subtle);
}

/* =============================================
   MOBILE MENU — NEW STRUCTURE
   Full left panel with accent line
   ============================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  width: 82%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-base);
  border-right: 3px solid var(--primary);
  box-shadow: 10px 0 60px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 36px 36px;
  overflow-y: auto;
  right: -100%;
  left: auto;
}

html[dir="rtl"] .mobile-menu {
  right: auto;
  left: -100%;
  border-right: none;
  border-left: 3px solid var(--primary);
}

.mobile-menu.active {
  right: 0;
}

html[dir="rtl"] .mobile-menu.active {
  right: auto;
  left: 0;
}

.mobile-nav-links {
  list-style: none;
  margin-bottom: 30px;
}

.mobile-nav-links li {
  margin: 14px 0;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
}

html[dir="rtl"] .mobile-nav-links li {
  transform: translateX(-20px);
}

.mobile-menu.active .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--t);
  gap: 10px;
}

.mobile-nav-links a:hover {
  color: var(--primary);
  padding-left: 8px;
}

html[dir="rtl"] .mobile-nav-links a:hover {
  padding-right: 8px;
  padding-left: 0;
}

.mobile-language-switcher {
  margin-top: auto;
  padding: 20px 0;
  text-align: center;
}

.mobile-language-switcher button {
  background: var(--primary);
  border: none;
  color: white;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--t);
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  font-family: var(--font-body);
  display: block;
  box-shadow: var(--shadow-cyan);
}

.mobile-language-switcher button:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan-hover);
}

/* =============================================
   OVERLAY
   ============================================= */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =============================================
   NAV RESPONSIVE
   ============================================= */

/* Tablet: hide nav links + CTA, show hamburger */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  nav { padding: 0 4%; }
}

/* Hide language on small tablet too */
@media (max-width: 768px) {
  .language-switcher.desktop-language { display: none; }
  .logo-text { font-size: 1.15rem; }
  .logo::after { display: none; }
}

@media (max-width: 480px) {
  .logo img { height: 38px; width: 38px; }
  .mobile-menu { width: 90%; }
}

/* =============================================
   RTL SUPPORT
   ============================================= */
html[dir="rtl"] { direction: rtl; }
html[dir="rtl"] .logo { flex-direction: row-reverse; }
html[dir="rtl"] .logo::after { right: auto; left: -22px; }
html[dir="rtl"] .logo-text-group { text-align: right; }
html[dir="rtl"] .nav-links { flex-direction: row-reverse; }
html[dir="rtl"] .nav-links a::after { transform-origin: right center; }
html[dir="rtl"] nav::before { left: auto; right: 0; border-radius: 2px 0 0 0; }
html[dir="rtl"] .nav-actions { flex-direction: row-reverse; }

/* =============================================
   HERO SECTION — NEW LAYOUT
   Full-width with centered content + floating
   circular image + decorative ring elements
   ============================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5%;
  padding-top: 80px;
  background:
    /* Left: pure white for text legibility → right: reveals dramatic restaurant */
    linear-gradient(
      100deg,
      rgba(253, 254, 255, 0.98) 0%,
      rgba(253, 254, 255, 0.96) 30%,
      rgba(237, 246, 255, 0.82) 55%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    url('/Unknown-12.jpg') center right / cover no-repeat;
  position: relative;
  overflow: hidden;
  gap: 40px;
}

/* Mobile: no background image — gradient only for performance */
@media (max-width: 767px) {
  .hero {
    background: var(--bg-hero);
  }
}

/* Large decorative circle behind image */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-subtle) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Dot pattern top-left */
.hero::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 3%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, var(--primary-border) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
  pointer-events: none;
}

.hero-content {
  flex: unset;
  max-width: 100%;
  padding: 3rem 0 3rem 2rem;
  position: relative;
  z-index: 1;
}

/* Small eyebrow label */
.hero-content::before {
  content: '— Hamasat';
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 18px;
  font-family: var(--font-body);
}

.hero-content h1 {
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-family: var(--font-heading);
}

.hero-content h1 span {
  color: var(--primary);
  font-style: italic;
  font-family: var(--font-display);
  position: relative;
}

/* Underline decoration on span */
.hero-content h1 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--primary-light), transparent);
  border-radius: 2px;
}

.hero-content p {
  font-size: 1.08rem;
  margin-bottom: 2.5rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 440px;
  font-weight: 400;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 2.2rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  border: 1px solid var(--primary-border);
  transition: all var(--t);
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-cyan);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--t);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-cyan);
}

.btn:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan-hover);
}

/* Hero image side — circular with ring */
.hero-image {
  flex: unset;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  position: relative;
  z-index: 1;
}

/* Outer ring */
.hero-image::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 2px dashed var(--primary-border);
  animation: spin-slow 25s linear infinite;
  pointer-events: none;
}

/* Inner ring */
.hero-image::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid var(--primary-light);
  animation: spin-slow 18s linear infinite reverse;
  pointer-events: none;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.burger-container {
  position: relative;
  width: 420px;
  height: 420px;
  transform-style: preserve-3d;
  animation: float 6s ease-in-out infinite;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-cyan);
  border: 4px solid white;
}

.burger-img {
  width: 100%;
  height: 100%;
  background: url("/Untitled\ Project-12.jpg") no-repeat center center;
  background-size: cover;
  transform: translateZ(30px);
  border-radius: 50%;
}

.burger-shadow {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  height: 24px;
  background: rgba(102, 204, 255, 0.2);
  border-radius: 50%;
  filter: blur(10px);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   DECORATIVE ELEMENTS
   ============================================= */
.decoration {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
  color: var(--primary);
}

.decoration-1 { top: 10%; left: 5%; font-size: 5rem; }
.decoration-2 { bottom: 20%; right: 10%; font-size: 4rem; }
.decoration-3 { top: 50%; left: 15%; font-size: 3rem; }
.decoration-4 { bottom: 15%; right: 20%; font-size: 3.5rem; }
.decoration-5 { top: 25%; right: 15%; font-size: 4rem; }

/* =============================================
   HERO RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .hero-content h1 { font-size: 3.2rem; }
  .burger-container { width: 360px; height: 360px; }
  .hero-image::before { width: 420px; height: 420px; }
  .hero-image::after { width: 320px; height: 320px; }
}

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 110px;
    gap: 50px;
  }
  .hero::after { display: none; }
  .hero-content { padding: 2rem; }
  .hero-content::before { text-align: center; }
  .hero-content h1 { font-size: 2.8rem; }
  .hero-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .social-icons { justify-content: center; }
  .btn { margin: 0 auto; }
  .burger-container { width: 320px; height: 320px; }
  .hero-image::before { width: 380px; height: 380px; }
  .hero-image::after { width: 290px; height: 290px; }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.3rem; }
  .burger-container { width: 280px; height: 280px; }
  .hero-image::before { width: 330px; height: 330px; }
  .hero-image::after { width: 250px; height: 250px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.9rem; }
  .hero-content p { font-size: 1rem; }
  .burger-container { width: 240px; height: 240px; }
  .hero-image::before { width: 280px; height: 280px; }
  .hero-image::after { width: 210px; height: 210px; }
}

/* =============================================
   SHARED SECTION TITLE — NEW STYLE
   Left-aligned with accent line
   ============================================= */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 18px;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.divider-line {
  height: 2px;
  width: 50px;
  background: var(--primary);
  border-radius: 2px;
}

.divider-icon {
  color: var(--primary);
  font-size: 1.15rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* =============================================
   ABOUT SECTION — FULL VIEWPORT SPLIT SCREEN
   Left: full-bleed image  |  Right: story text
   ============================================= */
.about-section {
  min-height: 80vh;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 52% 48%;
  padding: 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* ---- LEFT PANEL: IMAGE ---- */
.about-gallery {
  position: relative;
  overflow: hidden;
  max-height: 90vh;
}

/* Main photo fills the left column */
.gallery-main {
  position: absolute;
  inset: 0;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s ease;
}

.about-gallery:hover .gallery-main img {
  transform: scale(1.03);
}

/* Gradient vignette — darkens bottom for thumbnails readability */
.about-gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.08) 0%,
    transparent 30%,
    transparent 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Est. year badge — top-right corner of image */
.about-est-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  text-align: center;
}

.est-year {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.04em;
}

.est-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-top: 2px;
}

/* Thumbnail strip — overlaid at bottom of image */
.gallery-thumbnails {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.thumb {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.65;
  transition: all var(--t);
  border: 2px solid transparent;
  flex-shrink: 0;
}

.thumb:hover,
.thumb.active {
  opacity: 1;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 204, 255, 0.4);
}

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

/* ---- RIGHT PANEL: STORY TEXT ---- */
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 7% 80px 6%;
  background: #fff;
  overflow-y: auto;
  position: relative;
}

/* Subtle top padding to clear fixed nav */
.about-text::before { display: none; }

/* Eyebrow label */
.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.eyebrow-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-eyebrow span:last-child {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary-deep);
  font-family: var(--font-body);
}

/* Main heading — promoted to h2 */
.about-text h2 {
  font-size: 2.5rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  font-family: var(--font-heading);
  margin-bottom: 22px;
  font-weight: 700;
}

.about-text > p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

/* Features list */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-section);
  border: 1px solid var(--border-light);
  transition: all var(--t);
}

.feature:hover {
  border-color: var(--primary-border);
  background: var(--primary-subtle);
  transform: translateX(4px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  border: 1px solid var(--primary-border);
  transition: all var(--t);
}

.feature:hover .feature-icon {
  background: var(--primary);
  color: white;
}

.feature h4 {
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-weight: 700;
}

.feature p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Stats band */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 22px 0 0;
  border-top: 1px solid var(--border);
  gap: 0;
}

.about-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 12px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.about-stats .stat:last-child {
  border-right: none;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-deep);
  line-height: 1;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
}

/* ---- ABOUT RESPONSIVE ---- */
@media (max-width: 1100px) {
  .about-text h2 { font-size: 2.1rem; }
  .about-text { padding: 70px 5%; }
}

@media (max-width: 900px) {
  /* Stack: image on top, text below */
  .about-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-gallery {
    height: 50vw;
    min-height: 280px;
    max-height: 420px;
  }

  .gallery-main { position: relative; height: 100%; }
  .gallery-main img { position: absolute; inset: 0; }

  .about-text {
    padding: 56px 6%;
    overflow-y: visible;
  }

  .about-text h2 { font-size: 1.9rem; }
}

@media (max-width: 600px) {
  .about-gallery { height: 70vw; min-height: 260px; }
  .about-text { padding: 48px 5%; }
  .about-text h2 { font-size: 1.65rem; }
  .about-text > p { font-size: 0.95rem; }
  .gallery-thumbnails { bottom: 16px; gap: 8px; padding: 8px 12px; }
  .thumb { width: 52px; height: 52px; }
  .about-est-badge { top: 16px; right: 16px; padding: 10px 14px; }
  .est-year { font-size: 1.5rem; }
  .stat-number { font-size: 1.6rem; }
}

/* =============================================
   MENU SECTION — NEW LAYOUT
   Featured first item spans full width (2 cols)
   Rest in standard grid
   ============================================= */
.menu-section {
  padding: 110px 5%;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

/* Big faint text */
.menu-section::before {
  content: 'MENU';
  position: absolute;
  top: 40px;
  right: -2%;
  font-family: var(--font-heading);
  font-size: 14rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.04;
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Menu Items — 4 equal columns */
.menu-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Standard menu cards */
.menu-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--t);
  position: relative;
  animation: fadeIn 0.5s ease forwards;
}

.menu-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

.item-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #fff;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  transition: transform 0.6s ease;
}

@media (max-width: 900px) {
  .item-image img { object-fit: cover; }
}

.menu-item:hover .item-image img {
  transform: scale(1.03);
}

.item-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
}

.item-badge.new {
  background: var(--popular);
}

.item-content {
  padding: 22px;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.item-header h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-right: 12px;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
}

.item-price {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.item-content p {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

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

.item-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.item-rating span:last-child {
  color: var(--text-light);
  font-size: 0.84rem;
  margin-left: 4px;
  font-weight: 400;
}

/* View All */
.view-all-container {
  text-align: center;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--t);
  box-shadow: var(--shadow-cyan);
  border: 2px solid var(--primary);
}

.view-all-btn:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan-hover);
}

/* Animation delays */
.menu-item:nth-child(1) { animation-delay: 0.05s; }
.menu-item:nth-child(2) { animation-delay: 0.1s; }
.menu-item:nth-child(3) { animation-delay: 0.15s; }
.menu-item:nth-child(4) { animation-delay: 0.2s; }
.menu-item:nth-child(5) { animation-delay: 0.25s; }
.menu-item:nth-child(6) { animation-delay: 0.3s; }

/* Menu Responsive */
@media (max-width: 1100px) {
  .menu-items { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-section { padding: 80px 5%; }
  .menu-items { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .menu-items { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .view-all-btn { padding: 12px 28px; }
}

/* =============================================
   CONTACT SECTION — NEW LAYOUT
   Full-width tinted header + card grid below
   ============================================= */
.contact-section {
  padding: 0 0 100px;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

/* Tinted header band */
.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
  pointer-events: none;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 70px 5% 0;
}

/* Contact title overrides */
.contact-section .section-title {
  margin-bottom: 50px;
}

.contact-section .section-title h2 {
  font-size: 3rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.contact-section .section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.contact-section .title-divider {
  margin: 22px 0;
}

.contact-section .divider-line {
  height: 1px;
  width: 60px;
  background: var(--border);
  margin: 0 15px;
}

.contact-section .section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Contact cards grid */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}

/* Info card */
.contact-info {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 28px;
  font-family: var(--font-heading);
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  border: 1px solid var(--primary-border);
}

.info-details h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-weight: 700;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

.social-links h4 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 14px;
  font-weight: 700;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-subtle);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  border: 1px solid var(--primary-border);
  text-decoration: none;
  transition: all var(--t);
}

.social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-cyan);
}

/* Form card */
.contact-form {
  background: white;
  padding: 36px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 28px;
  font-family: var(--font-heading);
}

/* Form Groups */
.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: var(--bg-section);
  color: var(--text-primary);
  transition: all var(--t);
  outline: none;
  font-family: var(--font-body);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px var(--primary-subtle);
}

.form-group label {
  position: absolute;
  top: 14px;
  inset-inline-start: 16px;
  color: var(--text-light);
  pointer-events: none;
  transition: all var(--t);
  background: var(--bg-section);
  padding: 0 5px;
  font-size: 1rem;
  font-family: var(--font-body);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  inset-inline-start: 10px;
  font-size: 0.78rem;
  color: var(--primary-hover);
  font-weight: 700;
  background: white;
  letter-spacing: 0.04em;
}

.error-message {
  font-size: 0.84rem;
  color: var(--error);
  margin-top: 6px;
  display: none;
}

.form-error {
  color: var(--error-hover);
  font-size: 0.92rem;
  margin-top: 10px;
  background: #fdf2f2;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #fbc7c7;
}

.form-success {
  color: var(--success-hover);
  font-size: 0.92rem;
  margin-top: 10px;
  background: #f2fdf7;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid #c7fbc7;
}

/* Submit Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t);
  font-family: var(--font-body);
  box-shadow: var(--shadow-cyan);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan-hover);
}

/* Map */
.map-container {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.map-placeholder {
  color: var(--text-muted);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 15px;
  display: block;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
  border-radius: var(--radius-md);
}

.map-placeholder h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

/* Contact Responsive */
@media (max-width: 768px) {
  .contact-section { padding: 0 0 70px; }
  .contact-section .section-title h2 { font-size: 2.2rem; }
  .contact-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-info, .contact-form {
    text-align: center;
    padding: 28px 22px;
  }
  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .info-details, .social-links { text-align: center; }
  .social-icons { justify-content: center; }
  .form-group { text-align: center; }
  .btn-primary { width: 100%; justify-content: center; }
  .map-container { text-align: center; }
}

@media (min-width: 769px) {
  .contact-info, .contact-form { text-align: left; }
  .info-item { justify-content: flex-start; text-align: left; }
  .info-details, .social-links { text-align: left; }
  .social-icons { justify-content: flex-start; }
  .form-group { text-align: left; }
  .btn-primary { width: auto; }
}

/* RTL Support for Contact */
html[dir="rtl"] .form-error,
html[dir="rtl"] .form-success,
html[dir="rtl"] .btn-primary,
html[dir="rtl"] .info-item,
html[dir="rtl"] .form-group,
html[dir="rtl"] .social-links { text-align: right; }

html[dir="rtl"] .contact-info h3,
html[dir="rtl"] .contact-form h3 { text-align: right; }

@media (max-width: 768px) {
  html[dir="rtl"] .info-item,
  html[dir="rtl"] .form-group,
  html[dir="rtl"] .social-links,
  html[dir="rtl"] .contact-info h3,
  html[dir="rtl"] .contact-form h3 { text-align: center; }
}

/* =============================================
   FOOTER — NEW STRUCTURE
   Minimal top border + tighter 4-col grid
   ============================================= */
.footer-section {
  background: var(--text-primary);
  padding: 70px 5% 28px;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
}

/* Subtle cyan top accent */
.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--primary-hover), transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand { grid-column: 1 / 2; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  transition: opacity var(--t);
  text-decoration: none;
}

.footer-logo:hover { opacity: 0.85; }

.footer-logo img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(102, 204, 255, 0.3);
  padding: 2px;
}

.footer-logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-heading);
}

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

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

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all var(--t);
}

.social-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 204, 255, 0.3);
}

.footer-links { grid-column: 2 / 3; }
.footer-contact { grid-column: 3 / 4; }
.footer-newsletter { grid-column: 4 / 5; }

.footer-title {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
  padding-bottom: 14px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.footer-title:hover::after,
.footer-title.active::after { width: 50px; }

.footer-menu { list-style: none; }

.footer-menu li { margin-bottom: 10px; }

.footer-menu a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--t);
  position: relative;
  padding-inline-start: 14px;
  display: inline-block;
}

.footer-menu a::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all var(--t);
}

.footer-menu a:hover {
  color: var(--primary);
  padding-inline-start: 20px;
}

.footer-menu a:hover::before { opacity: 1; }

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.contact-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  background: rgba(102, 204, 255, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.9rem;
}

.contact-details { display: flex; flex-direction: column; gap: 2px; }

.contact-details span {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  font-size: 0.88rem;
}

.newsletter-description {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.newsletter-form { position: relative; }

.input-group {
  position: relative;
  display: flex;
}

.input-group input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  transition: all var(--t);
  outline: none;
  font-family: var(--font-body);
}

html[dir="rtl"] .input-group input {
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
}

.input-group input::placeholder { color: rgba(255, 255, 255, 0.3); }

.input-group input:focus {
  border-color: var(--primary-border);
  background: rgba(255, 255, 255, 0.1);
}

.input-group label {
  position: absolute;
  top: 13px;
  inset-inline-start: 16px;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  transition: all var(--t);
  background: transparent;
  padding: 0 4px;
  font-size: 0.9rem;
  font-family: var(--font-body);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label {
  top: -10px;
  inset-inline-start: 10px;
  font-size: 0.74rem;
  color: var(--primary);
  font-weight: 700;
  background: var(--text-primary);
  letter-spacing: 0.04em;
}

html[dir="rtl"] .input-group input:focus + label,
html[dir="rtl"] .input-group input:not(:placeholder-shown) + label {
  inset-inline-start: 10px;
}

.input-group button {
  padding: 13px 16px;
  background: var(--primary);
  color: var(--text-primary);
  border: none;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  cursor: pointer;
  transition: all var(--t);
  font-weight: 700;
  font-family: var(--font-body);
}

html[dir="rtl"] .input-group button {
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
}

.input-group button:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 16px rgba(102, 204, 255, 0.35);
}

/* Newsletter messages */
.form-loading,
.form-success,
.form-error {
  margin-top: 12px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.86rem;
  font-family: var(--font-body);
}

.form-loading {
  background: rgba(102, 204, 255, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(102, 204, 255, 0.2);
}

.form-success {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.25);
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all var(--t);
}

.form-error {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.25);
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all var(--t);
}

.form-success.show,
.form-error.show {
  opacity: 1;
  height: auto;
  margin: 10px 0;
}

.input-group input:valid { border-color: rgba(46, 204, 113, 0.3); }

html[dir="rtl"] .form-success,
html[dir="rtl"] .form-error { text-align: right; }

/* Footer Bottom */
.footer-bottom { margin-top: 50px; }

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 22px;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Footer RTL */
html[dir="rtl"] .footer-menu a {
  padding-inline-start: 0;
  padding-inline-end: 14px;
}

html[dir="rtl"] .footer-menu a::before {
  inset-inline-start: auto;
  inset-inline-end: 0;
}

html[dir="rtl"] .footer-menu a:hover { padding-inline-end: 20px; }
html[dir="rtl"] .footer-logo { flex-direction: row-reverse; }

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .footer-brand { grid-column: 1 / 3; }
  .footer-links { grid-column: 1 / 2; }
  .footer-contact { grid-column: 2 / 3; }
  .footer-newsletter { grid-column: 1 / 3; }
  .footer-title::after { left: 0; transform: none; }
  .footer-social { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .footer-section { padding: 55px 5% 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand, .footer-links, .footer-contact, .footer-newsletter { grid-column: 1; }
  .footer-logo { justify-content: center; }
  .footer-description, .newsletter-description { text-align: center; }
  .footer-social { justify-content: center; }
  .footer-title { text-align: center; }
  .footer-title::after { left: 50%; transform: translateX(-50%); }
  .footer-menu { text-align: center; }
  .footer-menu a { padding-inline-start: 0; }
  .footer-menu a::before { display: none; }
  .contact-item { justify-content: center; flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .footer-logo { flex-direction: column; gap: 10px; }
  .input-group { flex-direction: column; }
  .input-group input { border-radius: var(--radius-pill); margin-bottom: 10px; }
  .input-group button { border-radius: var(--radius-pill); padding: 12px; }
}

/* Footer animations */
.footer-brand, .footer-links, .footer-contact, .footer-newsletter {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.footer-links { animation-delay: 0.1s; }
.footer-contact { animation-delay: 0.2s; }
.footer-newsletter { animation-delay: 0.3s; }

/* ============================================================
   MOBILE EXPERIENCE — COMPREHENSIVE ENHANCEMENTS
   App-grade UX for phones (≤767px) and small tablets (≤992px)
   ============================================================ */

/* -----------------------------------------
   BOTTOM NAVIGATION BAR — phones only
   ----------------------------------------- */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  min-height: 60px;
  background: rgba(253, 254, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 2.5px solid var(--primary);
  box-shadow: 0 -4px 28px rgba(0, 0, 0, 0.1), 0 -1px 0 var(--border);
  z-index: 1000;
  padding: 0 4px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  flex-direction: row;
  align-items: stretch;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  flex: 1;
  padding: 10px 6px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 6px 2px;
  min-height: 44px;
  position: relative;
}

.bottom-nav-item i {
  font-size: 1.1rem;
  transition: transform 0.2s ease, color 0.2s ease;
  line-height: 1;
}

.bottom-nav-item span {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  transition: color 0.2s ease;
}

.bottom-nav-item.active {
  color: var(--primary-deep);
  background: var(--primary-subtle);
}

.bottom-nav-item.active::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
}

.bottom-nav-item.active i {
  color: var(--primary-deep);
  transform: translateY(-1px);
}

.bottom-nav-lang {
  font-weight: 700;
  font-size: 0.72rem;
  color: var(--primary-deep);
  background: var(--primary-subtle);
  border: 1.5px solid var(--primary-border);
  letter-spacing: 0.04em;
}

.bottom-nav-lang i {
  color: var(--primary-deep);
}

.bottom-nav-lang span {
  color: var(--primary-deep);
}

@media (max-width: 767px) {
  /* Show bottom nav, hide hamburger */
  .mobile-bottom-nav { display: flex; }
  .menu-toggle { display: none !important; }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)); }

  /* Thinner nav header on phones */
  nav {
    height: 58px;
    padding: 0 4%;
  }

  nav .logo-text { font-size: 1.18rem; }
  nav .logo img { height: 36px; width: 36px; }
}

/* -----------------------------------------
   HERO — MOBILE REFINEMENTS
   ----------------------------------------- */
@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    padding-top: 72px;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 30px;
    gap: 32px;
    align-content: center;
  }

  .hero-content {
    padding: 1rem 0;
    order: 2;
  }

  /* Reorder: image first on phones for visual punch */
  .hero-image {
    order: 1;
  }

  .hero-content::before {
    font-size: 0.72rem;
    margin-bottom: 12px;
  }

  .hero-content h1 {
    font-size: 2.1rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .hero-content p {
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 1.6rem;
  }

  .social-icons { margin-bottom: 1.4rem; }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 0.88rem;
    border-radius: var(--radius-pill);
  }

  .burger-container {
    width: 220px;
    height: 220px;
    margin: 0 auto;
  }

  .hero-image::before { width: 260px; height: 260px; }
  .hero-image::after { width: 196px; height: 196px; }

  /* Reduce decorative clutter on phones */
  .decoration-1, .decoration-3, .decoration-5 { display: none; }
  .decoration-2 { font-size: 2.5rem; bottom: 30%; right: 6%; }
  .decoration-4 { font-size: 2rem; bottom: 22%; right: 18%; }
}

/* Swipe hint + dots — hidden on desktop */
.swipe-hint,
.scroll-dots { display: none; }

/* -----------------------------------------
   MENU ITEMS — HORIZONTAL SCROLL CAROUSEL (mobile)
   ----------------------------------------- */
@media (max-width: 767px) {
  .menu-section { padding: 70px 0 70px; }

  .menu-container {
    max-width: 100%;
    padding: 0;
  }

  .menu-container .section-title,
  .menu-container .view-all-container {
    padding: 0 5%;
  }

  .menu-items {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 8px 5% 20px;
    max-width: 100%;
    margin: 0;
    /* fade-right edge to hint at more cards */
    -webkit-mask-image: linear-gradient(to right, black 0%, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, black 0%, black 80%, transparent 100%);
  }

  .menu-items::-webkit-scrollbar { display: none; }

  .menu-item {
    flex: 0 0 80vw;
    max-width: 310px;
    scroll-snap-align: start;
    transform: none !important;
  }

  /* Swipe hint label */
  .swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 4px 5% 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.03em;
    animation: swayHint 2s ease-in-out infinite;
  }

  .swipe-hint i {
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0.8;
  }

  @keyframes swayHint {
    0%, 100% { opacity: 0.6; transform: translateX(0); }
    40%       { opacity: 1;   transform: translateX(-4px); }
    60%       { opacity: 1;   transform: translateX(4px); }
  }

  /* Scroll dot indicators */
  .scroll-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin: 0 0 20px;
    padding: 0 5%;
  }

  .scroll-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .scroll-dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: var(--radius-pill);
  }

  .view-all-container { padding-top: 4px; }
  .view-all-btn { width: 100%; justify-content: center; }
}

/* -----------------------------------------
   SECTION TITLE — TIGHTER ON MOBILE
   ----------------------------------------- */
@media (max-width: 767px) {
  .section-title { margin-bottom: 36px; }
  .section-title h2 { font-size: 1.9rem; }
  .section-subtitle { font-size: 0.95rem; }
}

/* -----------------------------------------
   ABOUT — MOBILE REFINEMENTS (handled by
   responsive block inside the about section CSS)
   ----------------------------------------- */
@media (max-width: 767px) {
  /* Hide features list on mobile */
  .features-grid { display: none; }

  /* Stats row */
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .about-stats .stat { padding: 0 8px; }
  .stat-number { font-size: 1.5rem; }
  .stat-label { font-size: 0.65rem; letter-spacing: 1px; }
}

/* -----------------------------------------
   CONTACT — MOBILE SIMPLIFICATION
   ----------------------------------------- */
@media (max-width: 767px) {
  .contact-section { padding: 0 0 60px; }
  .contact-section .section-title h2 { font-size: 1.9rem; }
  .contact-section::before { height: 220px; }
  .contact-container { padding: 50px 4% 0; }

  .contact-info, .contact-form {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
  }

  .contact-info h3, .contact-form h3 { font-size: 1.2rem; margin-bottom: 20px; }

  .info-item { gap: 12px; }
  .info-icon { width: 38px; height: 38px; min-width: 38px; }

  .form-group input, .form-group textarea { font-size: 0.97rem; padding: 13px 15px; }

  .btn-primary {
    padding: 14px 24px;
    font-size: 0.85rem;
  }
}

/* -----------------------------------------
   FOOTER — COMPACT MOBILE
   ----------------------------------------- */
@media (max-width: 767px) {
  .footer-section { padding: 50px 5% 24px; }

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

  .footer-brand, .footer-links, .footer-contact, .footer-newsletter {
    grid-column: 1;
  }

  .footer-logo { justify-content: center; }
  .footer-logo-text { font-size: 1.2rem; }
  .footer-description { font-size: 0.88rem; text-align: center; }
  .footer-social { justify-content: center; }

  .footer-title { text-align: center; font-size: 0.72rem; }
  .footer-title::after { left: 50%; transform: translateX(-50%); }

  .footer-menu { text-align: center; }
  .footer-menu a { padding-inline-start: 0; font-size: 0.88rem; }
  .footer-menu a::before { display: none; }

  .contact-item { justify-content: center; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
  .contact-details { align-items: center; }

  .newsletter-description { font-size: 0.87rem; text-align: center; }

  .input-group { flex-direction: column; gap: 8px; }
  .input-group input { border-radius: var(--radius-pill); }
  .input-group button { border-radius: var(--radius-pill); padding: 13px; }
  html[dir="rtl"] .input-group input { border-radius: var(--radius-pill); }
  html[dir="rtl"] .input-group button { border-radius: var(--radius-pill); }

  .footer-bottom { margin-top: 36px; }
  .copyright { font-size: 0.8rem; }
}

/* -----------------------------------------
   SMOOTH MOMENTUM SCROLLING GLOBALLY
   ----------------------------------------- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (max-width: 767px) {
  * { -webkit-tap-highlight-color: rgba(102, 204, 255, 0.15); }
  a, button { touch-action: manipulation; }
}

/* -----------------------------------------
   RTL BOTTOM NAV SUPPORT
   ----------------------------------------- */
html[dir="rtl"] .mobile-bottom-nav {
  flex-direction: row-reverse;
}

html[dir="rtl"] .bottom-nav-item.active::before {
  left: auto;
  right: 50%;
  transform: translateX(50%);
}

/* -----------------------------------------
   REDUCED MOTION SUPPORT
   ----------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .burger-container { animation: none; }
  .hero-image::before, .hero-image::after { animation: none; }
  .menu-item, .feature, .thumb { transition: none; }
}
