:root {
  --bg: oklch(97% 0.006 95);
  --surface: oklch(100% 0 0);
  --surface-muted: oklch(95% 0.006 95);
  --fg: oklch(22% 0.012 260);
  --fg-inverse: oklch(100% 0 0);
  --muted: oklch(50% 0.015 260);
  --border: oklch(88% 0.008 90);
  --accent: oklch(35% 0.058 155);
  --accent-hover: oklch(28% 0.05 155);
  --accent-light: oklch(92% 0.02 155);
  --accent-secondary: oklch(55% 0.14 45);
  --accent-secondary-hover: oklch(48% 0.14 45);
  --warm-bg: oklch(93% 0.03 85);
  --success: oklch(42% 0.06 145);
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display-ar: 'Inter', 'Alyamama', sans-serif;
  --font-body-ar: 'Inter', 'Alyamama', sans-serif;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.15);
  --nav-h: 85px;
  --max-w: 1200px;
}

[lang="ar"] {
  --font-display: var(--font-display-ar);
  --font-body: var(--font-body-ar);
}

[lang="ar"] .form-input,[lang="ar"] .form-input--select option {
  font-family: var(--font-body-ar);
}

[lang="ar"] .contact-form-title,[lang="ar"] .review-label,[lang="ar"] .contact-detail-label,[lang="ar"] .contact-detail-value,[lang="ar"] .section-desc,[lang="ar"] .form-label {
  font-family: var(--font-body-ar);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
}

.section--dark {
  background: var(--accent);
  color: var(--fg-inverse);
}

.section--dark .section-label {
  color: rgba(255,255,255,0.65);
}

.section--dark .section-desc {
  color: rgba(255,255,255,0.75);
}

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

.section--muted {
  background: var(--surface-muted);
}

#why {
  background: linear-gradient(180deg, #123F28 0%, #0E2B1C 100%);
  position: relative;
  color: var(--fg-inverse);
}

#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/images/why-section-texture.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

#why .container {
  position: relative;
  z-index: 1;
}

#why .section-label {
  color: #D2AE4B;
  border-color: rgba(210, 174, 75, 0.4);
  background: rgba(210, 174, 75, 0.08);
}

#why .section-title {
  color: rgba(255,255,255,0.95);
}

#why .section-desc {
  color: rgba(255,255,255,0.65);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  border: 1.5px solid rgba(30, 75, 54, 0.3);
  background: rgba(30, 75, 54, 0.06);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
}

.section--dark .section-desc {
  color: rgba(255,255,255,0.75);
}

/* Navigation */.nav {
  display: flex;
  justify-content: center;
  padding: 5px 20px 10px;
  height: var(--nav-h);
  background: #123F28;
  transition: height .45s cubic-bezier(.4,0,.2,1), backdrop-filter .35s ease, background .35s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-sizing: border-box;
}

.nav--scrolled {
  background: rgba(18, 63, 40, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav--switching {
  height: 100vh;
  align-items: center;
  background: #123F28;
}

.nav--switching .nav-links,.nav--switching .nav-actions,.nav--switching .nav-mobile-left,.nav--switching .nav-hamburger,.nav--switching .nav-right .lang-toggle,.nav--switching ~ .nav-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

[dir="rtl"] .nav {
  direction: rtl;
}

/* === NAV THREE-COLUMN === */.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 36px;
  padding: 0 24px;
}

.nav-left,.nav-right {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 28px;
}

.nav-left {
  justify-content: center;
}

.nav-right {
  justify-content: center;
}

[dir="rtl"] .nav-left {
  justify-content: center;
}

[dir="rtl"] .nav-right {
  justify-content: center;
}

.nav-mobile-left {
  display: none;
}

.nav-logo {
  flex: none;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin: 0;
}

.nav-logo .logo-ar,.nav-logo .logo-en {
  display: block;
  height: 70px;
  width: auto;
  max-width: 200px;
}

.nav-logo .logo-en {
  display: block;
}

.nav-logo .logo-ar {
  display: none;
}

.footer-brand {
  display: flex;
  align-items: center;
  min-height: 48px;
}

.footer-brand .logo-ar,.footer-brand .logo-en {
  height: 56px;
  width: auto;
  display: flex;
  align-items: center;
}

.footer-brand--spacer {
  height: 12px;
}

.footer-brand .logo-en {
  display: inline-block;
}

.footer-brand .logo-ar {
  display: none;
}

[lang="ar"] .nav-logo .logo-en {
  display: none;
}

[lang="ar"] .nav-logo .logo-ar {
  display: block;
}

[lang="ar"] .footer-brand .logo-en {
  display: none;
}

[lang="ar"] .footer-brand .logo-ar {
  display: inline-block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--fg-inverse);
  border-bottom-color: rgba(255,255,255,0.3);
}

.nav-links a.active {
  border-bottom-color: #D2AE4B;
  color: var(--fg-inverse);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--fg-inverse);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
  letter-spacing: 0.05em;
  min-width: 48px;
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.lang-toggle-label {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.lang-toggle--fading .lang-toggle-label {
  opacity: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--fg-inverse);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Buttons (global) */.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--accent-secondary);
  color: var(--fg-inverse);
  border-color: var(--accent-secondary);
}

.btn--primary:hover {
  background: var(--accent-secondary-hover);
  border-color: var(--accent-secondary-hover);
  text-decoration: none;
}

.btn--outline-light {
  background: rgba(255,255,255,0.60);
  color: #123F28;
  border-color: rgba(255,255,255,0.6);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.75);
  color: #0E2B1C;
  border-color: rgba(255,255,255,0.8);
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline:hover {
  background: var(--accent-light);
  text-decoration: none;
}

.btn--accent {
  background: var(--accent-secondary);
  color: var(--fg-inverse);
  border-color: var(--accent-secondary);
}

.btn--accent:hover {
  background: var(--accent-secondary-hover);
  border-color: var(--accent-secondary-hover);
  text-decoration: none;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn--icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--fg-inverse);
  font-size: 20px;
  transition: background 0.2s ease;
}

.btn--icon:hover {
  background: rgba(255,255,255,0.2);
}

/* Hero */.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) 0 40px;
  background: #123F28;
}

@media (min-width: 1025px) {
  .hero { min-height: calc(100vh + 200px);
  };
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(transparent, rgba(0,0,0,0.35));
  pointer-events: none;
  z-index: 2;
}

.hero-arc {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: clamp(14px, 2.4vw, 28px);
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 3;
  pointer-events: none;
  line-height: 0;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 80px var(--space-md) 80px;
  width: 100%;
}

@media (min-width: 1367px) {
  .hero-content {    padding-top: 40px;
  };
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(6px);
}

.hero-badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent-secondary);
}

.hero-label-gap {
  height: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg-inverse);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-title__gold {
  color: #D2AE4B;
}

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

.highlight-orange {
  color: #B2511E;
  font-weight: 700;
}

.highlight-gold {
  color: #C29B30;
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  text-shadow: 0 1px 12px rgba(0,0,0,0.25);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}

.chip-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* About */.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--accent-light);
  display: grid;
  place-items: center;
}

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

.about-visual-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-xl);
}

.about-stat {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.about-stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.about-gold-row {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.about-gold-icon {
  width: clamp(64px, 8vw, 96px);
  height: auto;
}

#about {
  position: relative;
  overflow: hidden;
}

.about-leaf-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.about-leaf-bg img {
  width: 85%;
  height: auto;
  object-fit: contain;
  transform: translateX(-20%) scale(1.2);
  transform-origin: top left;
}

.about-copy .about-desc {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.about-copy p {
  margin-bottom: var(--space-md);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* Why Choose */.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.why-card {
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow-y: auto;
}

.why-card:nth-child(odd) {
  background: rgba(210, 174, 75, 0.06);
  border: 1px solid rgba(210, 174, 75, 0.3);
}

.why-card:nth-child(even) {
  background: rgba(178, 81, 30, 0.06);
  border: 1px solid rgba(178, 81, 30, 0.3);
}

.why-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transform: translateY(-4px);
  transition: box-shadow 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
}

.why-card:nth-child(odd):hover {
  background: rgba(210, 174, 75, 0.12);
  border-color: #D2AE4B;
}

.why-card:nth-child(even):hover {
  background: rgba(178, 81, 30, 0.12);
  border-color: #B2511E;
}

.why-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card:nth-child(odd) .why-card-icon svg {
  color: #D2AE4B;
}

.why-card:nth-child(even) .why-card-icon svg {
  color: #B2511E;
}

.why-card-icon svg {
  width: 24px;
  height: 24px;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: rgba(255,255,255,0.92);
}

.why-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* Products */.products-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.products-header .section-desc {
  margin: 0 auto;
}

.prod-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.prod-tab {
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.prod-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.prod-tab--active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--fg-inverse);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.prod-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.prod-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.prod-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--accent-light);
}

.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.prod-card:hover .prod-card-img img {
  transform: scale(1.08);
}

.prod-card-body {
  padding: 20px;
}

.prod-card-icon svg {
  width: 56px;
  height: 56px;
  color: var(--accent);
  opacity: 0.7;
}

.prod-card-body {
  padding: var(--space-md);
}

.prod-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.prod-card-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.prod-panel {
  display: none;
}

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

/* Service Areas */.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.area-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.area-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(0,0,0,0.15);
}

.area-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.area-card-body {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.area-card-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto;
}

.area-card--riyadh .area-card-body {
  background: linear-gradient(180deg, #4C578F 0%, #3A4470 100%);
}

.area-card--riyadh .area-card-body h3,.area-card--riyadh .area-card-body p {
  color: var(--fg-inverse);
}

.area-card--jeddah .area-card-body {
  background: linear-gradient(180deg, #E4DECE 0%, #D6CFBD 100%);
}

.area-card--jeddah .area-card-body h3 {
  color: var(--fg);
}

.area-card--jeddah .area-card-body p {
  color: var(--muted);
}

.area-card--dammam .area-card-body {
  background: linear-gradient(180deg, #516F79 0%, #3F5A63 100%);
}

.area-card--dammam .area-card-body h3,.area-card--dammam .area-card-body p {
  color: var(--fg-inverse);
}

/* Sourcing & Quality */#quality {
  position: relative;
  overflow: hidden;
}

.quality-leaf-bg {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  height: 80%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.12;
}

.quality-leaf-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:    "sectlabel sectlabel"    "header desc"    "checklist image";
  row-gap: 32px;
  column-gap: var(--space-2xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.quality-sectlabel {
  grid-area: sectlabel;
}

.quality-sectlabel .section-label {
  margin-bottom: 0;
}

.quality-header-col {
  grid-area: header;
}

.quality-desc-col {
  grid-area: desc;
}

.quality-list {
  grid-area: checklist;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-top: 0;
}

.quality-visual {
  grid-area: image;
}

.quality-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  position: relative;
  padding-bottom: var(--space-md);
}

.quality-item:last-child {
  padding-bottom: 0;
}

/* Quality stepper circle. outlined, fills on scroll */.quality-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  z-index: 2;
  position: relative;
  transition: background 0.5s ease, border-color 0.5s ease, color 0.5s ease, box-shadow 0.5s ease;
}

.quality-item.revealed .quality-check {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(216, 100, 58, 0.15);
}

/* Vertical connecting line between circles */.quality-line {
  position: absolute;
  left: 17px;
  top: 38px;
  width: 2px;
  height: calc(100% - 38px);
  z-index: 0;
  background: var(--border);
  overflow: hidden;
}

[dir="rtl"] .quality-line {
  left: auto;
  right: 17px;
}

.quality-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent);
  transition: height 0.5s ease;
}

.quality-item.revealed .quality-line-fill {
  height: 100%;
}

/* Staggered delays for quality items */.quality-item:nth-child(1) .quality-check {
  transition-delay: 0s;
}

.quality-item:nth-child(2) .quality-check {
  transition-delay: 0.2s;
}

.quality-item:nth-child(3) .quality-check {
  transition-delay: 0.4s;
}

.quality-item:nth-child(4) .quality-check {
  transition-delay: 0.6s;
}

.quality-item:nth-child(1) .quality-line-fill {
  transition-delay: 0.1s;
}

.quality-item:nth-child(2) .quality-line-fill {
  transition-delay: 0.3s;
}

.quality-item:nth-child(3) .quality-line-fill {
  transition-delay: 0.5s;
}

.quality-item:nth-child(4) .quality-line-fill {
  transition-delay: 0.7s;
}

.quality-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
  padding-top: 6px;
}

.quality-item p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

[dir="rtl"] .quality-list {
  direction: rtl;
}

.quality-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
}

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

/* How It Works */.how-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  position: relative;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

/* 3 on top row, 2 centered on bottom row */.how-step:nth-child(1) {
  grid-column: 1 / 3;
}

.how-step:nth-child(2) {
  grid-column: 3 / 5;
}

.how-step:nth-child(3) {
  grid-column: 5 / 7;
}

.how-step:nth-child(4) {
  grid-column: 2 / 4;
}

.how-step:nth-child(5) {
  grid-column: 4 / 6;
}

.how-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(28px);
  transition:    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),    box-shadow 0.4s ease,    border-color 0.4s ease;
  overflow: visible;
}

.how-step.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Gold fill wash. bottom to top on scroll */.how-step::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg,    rgba(210, 174, 75, 0.10) 0%,    rgba(210, 174, 75, 0) 60%  );
  transform: scaleY(0);
  transform-origin: center bottom;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-step.revealed::before {
  transform: scaleY(1);
}

.how-step:hover {
  box-shadow: 0 8px 28px rgba(18, 63, 40, 0.08);
  transform: translateY(-6px);
  border-color: rgba(210, 174, 75, 0.3);
}

/* Left gold accent on hover */.how-step::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: #D2AE4B;
  border-radius: 0 2px 2px 0;
  transform: translateY(-50%);
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 2;
}

.how-step:hover::after {
  height: 60%;
}

/* Ensure content sits above the fill overlay */.how-step > * {
  position: relative;
  z-index: 1;
}

/* Step badge (icon only) */.step-badge {
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step-badge {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(210, 174, 75, 0.06);
  border: 1px solid rgba(210, 174, 75, 0.12);
  transition:    background 0.4s ease,    border-color 0.4s ease,    transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0.85);
}

.how-step.revealed .step-badge {
  transform: scale(1);
  background: rgba(210, 174, 75, 0.10);
  border-color: rgba(210, 174, 75, 0.25);
}

.how-step:hover .step-badge {
  transform: scale(1.06);
  background: rgba(210, 174, 75, 0.15);
  border-color: rgba(210, 174, 75, 0.35);
}

.step-badge svg {
  display: block;
  width: 36px;
  height: 36px;
}

@media (max-width: 768px) {
  .step-badge { width: 44px;
  height: 44px;
  }  .step-badge svg { width: 30px;
  height: 30px;
  };
}

.how-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  max-width: 200px;
  opacity: 0;
  transform: translateY(10px);
  transition:    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-step.revealed h4 {
  opacity: 1;
  transform: translateY(0);
}

.how-step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 200px;
  opacity: 0;
  transform: translateY(8px);
  transition:    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-step.revealed p {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays per step. 4 layers *//* Layer 1: Card entrance */.how-step:nth-child(1) {
  transition-delay: 0s;
}

.how-step:nth-child(2) {
  transition-delay: 0.1s;
}

.how-step:nth-child(3) {
  transition-delay: 0.2s;
}

.how-step:nth-child(4) {
  transition-delay: 0.3s;
}

.how-step:nth-child(5) {
  transition-delay: 0.4s;
}

/* Layer 2: Badge scale + background */.how-step:nth-child(1) .step-badge {
  transition-delay: 0.08s;
}

.how-step:nth-child(2) .step-badge {
  transition-delay: 0.18s;
}

.how-step:nth-child(3) .step-badge {
  transition-delay: 0.28s;
}

.how-step:nth-child(4) .step-badge {
  transition-delay: 0.38s;
}

.how-step:nth-child(5) .step-badge {
  transition-delay: 0.48s;
}

/* Layer 3: Box fill */.how-step:nth-child(1)::before {
  transition-delay: 0.2s;
}

.how-step:nth-child(2)::before {
  transition-delay: 0.3s;
}

.how-step:nth-child(3)::before {
  transition-delay: 0.4s;
}

.how-step:nth-child(4)::before {
  transition-delay: 0.5s;
}

.how-step:nth-child(5)::before {
  transition-delay: 0.6s;
}

/* Layer 4: Heading + description */.how-step:nth-child(1) h4 {
  transition-delay: 0.35s;
}

.how-step:nth-child(2) h4 {
  transition-delay: 0.45s;
}

.how-step:nth-child(3) h4 {
  transition-delay: 0.55s;
}

.how-step:nth-child(4) h4 {
  transition-delay: 0.65s;
}

.how-step:nth-child(5) h4 {
  transition-delay: 0.75s;
}

.how-step:nth-child(1) p {
  transition-delay: 0.45s;
}

.how-step:nth-child(2) p {
  transition-delay: 0.55s;
}

.how-step:nth-child(3) p {
  transition-delay: 0.65s;
}

.how-step:nth-child(4) p {
  transition-delay: 0.75s;
}

.how-step:nth-child(5) p {
  transition-delay: 0.85s;
}

@media (max-width: 768px) {
  .how-step {    aspect-ratio: auto;
  flex-direction: column;
  align-items: center;
  padding: var(--space-lg) var(--space-md);
  opacity: 1;
  transform: none;
  transition: none;
  }  .how-step.revealed {    opacity: 1;
  transform: none;
  }  .step-badge svg {    width: 38px;
  height: 38px;
  }  .how-step h4 {    font-size: 16px;
  opacity: 1;
  transform: none;
  transition: none;
  }  .how-step.revealed h4 {    opacity: 1;
  transform: none;
  }  .how-step p {    font-size: 13px;
  max-width: 320px;
  opacity: 1;
  transform: none;
  transition: none;
  }  .how-step.revealed p {    opacity: 1;
  transform: none;
  };
}

/* Contact */#contact {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,63,40,0.95) 0%, rgba(14,43,28,0.95) 100%);
  z-index: 0;
}

#contact .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-left__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

#contact .section-label {
  color: #D2AE4B;
  border-color: rgba(210, 174, 75, 0.4);
  background: rgba(210, 174, 75, 0.08);
  padding: 6px 12px;
}

#contact .section-title,#contact .section-desc,#contact .contact-detail-value,#contact .contact-detail-label {
  color: #fff;
}

#contact .contact-detail-icon {
  background: var(--accent);
  color: #fff;
}

.contact-right {
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(210, 174, 75, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--accent-secondary);
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.contact-detail-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-detail-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}

.contact-form-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

.contact-right .btn--accent {
  background: var(--accent-secondary);
  border-color: var(--accent-secondary);
}

.contact-right .btn--accent:hover {
  background: var(--accent-secondary-hover);
  border-color: var(--accent-secondary-hover);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--fg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.form-label-required::after {
  content: ' *';
  color: #DC2626;
}

/* Custom select. branded arrow */.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  background: var(--surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30,75,54,0.12);
}

.form-input::placeholder {
  color: #9CA3AF;
}

.form-input--select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23123F28' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
  padding-right: 36px;
  cursor: pointer;
}

.form-input--select option {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg);
  background: var(--surface);
}

.form-input--select::-ms-expand {
  display: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.progress-bar {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  width: 33.33%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.form-step {
  display: none;
}

.form-step--active {
  display: block;
}

.step-indicator {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  line-height: 1;
}

.form-result {
  display: none;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.form-result-spinner {
  padding: var(--space-lg) 0;
}

.form-result-spinner p {
  margin-top: var(--space-md);
  color: var(--text-muted);
  font-family: var(--font-body);
}

.spinner {
  width: 36px;
  height: 36px;
  margin: 0 auto;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg);
  };
}

.form-result-body {
  display: none;
  padding: var(--space-lg) 0;
}

.form-result-body h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  margin: var(--space-md) 0 var(--space-sm);
}

.form-result-body p {
  color: var(--text-muted);
  font-family: var(--font-body);
  max-width: 400px;
  margin: 0 auto var(--space-lg);
  line-height: 1.6;
}

.form-result-body .btn {
  margin: 0 var(--space-xs);
}

.result-icon {
  width: 48px;
  height: 48px;
}

.result-icon--success {
  color: var(--accent);
}

.result-icon--error {
  color: #e74c3c;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.form-nav .btn {
  flex: 1;
  justify-content: center;
}

.review-summary {
  background: var(--surface-muted);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.review-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.review-row:last-child {
  border-bottom: none;
}

.review-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  text-align: right;
  max-width: 60%;
  word-break: break-word;
}

.form-submit {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: var(--fg-inverse);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-submit:hover {
  background: var(--accent-hover);
}

/* Other city custom select */.other-city-wrapper {
  position: relative;
  margin-bottom: var(--space-md);
}

.custom-select {
  position: relative;
}

.custom-select-input-wrap {
  position: relative;
}

.custom-select-input {
  padding-right: 36px;
}

.custom-select-chevron {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--fg-muted);
  z-index: 1;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.custom-select-chevron:hover {
  color: var(--accent);
}

.custom-select-chevron:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.custom-select-arrow {
  display: block;
  transition: transform 0.2s ease;
}

.custom-select-dropdown--open ~ .custom-select-chevron .custom-select-arrow,.custom-select-chevron[aria-expanded="true"] .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-md);
  max-height: min(280px, 50vh);
  overflow-y: auto;
  box-shadow: var(--shadow-md);
  display: none;
}

.custom-select-dropdown--open {
  display: block;
}

.custom-select-option {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  color: var(--fg);
  transition: background 0.15s ease, color 0.15s ease;
  border-bottom: 1px solid var(--border);
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover,.custom-select-option--highlighted {
  background: var(--accent);
  color: var(--fg-inverse);
}

/* Country code picker */.phone-input-wrapper {
  display: flex;
  gap: 0;
}

.country-code-picker {
  position: relative;
  flex-shrink: 0;
}

.cc-input-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 0 0 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  background: var(--surface);
  height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cc-input-wrap:focus-within {
  border-color: var(--accent);
}

.cc-flag {
  display: block;
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.cc-input {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  width: 66px;
  padding: 10px 0;
}

.cc-chevron {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 8px 8px 2px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.cc-chevron:hover {
  color: var(--accent);
}

.cc-chevron:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: 2px;
}

.cc-arrow {
  display: block;
  transition: transform 0.2s ease;
}

.cc-dropdown--open ~ .cc-chevron .cc-arrow,.cc-chevron[aria-expanded="true"] .cc-arrow {
  transform: rotate(180deg);
}

.cc-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  background: var(--surface);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-md);
  max-height: 240px;
  overflow-y: auto;
  box-shadow: var(--shadow-md);
  width: 260px;
  display: none;
}

.cc-dropdown--open {
  display: block;
}

.cc-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--fg);
  transition: background 0.15s ease, color 0.15s ease;
  border-bottom: 1px solid var(--border);
}

.cc-option:last-child {
  border-bottom: none;
}

.cc-option:hover,.cc-option--highlighted {
  background: var(--accent);
  color: var(--fg-inverse);
}

.cc-option-name {
  flex: 1;
}

.cc-option-code {
  color: var(--fg-muted);
  font-size: 13px;
}

.phone-input {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  border-left: none;
  flex: 1;
  min-width: 0;
}

.phone-input-wrapper:focus-within {
  box-shadow: 0 0 0 3px rgba(30,75,54,0.12);
  border-radius: var(--radius-md);
}

.phone-input-wrapper:focus-within .cc-input-wrap,.phone-input-wrapper:focus-within .phone-input {
  border-color: var(--accent);
}

[dir="rtl"] .custom-select-input {
  padding-right: 14px;
  padding-left: 36px;
}

[dir="rtl"] .custom-select-chevron {
  right: auto;
  left: 8px;
}

[dir="rtl"] .form-input--select {
  background-position: left 12px center;
  padding-right: 14px;
  padding-left: 36px;
}

/* Inline form validation */.field-error {
  display: none;
  color: #DC2626;
  font-size: 12px;
  line-height: 1.3;
  margin-top: 2px;
}

.field-error--visible {
  display: block;
}

.form-input--error {
  border-color: #DC2626 !important;
}

/* FAQ */.faq-list {
  max-width: 800px;
  margin: var(--space-lg) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item--open {
  border-color: var(--accent-secondary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  text-align: left;
  gap: var(--space-sm);
  transition: color 0.2s ease;
}

[dir="rtl"] .faq-question {
  text-align: right;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--muted);
}

.faq-item--open .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-secondary);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 var(--space-md);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),              opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),              padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item--open .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 var(--space-md) var(--space-md);
}

/* Footer */.footer {
  background: var(--accent);
  color: var(--fg-inverse);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.75;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid;
  place-items: center;
  color: var(--fg-inverse);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--fg-inverse);
  opacity: 0.8;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: 13px;
  opacity: 0.5;
}

/* Mobile Nav Overlay */.nav-overlay {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 80vw);
  background: var(--accent);
  z-index: 999;
  padding: var(--space-2xl) var(--space-md);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[dir="rtl"] .nav-overlay {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

.nav-overlay--open {
  transform: translateX(0);
}

.nav-overlay a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--fg-inverse);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.nav-overlay a:hover {
  opacity: 0.7;
}

/* Responsive */@media (max-width: 1024px) {
  .about-grid {    grid-template-columns: 1fr;
  }  .about-visual,  .about-copy {    text-align: center;
  }  .about-copy {    max-width: 600px;
  margin: 0 auto;
  }  .about-leaf-bg img {    width: 100%;
  transform: translateX(-15%) scale(1.6);
  }  .why-grid {    grid-template-columns: repeat(2, 1fr);
  }  .prod-grid {    grid-template-columns: repeat(2, 1fr);
  }  .how-grid {    grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  }  .areas-grid {    grid-template-columns: repeat(2, 1fr);
  }  .quality-grid {    grid-template-columns: 1fr;
  grid-template-areas:      "sectlabel"      "header"      "desc"      "checklist"      "image";
  row-gap: 24px;
  }  .quality-grid .section-desc {    display: none;
  }  .quality-sectlabel .section-label {    margin-bottom: var(--space-sm);
  }  .quality-leaf-bg {    width: 50%;
  opacity: 0.08;
  }  .contact-grid {    grid-template-columns: 1fr;
  gap: var(--space-xl);
  }  .contact-left .section-label,  .contact-left .section-title,  .contact-left .section-desc {    text-align: center;
  }  .contact-left .contact-detail-item {    justify-content: flex-start;
  }  #contact .contact-grid { gap: var(--space-xl);
  }  .footer-grid {    grid-template-columns: 1fr 1fr;
  }  .nav-links {    display: none;
  }  .nav-hamburger {    display: flex;
  }  .nav-left {    flex: 0;
  }  .nav-mobile-left {    display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
  margin-left: -15px;
  }  .nav-right {    flex: 1;
  justify-content: flex-end;
  }  .nav-right .lang-toggle {    display: none;
  }  .nav-wrap {    justify-content: center;
  gap: 40px;
  padding: 0;
  }  .nav-mobile-left {    flex: 1;
  display: flex;
  justify-content: flex-start;
  margin-left: -15px;
  }  .nav-right {    flex: 1;
  display: flex;
  justify-content: flex-end;
  }     .nav-logo { flex: none;
  padding: 0 20px 0 0;
  margin-left: 15px;
  }  .nav-logo .logo-ar,  .nav-logo .logo-en {    height: 56px;
  }  .nav-mobile-left .lang-toggle {    min-width: 44px;
  font-size: 13px;
  padding: 6px 14px;
  border-color: rgba(255,255,255,0.3);
  };
}

@media (max-width: 768px) {
  .nav-wrap {    justify-content: center;
  gap: 32px;
  padding: 0;
  }  .nav-mobile-left {    flex: 1;
  display: flex;
  justify-content: flex-start;
  margin-left: -15px;
  }  .nav-right {    flex: 1;
  display: flex;
  justify-content: flex-end;
  }     .nav-logo { flex: none;
  padding: 0 20px 0 0;
  margin-left: 15px;
  }  .section {    padding: var(--space-2xl) 0;
  }  .about-leaf-bg img {    width: 100%;
  transform: translateX(-10%) scale(2);
  }  .why-grid {    grid-template-columns: 1fr;
  }  .prod-grid {    grid-template-columns: 1fr;
  }  .how-grid {    grid-template-columns: 1fr;
  max-width: 480px;
  }  .how-step {    aspect-ratio: auto;
  grid-column: 1 !important;
  }  .areas-grid {    grid-template-columns: 1fr;
  }  .footer-grid {    grid-template-columns: 1fr;
  text-align: center;
  }  .footer-grid .footer-links {    align-items: center;
  }  .footer-grid .footer-contact-item {    justify-content: center;
  }  .footer-grid .footer-social {    justify-content: center;
  }  .footer-grid .footer-brand {    justify-content: center;
  }  .hero-actions {    flex-direction: column;
  }  .hero-actions .btn {    width: 100%;
  justify-content: center;
  }  .footer-bottom {    flex-direction: column;
  text-align: center;
  }  .hero-content {    padding: var(--space-xl) var(--space-md);
  max-width: 520px;
  }  .hero-title {    font-size: clamp(36px, 9vw, 46px);
  }  .hero-sub {    font-size: clamp(15px, 4vw, 17px);
  margin-bottom: var(--space-md);
  }  .nav-logo .logo-ar,  .nav-logo .logo-en {    height: 52px;
  }  .footer-brand .logo-ar,  .footer-brand .logo-en {    height: 48px;
  };
}

@media (max-width: 430px) {
  .nav-wrap {    justify-content: center;
  gap: 24px;
  padding: 0;
  }  .nav-mobile-left {    flex: 1;
  display: flex;
  justify-content: flex-start;
  margin-left: -15px;
  }  .nav-right {    flex: 1;
  display: flex;
  justify-content: flex-end;
  };
}

.nav-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-logo {
  flex: none;
  padding: 0 20px 0 0;
  margin-left: 15px;
}

.nav-logo .logo-ar,  .nav-logo .logo-en {
  height: 46px;
}

.container {
  padding: 0 var(--space-sm);
}

.hero {
  min-height: 90vh;
}

.about-leaf-bg img {
  width: 120%;
  transform: translateX(-5%) scale(2.2);
}

@media (min-width: 1440px) {
  .hero-title {    font-size: clamp(48px, 4.5vw, 72px);
  };
}

/* ===================================== *//* SCROLL-TRIGGERED SECTION ANIMATIONS   *//* ===================================== *//* Base section entrance. fade + slide up */.section-entrance {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-entrance.entrance-visible {
  opacity: 1;
  transform: translateY(0);
}

/* About. split reveal — copy from left, visual from right */.about-entrance .about-copy {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-entrance .about-visual {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-entrance.entrance-visible .about-copy,.about-entrance.entrance-visible .about-visual {
  opacity: 1;
  transform: translateX(0);
}

.about-entrance.entrance-visible .about-copy {
  transition-delay: 0.1s;
}

.about-entrance.entrance-visible .about-visual {
  transition-delay: 0.2s;
}

/* Gold icon — always visible, no animation */.about-gold-row img {
  opacity: 1;
  transform: none;
}

.about-entrance.entrance-visible .about-gold-row img {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/* Why Choose. perspective tilt stagger */.why-entrance .why-card {
  opacity: 0;
  transform: perspective(800px) rotateX(4deg) translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-entrance.entrance-visible .why-card {
  opacity: 1;
  transform: perspective(800px) rotateX(0deg) translateY(0);
}

.why-entrance.entrance-visible .why-card:nth-child(1) {
  transition-delay: 0s;
}

.why-entrance.entrance-visible .why-card:nth-child(2) {
  transition-delay: 0.08s;
}

.why-entrance.entrance-visible .why-card:nth-child(3) {
  transition-delay: 0.16s;
}

.why-entrance.entrance-visible .why-card:nth-child(4) {
  transition-delay: 0.24s;
}

.why-entrance.entrance-visible .why-card:hover {
  transform: perspective(800px) rotateX(0deg) translateY(-4px);
}

/* Products. cards fade up with blur */.prod-entrance .prod-card {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(2px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),              filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.prod-entrance.entrance-visible .prod-card {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.prod-entrance.entrance-visible .prod-card:nth-child(1) {
  transition-delay: 0s;
}

.prod-entrance.entrance-visible .prod-card:nth-child(2) {
  transition-delay: 0.05s;
}

.prod-entrance.entrance-visible .prod-card:nth-child(3) {
  transition-delay: 0.1s;
}

.prod-entrance.entrance-visible .prod-card:nth-child(4) {
  transition-delay: 0.15s;
}

.prod-entrance.entrance-visible .prod-card:nth-child(5) {
  transition-delay: 0.2s;
}

.prod-entrance.entrance-visible .prod-card:nth-child(6) {
  transition-delay: 0.25s;
}

/* Service Areas. alternating side slides */.areas-entrance .area-card {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.areas-entrance .area-card:nth-child(1) {
  transform: translateX(-30px);
}

.areas-entrance .area-card:nth-child(2) {
  transform: translateX(30px);
}

.areas-entrance .area-card:nth-child(3) {
  transform: translateX(-30px);
}

.areas-entrance.entrance-visible .area-card {
  opacity: 1;
  transform: translateX(0);
}

.areas-entrance.entrance-visible .area-card:nth-child(1) {
  transition-delay: 0s;
}

.areas-entrance.entrance-visible .area-card:nth-child(2) {
  transition-delay: 0.1s;
}

.areas-entrance.entrance-visible .area-card:nth-child(3) {
  transition-delay: 0.2s;
}

/* Contact. detail items stagger slide in */.contact-entrance .contact-detail-item {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-entrance.entrance-visible .contact-detail-item {
  opacity: 1;
  transform: translateY(0);
}

.contact-entrance.entrance-visible .contact-detail-item:nth-child(1) {
  transition-delay: 0s;
}

.contact-entrance.entrance-visible .contact-detail-item:nth-child(2) {
  transition-delay: 0.1s;
}

.contact-entrance.entrance-visible .contact-detail-item:nth-child(3) {
  transition-delay: 0.2s;
}

/* Disable scroll animations on mobile for performance *//* Lazy image blur-up */.lazy-img {
  filter: blur(18px);
  transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.lazy-img.loaded {
  filter: blur(0);
}

.bg-fade {
  /* background-image swaps from blurred placeholder to sharp WebP */;
}

@media (max-width: 768px) {
  .section-entrance,  .about-entrance .about-copy,  .about-entrance .about-visual,  .about-gold-row img,  .why-entrance .why-card,  .prod-entrance .prod-card,  .areas-entrance .area-card,  .contact-entrance .contact-detail-item,  .lazy-img,  .lazy-img.loaded {    opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
  };
}
