/* =========================================================
   ASPHALT CONTRACTOR — Design tokens
   Asphalt Charcoal #1C1D1F | Saudi Green #0B3D2E
   Construction Amber #F2A93B | Ember Orange #D9622B
   Steel Gray #6B7076 | Cream #F7F5F1
   Display: Manrope / Body: Inter / Arabic: Tajawal
   ========================================================= */

:root {
  --asphalt-900: #111214;
  --asphalt-800: #1C1D1F;
  --asphalt-700: #26282B;
  --asphalt-600: #34373B;
  --saudigreen: #0B3D2E;
  --saudigreen-light: #12503D;
  --amber: #F2A93B;
  --amber-light: #F7C371;
  --amber-dark: #D3901F;
  --ember: #D9622B;
  --ember-dark: #B84E1F;
  --steel: #6B7076;
  --steel-light: #9AA0A6;
  --cream: #F7F5F1;
  --white: #FFFFFF;

  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-arabic: 'Tajawal', sans-serif;

  --shadow-premium: 0 20px 60px -20px rgba(17, 18, 20, 0.45);
  --shadow-card: 0 8px 30px -12px rgba(17, 18, 20, 0.25);
  --radius-lg: 20px;
  --radius-md: 14px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html[dir='rtl'] body { font-family: var(--font-arabic), sans-serif; }
html[dir='ltr'] body { font-family: var(--font-body), sans-serif; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--asphalt-800);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-weight: 800;
  line-height: 1.15;
}
html[dir='rtl'] h1, html[dir='rtl'] h2, html[dir='rtl'] h3, html[dir='rtl'] h4 {
  font-family: var(--font-arabic), sans-serif;
  font-weight: 700;
}
p { margin: 0; line-height: 1.7; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 32px; }
}

/* Focus visibility (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  background: var(--amber);
  color: var(--asphalt-900);
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 200;
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-family: var(--font-display), sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
html[dir='rtl'] .btn { font-family: var(--font-arabic), sans-serif; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: var(--asphalt-900); box-shadow: var(--shadow-card); }
.btn-primary:hover { background: var(--amber-light); }
.btn-outline { background: transparent; border: 1.5px solid rgba(247,245,241,.28); color: var(--cream); }
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }
.btn-outline--wa:hover { border-color: #25D366; color: #25D366; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; padding: 16px; font-size: 15px; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: var(--asphalt-900);
  padding: 14px 0;
  transition: padding .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-premium);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  text-align: start;
}
.brand-mark {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--amber);
  color: var(--asphalt-900);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-primary { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--cream); }
html[dir='rtl'] .brand-primary { font-family: var(--font-arabic); }
.brand-secondary { font-family: var(--font-arabic); font-size: 11px; color: var(--steel-light); }

.main-nav { display: none; align-items: center; gap: 28px; }
.nav-link {
  background: none; border: none; color: rgba(247,245,241,.8);
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  transition: color .15s ease;
}
html[dir='rtl'] .nav-link { font-family: var(--font-arabic); font-weight: 500; }
.nav-link:hover { color: var(--amber); }

.nav-actions { display: none; align-items: center; gap: 14px; }

.lang-switch {
  display: inline-flex; align-items: center; padding: 4px;
  border: 1px solid rgba(107,112,118,.4); border-radius: 999px; background: var(--asphalt-700);
}
.lang-btn {
  background: none; border: none; color: rgba(247,245,241,.8);
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  font-family: var(--font-arabic);
  transition: background-color .15s ease, color .15s ease;
}
.lang-btn[data-lang='en'] { font-family: var(--font-display); }
.lang-btn.is-active { background: var(--amber); color: var(--asphalt-900); }

.mobile-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: var(--asphalt-700); color: var(--amber); border: none;
}

.mobile-menu {
  position: fixed; inset-inline: 0; top: var(--header-h);
  background: var(--asphalt-900);
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  border-top: 1px solid rgba(247,245,241,.08);
  z-index: 99;
}
.mobile-menu.is-open { max-height: 620px; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 4px; padding: 16px 20px 28px; }
.mobile-link {
  background: none; border: none; color: rgba(247,245,241,.92);
  text-align: start; padding: 14px 10px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
}
html[dir='rtl'] .mobile-link { font-family: var(--font-arabic); }
.mobile-link:hover { background: var(--asphalt-700); }
.lang-switch--mobile { margin: 10px; }

@media (min-width: 1024px) {
  .main-nav { display: flex; }
  .nav-actions { display: flex; }
  .mobile-actions { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 150px 0 90px;
  background: linear-gradient(180deg, var(--asphalt-600) 0%, var(--asphalt-700) 35%, var(--asphalt-800) 70%, var(--asphalt-900) 100%);
  overflow: hidden;
}
@media (min-width: 640px) { .hero { padding: 165px 0 120px; } }
.hero-grid-bg {
  position: absolute; inset: 0; opacity: .06; pointer-events: none;
  background-image: linear-gradient(var(--cream) 1px, transparent 1px), linear-gradient(90deg, var(--cream) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-inner {
  position: relative;
  display: grid; gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.1fr .9fr; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; padding: 7px 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .06em;
}
html[dir='rtl'] .eyebrow { font-family: var(--font-arabic); text-transform: none; letter-spacing: 0; }
.eyebrow--dark { background: rgba(242,169,59,.1); border: 1px solid rgba(242,169,59,.3); color: var(--amber); }
.eyebrow--ember { background: rgba(217,98,43,.1); color: var(--ember); padding-inline: 0; }
.eyebrow--amber { color: var(--amber); padding-inline: 0; }

.hero-copy h1 {
  margin-top: 22px; max-width: 620px;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--cream);
}
.hero-subtext {
  margin-top: 22px; max-width: 520px; color: var(--steel-light);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
}
.hero-ctas { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  margin: 44px 0 0; padding-top: 22px; border-top: 1px solid rgba(247,245,241,.1);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 520px;
}
.hero-stat-label { font-family: var(--font-display); font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--steel-light); margin: 0; }
html[dir='rtl'] .hero-stat-label { font-family: var(--font-arabic); text-transform: none; }
.hero-stat-value { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--cream); margin: 4px 0 0; }
html[dir='rtl'] .hero-stat-value { font-family: var(--font-arabic); }

.strata-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(247,245,241,.1);
  background: var(--asphalt-700); box-shadow: var(--shadow-premium);
}
.strata-svg { width: 100%; height: auto; }
.road-marking {
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--amber) 0, var(--amber) 28px, transparent 28px, transparent 48px);
}
html[dir='rtl'] .road-marking {
  background: repeating-linear-gradient(270deg, var(--amber) 0, var(--amber) 28px, transparent 28px, transparent 48px);
}
.strata-card-copy { padding: 22px; }
.strata-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--cream); }
html[dir='rtl'] .strata-title { font-family: var(--font-arabic); }
.strata-text { margin-top: 6px; font-size: 12.5px; color: var(--steel-light); line-height: 1.6; }

/* ============ SECTIONS (generic) ============ */
.section { padding: 84px 0; position: relative; }
@media (min-width: 768px) { .section { padding: 112px 0; } }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--dark { background: var(--asphalt-900); position: relative; overflow: hidden; }
.on-dark { color: var(--cream); }
.on-dark-muted { color: var(--steel-light); }

.section-heading { max-width: 640px; margin-bottom: 48px; }
.section-heading h2 { margin-top: 12px; font-size: clamp(1.75rem, 3vw, 2.3rem); }
.section-heading p { margin-top: 16px; color: var(--steel); font-size: 16px; }

.dark-pattern {
  position: absolute; inset-block: 0; inset-inline-end: 0; width: 50%; opacity: .1; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, var(--amber) 0, var(--amber) 2px, transparent 2px, transparent 22px);
}

/* ============ ABOUT ============ */
.about-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-media-main { grid-column: 1 / -1; aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; }
.about-media-row { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-media-row .placeholder-card { aspect-ratio: 1 / 1; border-radius: var(--radius-lg); }
.about-copy h2 { margin-top: 12px; font-size: clamp(1.75rem, 3vw, 2.3rem); }
.about-copy p { margin-top: 18px; color: var(--steel); font-size: 16px; }
.check-list { margin-top: 28px; display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 640px) { .check-list { grid-template-columns: 1fr 1fr; } }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.6; }
.check-list svg { flex-shrink: 0; margin-top: 2px; color: var(--saudigreen); }

.placeholder-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border: 2px dashed rgba(107,112,118,.4);
  background: var(--asphalt-700);
  text-align: center; padding: 20px; height: 100%; width: 100%;
}
.placeholder-card .ph-icon { color: var(--amber); }
.placeholder-card .ph-title { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--cream); }
html[dir='rtl'] .placeholder-card .ph-title { font-family: var(--font-arabic); }
.placeholder-card .ph-note { max-width: 220px; font-size: 11.5px; color: var(--steel-light); }
.placeholder-card.small .ph-note { display: none; }

/* ============ SERVICES ============ */
.services-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
.service-card {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid rgba(107,112,118,.15);
  border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-card);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(242,169,59,.5); box-shadow: var(--shadow-premium); }
.service-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--saudigreen); color: var(--cream);
  transition: background-color .2s ease, color .2s ease;
}
.service-card:hover .service-icon { background: var(--amber); color: var(--asphalt-900); }
.service-card h3 { margin-top: 20px; font-size: 17px; }
.service-card .service-title-alt { margin-top: 2px; font-size: 13px; color: var(--steel-light); font-family: var(--font-arabic); }
.service-card p { margin-top: 12px; flex: 1; font-size: 14px; color: var(--steel); }
.service-cta {
  margin-top: 18px; background: none; border: none; color: var(--ember);
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 6px;
}
html[dir='rtl'] .service-cta { font-family: var(--font-arabic); }
.service-cta:hover { color: var(--ember-dark); }

/* ============ WHY US ============ */
.why-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card {
  position: relative; border: 1px solid rgba(247,245,241,.1);
  background: rgba(38,40,43,.6); border-radius: var(--radius-lg); padding: 26px;
  transition: border-color .2s ease;
}
.why-card:hover { border-color: rgba(242,169,59,.4); }
.why-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(242,169,59,.15); color: var(--amber);
}
.why-card h3 { margin-top: 20px; font-size: 15.5px; color: var(--cream); }
.why-card p { margin-top: 8px; font-size: 13.5px; color: var(--steel-light); }

/* ============ PROCESS ============ */
.process-timeline { margin-top: 48px; }
.process-step {
  position: relative; display: flex; gap: 16px; padding-bottom: 40px;
}
.process-step:last-child { padding-bottom: 0; }
.process-step-line {
  position: absolute; inset-inline-start: 19px; top: 44px; bottom: 0; width: 2px;
  background: rgba(107,112,118,.25);
}
.process-num {
  z-index: 1; flex-shrink: 0; width: 40px; height: 40px; border-radius: 999px;
  background: var(--saudigreen); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
}
.process-step h3 { font-size: 16px; }
.process-step p { margin-top: 6px; font-size: 14px; color: var(--steel); }

@media (min-width: 640px) {
  .process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; margin-top: 64px; }
  .process-timeline::before {
    content: ''; position: absolute; top: 20px; inset-inline: 0; height: 2px; background: rgba(107,112,118,.25);
  }
  .process-step { flex-direction: column; padding-bottom: 0; }
  .process-step-line { display: none; }
}

/* ============ GALLERY ============ */
.gallery-grid {
  margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; grid-auto-rows: 180px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-item {
  position: relative; border: none; padding: 0; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); text-align: start;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item .placeholder-card { transition: transform .5s ease; }
.gallery-item:hover .placeholder-card { transform: scale(1.05); }
.gallery-tag {
  position: absolute; top: 12px; inset-inline-start: 12px;
  background: rgba(17,18,20,.8); color: var(--cream);
  padding: 5px 12px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 11px; backdrop-filter: blur(4px);
}
html[dir='rtl'] .gallery-tag { font-family: var(--font-arabic); }
.gallery-overlay {
  position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 16px; background: linear-gradient(to top, rgba(17,18,20,.85), transparent 60%);
  opacity: 0; transition: opacity .2s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-view-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--amber); color: var(--asphalt-900);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
}
html[dir='rtl'] .gallery-view-badge { font-family: var(--font-arabic); }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(17,18,20,.95); backdrop-filter: blur(2px); padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox-content { width: 100%; max-width: 620px; aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; }
.lightbox-close, .lightbox-nav {
  position: absolute; width: 44px; height: 44px; border-radius: 999px;
  background: var(--asphalt-700); color: var(--cream); border: none;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 20px; inset-inline-end: 20px; }
.lightbox-prev { inset-inline-start: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { inset-inline-end: 20px; top: 50%; transform: translateY(-50%); }

/* ============ SERVICE AREA ============ */
.service-area-grid { display: grid; gap: 40px; }
@media (min-width: 1024px) { .service-area-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.service-area-grid h2 { margin-top: 12px; font-size: clamp(1.75rem, 3vw, 2.3rem); }
.service-area-grid p { margin-top: 16px; max-width: 420px; color: var(--steel); }
.map-placeholder {
  aspect-ratio: 16/10; border-radius: var(--radius-lg); border: 1px solid rgba(107,112,118,.2);
  background: var(--asphalt-700); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px;
  color: var(--amber);
}
.map-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--cream); }
html[dir='rtl'] .map-title { font-family: var(--font-arabic); }
.map-note { max-width: 280px; font-size: 12.5px; color: var(--steel-light); }

/* ============ FAQ ============ */
.faq-container { max-width: 760px; }
.faq-list { margin-top: 40px; border-top: 1px solid rgba(107,112,118,.15); }
.faq-item { border-bottom: 1px solid rgba(107,112,118,.15); }
.faq-question {
  width: 100%; background: none; border: none; text-align: start;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 0; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--asphalt-800);
}
html[dir='rtl'] .faq-question { font-family: var(--font-arabic); }
.faq-question svg { flex-shrink: 0; color: var(--ember); transition: transform .25s ease; }
.faq-item.is-open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .25s ease;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; padding-bottom: 20px; }
.faq-answer-inner { overflow: hidden; font-size: 14px; color: var(--steel); line-height: 1.7; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; gap: 48px; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: .85fr 1.15fr; } }
.contact-info h2 { margin-top: 12px; font-size: clamp(1.75rem, 3vw, 2.3rem); }
.contact-info > p { margin-top: 16px; max-width: 380px; }
.contact-cards { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 16px; border: 1px solid rgba(247,245,241,.1);
  border-radius: var(--radius-md); padding: 16px; transition: border-color .2s ease;
}
.contact-card:hover { border-color: rgba(242,169,59,.4); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; background: rgba(242,169,59,.15); color: var(--amber);
}
.contact-card-icon.wa { background: rgba(37,211,102,.15); color: #25D366; }
.contact-card-label { font-family: var(--font-display); font-size: 11.5px; color: var(--steel-light); display: block; }
html[dir='rtl'] .contact-card-label { font-family: var(--font-arabic); }
.contact-card-value { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--cream); display: block; margin-top: 2px; }
html[dir='rtl'] .contact-card-value { font-family: var(--font-arabic); }

.quote-form {
  background: var(--asphalt-800); border: 1px solid rgba(247,245,241,.1);
  border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-premium);
}
.form-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  display: block; margin-bottom: 6px; font-family: var(--font-display); font-weight: 600; font-size: 12.5px; color: var(--steel-light);
}
html[dir='rtl'] .form-field label { font-family: var(--font-arabic); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; background: var(--asphalt-700); border: 1px solid rgba(107,112,118,.35);
  border-radius: 12px; padding: 12px 14px; font-size: 14px; color: var(--cream);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--steel-light); }
.form-field input.is-invalid, .form-field select.is-invalid, .form-field textarea.is-invalid { border-color: var(--ember); }
.field-error { margin-top: 6px; font-size: 12px; color: var(--amber-light); min-height: 0; }
.quote-form .btn-block { margin-top: 26px; }
.form-status { margin-top: 16px; padding: 12px 16px; border-radius: 12px; font-size: 13.5px; }
.form-status--success { background: rgba(11,61,46,.4); color: var(--cream); }
.form-status--error { background: rgba(217,98,43,.18); color: var(--cream); }

/* ============ FOOTER ============ */
.site-footer { background: var(--asphalt-900); border-top: 1px solid rgba(247,245,241,.08); padding: 64px 0 0; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand .brand-primary { font-size: 18px; }
.footer-brand p { margin-top: 12px; max-width: 320px; color: var(--steel-light); font-size: 14px; }
.footer-wa {
  margin-top: 18px; width: 40px; height: 40px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(37,211,102,.15); color: #25D366;
}
.footer-col h3 { font-size: 14px; color: var(--cream); margin-bottom: 16px; }
.footer-link {
  display: block; background: none; border: none; text-align: start;
  color: var(--steel-light); font-size: 14px; padding: 6px 0; font-family: var(--font-body);
}
html[dir='rtl'] .footer-link { font-family: var(--font-arabic); }
.footer-link:hover { color: var(--amber); }
.footer-link--static:hover { color: var(--steel-light); }
.footer-bottom {
  margin-top: 48px; border-top: 1px solid rgba(247,245,241,.08);
  padding: 22px 20px; text-align: center;
}
.footer-bottom p { color: var(--steel-light); font-size: 13px; }

/* ============ FLOATING BUTTONS ============ */
.floating-wa {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 60;
  display: flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff; border-radius: 999px;
  padding: 13px 18px 13px 14px; box-shadow: var(--shadow-premium);
  transition: transform .18s ease;
}
html[dir='rtl'] .floating-wa { padding: 13px 14px 13px 18px; }
.floating-wa:hover { transform: scale(1.06); }
.floating-wa span { display: none; font-family: var(--font-display); font-weight: 700; font-size: 13px; }
html[dir='rtl'] .floating-wa span { font-family: var(--font-arabic); }
@media (min-width: 640px) { .floating-wa span { display: inline; } }

.scroll-top {
  position: fixed; bottom: 94px; inset-inline-end: 24px; z-index: 60;
  width: 44px; height: 44px; border-radius: 999px;
  background: var(--asphalt-700); color: var(--amber); border: none;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-premium); transition: transform .18s ease;
}
.scroll-top.is-visible { display: flex; }
.scroll-top:hover { transform: scale(1.06); }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
