/* ============================================================
   FAREEJ ESHHAFAN — PREMIUM RESTAURANT WEBSITE
   style.css — Complete Stylesheet
   ============================================================ */

/* ========================= FONTS ========================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ========================= DESIGN TOKENS ========================= */
:root {
  /* Brand Palette */
  --primary:        #CD4B29;
  --primary-light:  #E35D38;
  --primary-dark:   #A83B20;
  --primary-glow:   rgba(205, 75, 41, 0.22);
  --primary-soft:   rgba(205, 75, 41, 0.08);

  /* Backgrounds */
  --bg-base:      #0D0C0A;
  --bg-surface:   #131110;
  --bg-elevated:  #1A1815;

  /* Glass */
  --glass-bg:     rgba(18, 16, 13, 0.72);
  --glass-border: rgba(255, 255, 255, 0.09);
  --glass-blur:   blur(24px);

  /* Text */
  --text-100: #FFFFFF;
  --text-70:  rgba(255, 255, 255, 0.70);
  --text-45:  rgba(255, 255, 255, 0.45);
  --text-25:  rgba(255, 255, 255, 0.25);

  /* Card */
  --card-bg:      rgba(255, 255, 255, 0.045);
  --card-bg-h:    rgba(255, 255, 255, 0.08);
  --card-border:  rgba(255, 255, 255, 0.08);

  /* Stars */
  --star: #FFB800;

  /* Radii */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   22px;
  --r-xl:   30px;
  --r-pill: 999px;

  /* Motion */
  --ease:      cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-out:  cubic-bezier(0.0, 0.0, 0.2, 1);
  --t-std:     0.38s;
  --t-fast:    0.18s;

  /* Section rhythm */
  --section-v: 108px;
}

/* ========================= RESET ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-base);
  color: var(--text-100);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ========================= TYPOGRAPHY SYSTEM ========================= */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.85rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text-100);
  margin-bottom: 18px;
}

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

.section-body {
  font-size: 1.02rem;
  color: var(--text-70);
  line-height: 1.82;
  margin-bottom: 18px;
}

.section-head {
  margin-bottom: 8px;
}

.text-primary-custom { color: var(--primary) !important; }

/* ========================= GLOBAL BUTTONS ========================= */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--t-std) var(--ease),
              box-shadow var(--t-std) var(--ease),
              background var(--t-std) var(--ease);
  box-shadow: 0 4px 22px var(--primary-glow);
  white-space: nowrap;
}

.btn-primary-custom:hover,
.btn-primary-custom:focus-visible {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(205, 75, 41, 0.42);
  color: #fff;
  outline: none;
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 26px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--text-100);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-pill);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-std) var(--ease),
              border-color var(--t-std) var(--ease),
              transform var(--t-std) var(--ease);
  white-space: nowrap;
}

.btn-glass:hover,
.btn-glass:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text-100);
  transform: translateY(-2px);
  outline: none;
}

/* ========================= SECTION SPACING ========================= */
.section-padding {
  padding: var(--section-v) 0;
}

.section-dark {
  background-color: var(--bg-surface);
}

/* ========================= NAVBAR ========================= */
#mainNav {
  padding: 18px 0;
  background: transparent;
  transition: background var(--t-std) var(--ease),
              padding var(--t-std) var(--ease),
              border-color var(--t-std) var(--ease),
              box-shadow var(--t-std) var(--ease);
  border-bottom: 1px solid transparent;
  z-index: 1000;
}

#mainNav.scrolled {
  padding: 12px 0;
  background: rgba(13, 12, 10, 0.88);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom-color: var(--glass-border);
  box-shadow: 0 4px 36px rgba(0, 0, 0, 0.35);
}

.nav-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-brand-fallback {
  display: none;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-100);
}

.navbar-nav .nav-link {
  color: var(--text-70) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 7px 15px !important;
  letter-spacing: 0.01em;
  transition: color var(--t-fast);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 15px;
  right: 15px;
  height: 1.5px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-std) var(--ease);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-100) !important;
}

.navbar-nav .nav-link.active {
  color: var(--primary) !important;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.navbar-toggler {
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--r-sm) !important;
  padding: 6px 9px;
  background: transparent !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus { box-shadow: none !important; }

/* Mobile nav */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(13, 12, 10, 0.96);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    margin-top: 12px;
    padding: 16px 20px;
  }

  .nav-actions {
    margin-left: 0;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
  }

  .nav-actions .btn-primary-custom {
    width: 100%;
  }
}

/* ========================= HERO ========================= */
.hero-section {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  background-repeat: repeat;
  opacity: 0.045;
  pointer-events: none;
  z-index: 1;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-glow-right {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 660px;
  height: 780px;
  background: radial-gradient(ellipse at right center, rgba(205,75,41,0.22) 0%, transparent 65%);
}

.hero-glow-left {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 520px;
  background: radial-gradient(ellipse at left center, rgba(205,75,41,0.07) 0%, transparent 70%);
}

/* Scatter dots */
.h-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  animation: dotPulse 4s ease-in-out infinite;
}

.h-dot-a { width: 10px; height: 10px; background: var(--primary); top: 58%; left: 47%; opacity: 0.7; }
.h-dot-b { width: 7px;  height: 7px;  background: var(--star);    top: 66%; left: 41%; opacity: 0.6; animation-delay: 1s;   }
.h-dot-c { width: 5px;  height: 5px;  background: #22c55e;         top: 72%; left: 62%; opacity: 0.5; animation-delay: 0.5s; }
.h-dot-d { width: 8px;  height: 8px;  background: rgba(255,255,255,0.3); top: 52%; right: 34%; animation-delay: 2s; }

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(1);   }
  50%       { opacity: 0.9; transform: scale(1.6); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0)     rotate(0deg);  }
  33%       { transform: translateY(-14px) rotate(6deg);  }
  66%       { transform: translateY(7px)   rotate(-4deg); }
}

/* Layout */
.hero-content {
  position: relative;
  z-index: 5;
  padding-top: 90px;
  width: 100%;
}

.hero-inner-row {
  min-height: calc(100svh - 90px);
}

/* ── LEFT TEXT COLUMN ───────────────────────── */
.hero-text-col {
  padding-right: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 20px;
}

.hero-eyebrow i {
  color: var(--primary);
  font-size: 0.88rem;
}

/* Headline */
.hero-headline {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text-100);
  margin-bottom: 18px;
  opacity: 0;
  filter: blur(14px);
  transform: translateY(18px);
  transition:
    opacity   0.95s var(--ease-out),
    filter    0.95s var(--ease-out),
    transform 0.95s var(--ease-out);
  will-change: filter, opacity, transform;
}

.hero-headline.revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.hero-hl-accent {
  color: var(--primary);
  font-style: italic;
}

/* Load-in elements */
.hero-load-el {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity   0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

.hero-load-el.appeared {
  opacity: 1;
  transform: translateY(0);
}

/* Subtext */
.hero-subtext {
  font-size: 1rem;
  color: var(--text-70);
  line-height: 1.72;
  max-width: 430px;
  margin-bottom: 30px;
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn-hero-main {
  padding: 15px 36px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 6px 28px rgba(205,75,41,0.42);
}

.hero-see-menu {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--star);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  transition: opacity var(--t-fast), gap var(--t-fast);
}

.hero-see-menu:hover {
  opacity: 0.8;
  gap: 10px;
  color: var(--star);
}

/* Happy customers strip */
.hero-hc {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hc-avatars {
  display: flex;
  align-items: center;
}

.hc-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2.5px solid var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  margin-left: -10px;
}

.hc-av:first-child { margin-left: 0; }

.hc-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hc-info strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-100);
}

.hc-info span {
  font-size: 0.74rem;
  color: var(--text-45);
  font-weight: 500;
}

/* ── RIGHT IMAGE COLUMN ─────────────────────── */
.hero-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-plate-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Dark ambient circle behind the plate */
.hero-plate-area::before {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,12,6,0.80) 25%, rgba(205,75,41,0.05) 60%, transparent 78%);
  z-index: 0;
  pointer-events: none;
}

/* Circular food plate */
.hero-plate-ring {
  position: relative;
  z-index: 2;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(205,75,41,0.28);
  box-shadow:
    0 0 0 12px rgba(205,75,41,0.06),
    0 0 70px rgba(205,75,41,0.20),
    0 20px 70px rgba(0,0,0,0.60);
  flex-shrink: 0;
}

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

/* Floating "Our Happy Customers" glass card */
.hero-fc {
  position: absolute;
  top: 8%;
  right: 0;
  background: rgba(18,16,13,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  padding: 12px 16px;
  z-index: 10;
  min-width: 190px;
  animation: heroFloat 6s ease-in-out infinite;
}

.fc-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-70);
  margin: 0 0 8px 0;
  white-space: nowrap;
}

.fc-avs {
  display: flex;
  align-items: center;
}

.fc-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(18,16,13,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 800;
  color: #fff;
  margin-left: -7px;
  flex-shrink: 0;
}

.fc-av:first-child { margin-left: 0; }

.fc-av-count {
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 2px 8px;
  margin-left: 8px;
  white-space: nowrap;
}

/* Small floating food circles */
.hero-fp {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(205,75,41,0.3);
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  z-index: 4;
  pointer-events: none;
}

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

.fp-top {
  width: 72px;
  height: 72px;
  top: 2%;
  left: 4%;
  opacity: 0.72;
  animation: heroFloat 7s ease-in-out infinite;
}

.fp-bottom {
  width: 56px;
  height: 56px;
  bottom: 4%;
  left: 6%;
  opacity: 0.55;
  animation: heroFloat 9s ease-in-out infinite reverse;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

@media (max-width: 767.98px) {
  .scroll-cue {
    display: none;
  }
}

.scroll-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

.scroll-chevron {
  font-size: 0.6rem;
  color: var(--primary);
  opacity: 0.7;
  animation: scrollCue 2.2s ease-in-out infinite;
}

.scroll-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollCue 2.2s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes scrollCue {
  0%, 100% { opacity: 0.25; transform: scaleY(1);    }
  50%       { opacity: 0.9;  transform: scaleY(1.15); }
}

/* ========================= ABOUT ========================= */
.about-img-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.about-img-accent {
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1.5px solid rgba(205, 75, 41, 0.2);
  border-radius: calc(var(--r-xl) + 4px);
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--r-lg);
  padding: 22px 24px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(205, 75, 41, 0.45);
  min-width: 130px;
}

.about-badge-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}

.about-badge-lbl {
  display: block;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.4;
}

.about-float-card {
  position: absolute;
  top: 24px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 12px 18px;
  min-width: 190px;
}

.about-float-card i {
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-float-card strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-100);
  margin-bottom: 2px;
}

.about-float-card span {
  font-size: 0.74rem;
  color: var(--text-45);
}

/* About pillars */
.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  transition: background var(--t-std) var(--ease),
              border-color var(--t-std) var(--ease),
              transform var(--t-std) var(--ease);
}

.pillar-item:hover {
  background: var(--card-bg-h);
  border-color: rgba(205, 75, 41, 0.22);
  transform: translateX(4px);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-soft);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.pillar-text {
  display: flex;
  flex-direction: column;
}

.pillar-text strong {
  font-size: 0.92rem;
  color: var(--text-100);
  font-weight: 700;
  margin-bottom: 4px;
}

.pillar-text span {
  font-size: 0.82rem;
  color: var(--text-45);
  line-height: 1.5;
}

/* ========================= MENU CARDS ========================= */
.menu-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t-std) var(--ease),
    border-color var(--t-std) var(--ease),
    box-shadow var(--t-std) var(--ease);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-card:hover {
  transform: translateY(-7px);
  border-color: rgba(205, 75, 41, 0.32);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(205, 75, 41, 0.12);
}

.menu-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.07);
}

.menu-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 13px;
  border-radius: var(--r-pill);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-badge-alt {
  background: rgba(13, 12, 10, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.menu-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.dish-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-100);
  margin: 0;
  line-height: 1.25;
}

.dish-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.dish-desc {
  font-size: 0.855rem;
  color: var(--text-70);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.dish-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.845rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  transition: gap var(--t-fast), color var(--t-fast);
}

.dish-link:hover {
  color: var(--primary-light);
  gap: 11px;
}

/* ========================= MENU TABS ========================= */
.menu-tabs-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-top: 48px;
  padding-bottom: 4px;
}

.menu-tabs-wrap::-webkit-scrollbar { display: none; }

.menu-tabs {
  display: flex;
  gap: 8px;
  width: max-content;
  min-width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-tab {
  padding: 9px 20px;
  border-radius: var(--r-pill);
  border: 1px solid var(--card-border);
  background: transparent;
  color: var(--text-70);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-std) var(--ease),
              color var(--t-std) var(--ease),
              border-color var(--t-std) var(--ease);
}

.menu-tab:hover {
  border-color: var(--primary);
  color: var(--text-100);
}

.menu-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.menu-panels {
  margin-top: 36px;
}

.menu-panel {
  display: none;
}

.menu-panel.active {
  display: block;
}

.menu-panel-note {
  font-size: 0.8rem;
  color: var(--text-45);
  margin-bottom: 20px;
  font-style: italic;
}

.menu-item-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
  height: 100%;
  transition: border-color var(--t-std) var(--ease),
              transform var(--t-std) var(--ease);
}

.menu-item-card:hover {
  border-color: rgba(205, 75, 41, 0.35);
  transform: translateY(-3px);
}

.item-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-100);
  margin: 0 0 8px;
  line-height: 1.3;
}

.item-desc {
  font-size: 0.82rem;
  color: var(--text-70);
  line-height: 1.65;
  margin: 0;
}

/* ========================= ORDER ONLINE ========================= */
.platform-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 44px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition:
    transform var(--t-std) var(--ease),
    border-color var(--t-std) var(--ease),
    box-shadow var(--t-std) var(--ease);
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(205, 75, 41, 0.24);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.38);
}

.platform-logo-wrap {
  margin-bottom: 26px;
}

.platform-logo {
  width: 172px;
  height: 84px;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.noon-logo {
  background: #FECC02;
}

.talabat-logo {
  background: #FF6B00;
}

.platform-wordmark {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.noon-logo .platform-wordmark {
  color: #111;
}

.talabat-logo .platform-wordmark {
  color: #fff;
}

.platform-sub-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 3px;
}

.platform-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 10px;
}

.platform-desc {
  font-size: 0.875rem;
  color: var(--text-70);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 280px;
}

/* Direct order banner */
.direct-order-banner {
  margin-top: 52px;
}

.direct-order-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  background: #f5ede4;
  border: none;
  border-radius: var(--r-xl);
  padding: 30px 40px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.direct-order-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='512' height='512'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.62' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 512px 512px;
  background-repeat: repeat;
  opacity: 0.38;
  pointer-events: none;
  z-index: -1;
}

.direct-order-icon {
  width: 56px;
  height: 56px;
  background: rgba(205, 75, 41, 0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
}

.direct-order-text {
  flex: 1;
  min-width: 180px;
}

.direct-order-text strong {
  display: block;
  font-size: 1rem;
  color: #2a1506;
  font-weight: 700;
  margin-bottom: 4px;
}

.direct-order-text span {
  font-size: 0.875rem;
  color: #5c3a1e;
}

.direct-order-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.direct-order-inner .btn-glass {
  background: rgba(76, 38, 12, 0.08);
  border-color: rgba(76, 38, 12, 0.28);
  color: #2a1506;
}

.direct-order-inner .btn-glass:hover,
.direct-order-inner .btn-glass:focus-visible {
  background: #4C260C;
  border-color: #4C260C;
  color: #fff;
  transform: translateY(-2px);
}

/* ========================= TESTIMONIALS ========================= */
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t-std) var(--ease),
    border-color var(--t-std) var(--ease);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(205, 75, 41, 0.22);
}

.testimonial-featured {
  border-color: rgba(205, 75, 41, 0.3);
  background: rgba(205, 75, 41, 0.055);
}

.testimonial-quote {
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.6;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-70);
  line-height: 1.78;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}

.author-initials {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-100);
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-45);
  margin-top: 2px;
  display: block;
}

.review-stars {
  display: flex;
  gap: 3px;
}

.review-stars i {
  color: var(--star);
  font-size: 0.8rem;
}

/* Stat cards */
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    background var(--t-std) var(--ease),
    border-color var(--t-std) var(--ease),
    transform var(--t-std) var(--ease);
}

.stat-card:hover {
  background: var(--primary-soft);
  border-color: rgba(205, 75, 41, 0.3);
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-45);
  font-weight: 500;
  margin-top: 4px;
}

/* ========================= CONTACT ========================= */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  color: var(--text-100);
  transition:
    background var(--t-std) var(--ease),
    border-color var(--t-std) var(--ease),
    transform var(--t-std) var(--ease);
}

.contact-row:hover {
  background: var(--card-bg-h);
  border-color: rgba(205, 75, 41, 0.3);
  transform: translateX(5px);
  color: var(--text-100);
}

.contact-row-icon {
  width: 46px;
  height: 46px;
  background: var(--primary-soft);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-row-icon.whatsapp-ci {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.contact-row-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-row-label {
  font-size: 0.74rem;
  color: var(--text-45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}

.contact-row-info strong {
  font-size: 0.92rem;
  color: var(--text-100);
  font-weight: 600;
  line-height: 1.3;
}

.contact-row-arrow {
  color: var(--text-25);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.contact-hours-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-45);
  padding: 14px 20px;
  background: var(--primary-soft);
  border: 1px solid rgba(205, 75, 41, 0.15);
  border-radius: var(--r-md);
  margin-top: 8px;
}

.contact-hours-badge i {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-hours-badge strong {
  color: var(--text-70);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 44px 40px;
}

.form-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.field-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-70);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.field-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 13px 17px;
  color: var(--text-100);
  font-size: 0.93rem;
  font-family: inherit;
  line-height: 1.5;
  transition:
    border-color var(--t-fast),
    background var(--t-fast),
    box-shadow var(--t-fast);
  outline: none;
  resize: vertical;
}

.field-input::placeholder {
  color: var(--text-25);
}

.field-input:focus {
  border-color: var(--primary);
  background: rgba(205, 75, 41, 0.04);
  box-shadow: 0 0 0 3px rgba(205, 75, 41, 0.12);
}

.btn-submit {
  padding: 16px;
  font-size: 0.95rem;
}

/* ========================= BRANCHES ========================= */
.branches-section {
  padding: var(--section-v) 0;
}

.branches-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.branch-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: border-color var(--t-std) var(--ease),
              transform var(--t-std) var(--ease);
}

.branch-card:hover {
  border-color: rgba(205, 75, 41, 0.35);
  transform: translateY(-4px);
}

.branch-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.branch-body {
  flex: 1;
}

.branch-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-100);
  margin: 0 0 8px;
}

.branch-address {
  font-size: 0.875rem;
  color: var(--text-70);
  line-height: 1.6;
  margin: 0 0 20px;
}

.branch-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-70);
  text-decoration: none;
  margin-bottom: 16px;
}

.branch-phone:hover {
  color: var(--primary);
}

.branch-phone i {
  font-size: 0.75rem;
  color: var(--primary);
}

.branch-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.branch-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  padding: 7px 14px;
  width: fit-content;
  text-decoration: none;
  transition: background var(--t-std) var(--ease),
              color var(--t-std) var(--ease),
              transform var(--t-std) var(--ease);
}

.branch-link-map {
  background: var(--primary-soft);
  color: var(--primary);
}

.branch-link-map:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(3px);
}

.branch-link-ig {
  background: rgba(131, 58, 180, 0.1);
  color: #833ab4;
}

.branch-link-ig:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 767.98px) {
  .branches-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================= FOOTER ========================= */
.site-footer {
  background: #4C260C;
  border-top: none;
  padding: 80px 0 0;
  position: relative;
  isolation: isolate;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  background-repeat: repeat;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--card-border);
}

.footer-logo-wrap {
  margin-bottom: 20px;
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-name-fallback {
  display: none;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-100);
  letter-spacing: -0.02em;
}

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

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

.fsocial-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.80);
  font-size: 0.9rem;
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast),
    transform var(--t-fast);
}

.fsocial-link:hover {
  background: var(--primary-soft);
  border-color: rgba(205, 75, 41, 0.4);
  color: var(--primary);
  transform: translateY(-2px);
}

.fsocial-link.fsocial-wa:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.4);
  color: #25D366;
}

.footer-col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-left: 0;
}

.footer-link-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.footer-link-list a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 0;
  list-style: none;
  margin: 0;
}

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

.footer-contact-list i {
  color: var(--primary);
  margin-top: 2px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--t-fast);
  word-break: break-all;
}

.footer-contact-list a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.50);
  margin: 0;
}

/* ========================= WHATSAPP FLOAT ========================= */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.42);
  transition:
    transform var(--t-std) var(--ease),
    box-shadow var(--t-std) var(--ease);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.wa-tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  transform: translateY(-50%) translateX(8px);
  background: rgba(10, 10, 10, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--t-std) var(--ease),
    transform var(--t-std) var(--ease);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ========================= SCROLL ANIMATIONS ========================= */
[data-animate] {
  opacity: 0;
  transition:
    opacity 0.72s var(--ease-out),
    transform 0.72s var(--ease-out);
}

[data-animate="fade-up"] {
  transform: translateY(34px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].in-view {
  opacity: 1;
  transform: translate(0, 0);
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 1199.98px) {
  .hero-plate-ring {
    width: 420px;
    height: 420px;
  }

  .hero-plate-area::before {
    width: 480px;
    height: 480px;
  }
}

@media (max-width: 991.98px) {
  :root {
    --section-v: 80px;
  }

  .hero-content {
    padding-top: 86px;
  }

  .hero-inner-row {
    min-height: calc(100svh - 86px);
  }

  .hero-plate-ring {
    width: 360px;
    height: 360px;
  }

  .hero-plate-area::before {
    width: 410px;
    height: 410px;
  }

  .hero-text-col {
    padding-right: 0;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 5.5vw, 3.2rem);
  }

  .about-badge {
    right: 0;
  }

  .about-float-card {
    right: 0;
  }

  .about-main-img {
    height: 380px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

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

  .contact-form-card {
    padding: 32px 28px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --section-v: 64px;
  }

  .hero-section {
    height: 100svh;
    min-height: 620px;
    flex-direction: column;
    align-items: stretch;
    padding-top: 96px;
  }

  .hero-content {
    margin-top: auto;
    padding-top: 0;
    padding-bottom: 80px;
  }

  .hero-inner-row {
    min-height: auto;
    flex-direction: column-reverse;
  }

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

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
    margin-bottom: 12px;
  }

  .hero-subtext {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
  }

  .btn-hero-main {
    width: 100%;
    justify-content: center;
    padding: 13px 28px;
  }

  .hero-hc {
    justify-content: center;
  }

  .hero-img-col {
    margin-bottom: 16px;
  }

  .hero-plate-ring {
    width: 260px;
    height: 260px;
  }

  .hero-plate-area::before {
    width: 310px;
    height: 310px;
  }

  .hero-fc {
    top: 0;
    right: 0;
    min-width: 150px;
    padding: 8px 11px;
  }

  .fc-label {
    font-size: 0.65rem;
    margin-bottom: 5px;
  }

  .fc-av {
    width: 22px;
    height: 22px;
    font-size: 0.5rem;
  }

  .fc-av-count {
    font-size: 0.55rem;
    padding: 2px 6px;
  }

  .fp-top {
    width: 48px;
    height: 48px;
    top: 2%;
    left: 2%;
  }

  .fp-bottom {
    width: 38px;
    height: 38px;
    bottom: 3%;
    left: 3%;
  }

  .h-dot-a { width: 7px; height: 7px; }
  .h-dot-b { width: 5px; height: 5px; }
  .h-dot-c { width: 4px; height: 4px; }
  .h-dot-d { width: 6px; height: 6px; }

  .about-img-accent {
    display: none;
  }

  .about-badge {
    position: absolute;
    bottom: 16px;
    right: 12px;
    padding: 14px 16px;
    min-width: 110px;
  }

  .about-badge-num {
    font-size: 1.7rem;
  }

  .about-float-card {
    position: absolute;
    top: 16px;
    right: 12px;
    width: auto;
    min-width: unset;
    padding: 10px 14px;
    gap: 8px;
  }

  .about-float-card strong {
    font-size: 0.76rem;
  }

  .about-float-card span {
    font-size: 0.68rem;
  }

  .direct-order-inner {
    padding: 24px 20px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.35rem;
  }

  .contact-form-card {
    padding: 24px 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-headline {
    font-size: 1.75rem;
  }

  .hero-subtext {
    font-size: 0.88rem;
  }

  .hero-plate-ring {
    width: 220px;
    height: 220px;
  }

  .hero-plate-area::before {
    width: 268px;
    height: 268px;
  }

  .hero-fc {
    min-width: 130px;
    padding: 7px 10px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .platform-card {
    padding: 30px 22px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .stat-card {
    padding: 24px 14px;
  }

  .stat-number {
    font-size: 1.9rem;
  }

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

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

/* ========================= REDUCED MOTION ========================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-headline {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }

  .hero-load-el {
    opacity: 1;
    transform: none;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}
