/* =========================================================
   أبوكيان لشراء وتشليح السيارات — Premium Stylesheet
   Author: Brand Team
   Build: Hostinger-ready (no external dependencies)
   ========================================================= */

/* -----------------------------
   1. Local font registration
   ----------------------------- */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/cairo-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/cairo-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/cairo-700.ttf') format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../assets/fonts/cairo-900.ttf') format('truetype');
}
@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/tajawal-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/tajawal-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/tajawal-700.ttf') format('truetype');
}

/* -----------------------------
   2. Design Tokens
   ----------------------------- */
:root {
  /* Brand */
  --gold:        #D4AF37;
  --gold-light:  #F3E5AB;
  --gold-deep:   #A6841E;
  --silver:      #CFD2D6;
  --silver-dark: #8A95A5;

  /* Surfaces (dark mode) */
  --bg:          #0E0E10;
  --bg-2:        #15151A;
  --surface:     #1A1A20;
  --surface-2:   #23232B;
  --line:        rgba(255,255,255,0.08);
  --line-strong: rgba(212,175,55,0.35);

  /* Text */
  --text:        #F2F2F4;
  --text-muted:  #B7BAC1;
  --text-dim:    #7A7E88;

  /* Status */
  --whatsapp:    #25D366;
  --call:        #1E88E5;
  --danger:      #E53935;

  /* Layout */
  --container:   1280px;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;

  /* Motion */
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --dur:         0.4s;

  /* Shadow */
  --shadow-sm:   0 4px 12px rgba(0,0,0,0.18);
  --shadow:      0 10px 30px rgba(0,0,0,0.35);
  --shadow-lg:   0 30px 60px rgba(0,0,0,0.45);
  --shadow-gold: 0 10px 35px rgba(212,175,55,0.25);
}

/* -----------------------------
   3. Reset & base
   ----------------------------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', 'Cairo', system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: 0;
  outline: 0;
}

button { cursor: pointer; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  line-height: 1.25;
  font-weight: 800;
  color: var(--text);
}

::selection { background: var(--gold); color: #000; }

/* -----------------------------
   4. Layout helpers
   ----------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  padding: 0 24px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-eyebrow::before { right: 0; }
.section-eyebrow::after  { left: 0; transform: scaleX(-1); }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  margin-bottom: 14px;
}
.section-title .accent { color: var(--gold); }

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #1A1300;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { box-shadow: 0 16px 40px rgba(212,175,55,0.45); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}
.btn--whatsapp:hover { box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5); }

.btn--call {
  background: var(--call);
  color: #fff;
  box-shadow: 0 10px 30px rgba(30, 136, 229, 0.35);
}
.btn--call:hover { box-shadow: 0 16px 40px rgba(30, 136, 229, 0.5); }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------
   5. Header
   ----------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(14, 14, 16, 0.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), padding var(--dur) var(--ease);
}
.site-header.is-scrolled {
  background: rgba(14, 14, 16, 0.92);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.header-logo img,
.header-logo svg { height: 56px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 8px; }

.main-nav a {
  position: relative;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold); }
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--dur) var(--ease), right var(--dur) var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 60%;
  right: 20%;
}

.header-cta { display: flex; align-items: center; gap: 10px; }

.header-cta .btn { padding: 10px 20px; font-size: 14px; }

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  transition: all var(--dur) var(--ease);
}
.header-call:hover { border-color: var(--gold); color: var(--gold); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), top var(--dur) var(--ease);
}
.menu-toggle span { top: 50%; transform: translate(-50%, -50%); }
.menu-toggle span::before { top: -7px; transform: translateX(-50%); }
.menu-toggle span::after  { top: 7px;  transform: translateX(-50%); }

.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.menu-toggle.is-open span::after  { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(14,14,16,0.97);
  backdrop-filter: blur(20px);
  padding: 100px 24px 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu a {
  display: block;
  padding: 16px 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.mobile-menu-cta .btn { justify-content: center; }

/* -----------------------------
   6. Hero Section
   ----------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 100%, rgba(212,175,55,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #0E0E10 0%, #15151A 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, transparent 80%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,175,55,0.2);
  animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(212,175,55,0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(212,175,55,0.05); }
}

.hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 520px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-trust li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.15);
  color: #4ADE80;
  border-radius: 50%;
  font-weight: 900;
  font-size: 12px;
}

/* Hero illustration - animated tow truck */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(212,175,55,0.12) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
}

.hero-stage {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212,175,55,0.1) 0%, transparent 70%),
    linear-gradient(180deg, #1A1A20 0%, #0E0E10 100%);
  border: 1px solid var(--line);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  transform: perspective(500px) rotateX(50deg) scale(1.5) translateY(50%);
  transform-origin: bottom;
  mask-image: linear-gradient(180deg, transparent 0%, #000 50%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 50%, #000 100%);
  opacity: 0.4;
}

.tow-truck-anim {
  position: absolute;
  bottom: 28%;
  right: -25%;
  width: 70%;
  display: flex;
  align-items: flex-end;
  animation: driveAcross 14s linear infinite;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.45));
}

@keyframes driveAcross {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-220%); }
}

.tow-truck-anim .car-on-truck {
  margin-bottom: 6px;
  margin-right: -8px;
  position: relative;
  z-index: 1;
  animation: carBounce 0.6s var(--ease) infinite;
}
@keyframes carBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-1px); }
}

.wheel-spin {
  animation: spin 0.5s linear infinite;
  transform-origin: center;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.dust {
  position: absolute;
  bottom: 22%;
  right: 0;
  display: flex;
  gap: 6px;
  z-index: 0;
}
.dust span {
  width: 10px;
  height: 10px;
  background: rgba(212,175,55,0.4);
  border-radius: 50%;
  filter: blur(4px);
  animation: dustFade 1.6s var(--ease) infinite;
}
.dust span:nth-child(1) { animation-delay: 0s; }
.dust span:nth-child(2) { animation-delay: 0.3s; }
.dust span:nth-child(3) { animation-delay: 0.6s; }
@keyframes dustFade {
  0%   { transform: translate(0,0) scale(0.5); opacity: 0; }
  50%  { transform: translate(-30px,-8px) scale(1.2); opacity: 0.7; }
  100% { transform: translate(-60px,0) scale(0.5); opacity: 0; }
}

.hero-stats {
  position: absolute;
  inset: auto 16px 16px;
  display: flex;
  justify-content: space-around;
  gap: 8px;
  z-index: 2;
}
.hero-stat {
  text-align: center;
  background: rgba(14,14,16,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  flex: 1;
}
.hero-stat strong {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-size: 24px;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}
.hero-stat span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 600;
}

/* -----------------------------
   7. Services Section
   ----------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px 36px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.15) 0%, rgba(212,175,55,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 18px;
  margin-bottom: 24px;
  color: var(--gold);
}
.service-icon svg { width: 36px; height: 36px; }

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 15.5px;
  margin-bottom: 24px;
  line-height: 1.85;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--gold);
  font-size: 15px;
  font-family: 'Cairo', sans-serif;
}
.service-link::after {
  content: "←";
  transition: transform var(--dur) var(--ease);
}
.service-link:hover { color: var(--gold-light); }
.service-link:hover::after { transform: translateX(-4px); }

/* -----------------------------
   8. Why Us Section
   ----------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.why-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: 14px;
  color: #1A1300;
  box-shadow: var(--shadow-gold);
}
.why-icon svg { width: 28px; height: 28px; }

.why-card h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}
.why-card p { color: var(--text-muted); font-size: 14px; }

/* -----------------------------
   9. How It Works
   ----------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: transform var(--dur) var(--ease);
}
.step:hover { transform: translateY(-6px); }

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: #1A1300;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  margin-bottom: 18px;
  box-shadow: var(--shadow-gold);
}

.step h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.step p { color: var(--text-muted); font-size: 14px; }

/* -----------------------------
   10. Gallery
   ----------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--line);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.gallery-item:hover::after { opacity: 1; }

.gallery-caption {
  position: absolute;
  bottom: 16px;
  right: 16px;
  left: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur) var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}
.lightbox-close:hover { background: var(--gold); color: #000; }

/* -----------------------------
   11. Testimonials
   ----------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.review-quote {
  font-size: 36px;
  line-height: 1;
  color: var(--gold);
  font-family: 'Cairo', serif;
  margin-bottom: 12px;
  opacity: 0.6;
}

.review-text {
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 22px;
  min-height: 90px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1A1300;
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 18px;
}
.review-name {
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 2px;
}
.review-meta {
  font-size: 13px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}
.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
  margin-top: 4px;
}

/* -----------------------------
   12. FAQ
   ----------------------------- */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq-item.is-open { border-color: var(--line-strong); }
.faq-item[hidden] { display: none; }

.faq-question {
  width: 100%;
  padding: 22px 24px;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: var(--text);
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.faq-question:hover { color: var(--gold); }

.faq-toggle {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  transition: transform 0.4s var(--ease), background var(--dur) var(--ease);
}
.faq-item.is-open .faq-toggle { transform: rotate(45deg); background: var(--gold); color: #000; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.85;
}

/* -----------------------------
   13. Contact Section
   ----------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.contact-info {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.contact-info h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}
.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-item-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.25);
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item-body { flex: 1; }
.contact-item-body strong {
  display: block;
  font-family: 'Cairo', sans-serif;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
}
.contact-item-body span,
.contact-item-body a { color: var(--text-muted); font-size: 14.5px; }
.contact-item-body a:hover { color: var(--gold); }

.contact-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 20px;
  position: relative;
  height: 200px;
  background: var(--bg-2);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) invert(0.92) hue-rotate(180deg);
}

/* Contact form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
}
.contact-form h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}
.contact-form > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.form-field label .req { color: var(--gold); }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-2);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: var(--surface);
}

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

.form-status {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  margin-top: 16px;
  display: none;
}
.form-status.is-success { display: block; background: rgba(37,211,102,0.12); color: #4ADE80; border: 1px solid rgba(37,211,102,0.3); }
.form-status.is-error   { display: block; background: rgba(229,57,53,0.12); color: #FCA5A5; border: 1px solid rgba(229,57,53,0.3); }

/* -----------------------------
   14. CTA Banner
   ----------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #1A1300;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 30%),
                    radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 30%);
}
.cta-banner h2 {
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 900;
  color: #1A1300;
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p { font-size: 17px; color: #2A1F00; margin-bottom: 28px; position: relative; }
.cta-banner .btn-row { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; }
.cta-banner .btn--dark {
  background: #1A1300;
  color: var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.cta-banner .btn--dark:hover { background: #000; }
.cta-banner .btn--light {
  background: #fff;
  color: #1A1300;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.cta-banner .btn--light:hover { background: #f5f5f5; }

/* -----------------------------
   15. Footer
   ----------------------------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 70px 0 30px;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img { width: 200px; height: auto; margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 14.5px; max-width: 320px; }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text-muted);
  transition: all var(--dur) var(--ease);
}
.footer-socials a:hover { background: var(--gold); color: #1A1300; border-color: var(--gold); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--text);
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--text-dim);
}
.footer-bottom a:hover { color: var(--gold); }

/* -----------------------------
   16. Floating Buttons
   ----------------------------- */
.floating {
  position: fixed;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating--right { left: 20px; bottom: 20px; }
.floating--left  { right: 20px; bottom: 20px; }

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--dur) var(--ease);
}
.float-btn:hover { transform: scale(1.1); }
.float-btn svg { width: 26px; height: 26px; }

.float-btn--whatsapp {
  background: var(--whatsapp);
  animation: float-pulse 2.4s var(--ease) infinite;
}
@keyframes float-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50%      { box-shadow: 0 10px 30px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
}

.float-btn--call {
  background: var(--call);
}

.float-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-2);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  box-shadow: var(--shadow);
}
.floating--right .float-label { right: 68px; }
.floating--left  .float-label { left: 68px; }
.float-btn:hover .float-label { opacity: 1; }

/* -----------------------------
   17. Page Hero (sub pages)
   ----------------------------- */
.page-hero {
  padding: 160px 0 70px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,0.12) 0%, transparent 60%),
    linear-gradient(180deg, #0E0E10 0%, #15151A 100%);
  position: relative;
}
.page-hero h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  font-weight: 900;
  margin-bottom: 14px;
}
.page-hero h1 .accent {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p { color: var(--text-muted); font-size: 17px; max-width: 660px; margin: 0 auto; }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 18px;
  font-weight: 600;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--line-strong); }

/* -----------------------------
   18. Service Detail Cards (services.php)
   ----------------------------- */
.service-detail {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  margin-bottom: 60px;
  align-items: start;
}
.service-detail.reverse { grid-template-columns: 1fr 280px; }

.service-detail-visual {
  position: sticky;
  top: 110px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.service-detail-visual .icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,175,55,0.18) 0%, rgba(212,175,55,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 24px;
  color: var(--gold);
}
.service-detail-visual .icon svg { width: 48px; height: 48px; }
.service-detail-visual h3 { font-size: 20px; font-weight: 900; margin-bottom: 8px; }
.service-detail-visual p { color: var(--text-muted); font-size: 14px; }
.service-detail-visual .pill {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 14px;
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.service-detail-content h2 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 20px;
}
.service-detail-content h2 .accent { color: var(--gold); }
.service-detail-content p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.95;
  margin-bottom: 18px;
}
.service-detail-content ul {
  margin: 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-detail-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  font-weight: 600;
}
.service-detail-content ul li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,211,102,0.15);
  color: #4ADE80;
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
}

.kw-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.kw-tag {
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-weight: 600;
}

/* -----------------------------
   19. Animations utility
   ----------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeInUp 0.8s var(--ease-out) both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* -----------------------------
   20. Responsive
   ----------------------------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { height: 380px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; gap: 30px; }
  .service-detail-visual { position: static; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .section-head { margin-bottom: 40px; }
  .main-nav, .header-call, .header-cta .btn:not(.menu-toggle) { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-cta { gap: 6px; }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 16px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .hero-visual { height: 320px; }
  .tow-truck-anim { width: 90%; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail-content ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .floating--right { left: 14px; bottom: 14px; }
  .floating--left  { right: 14px; bottom: 14px; }
  .float-btn { width: 50px; height: 50px; font-size: 22px; }
  .float-btn svg { width: 22px; height: 22px; }
  .contact-info, .contact-form { padding: 28px 22px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .header-logo img, .header-logo svg { height: 48px; }
  .hero-tag { font-size: 12px; }
  .hero-title { font-size: 28px; }
  .hero-trust { grid-template-columns: 1fr; gap: 10px; }
  .hero-stats { gap: 4px; }
  .hero-stat { padding: 8px 6px; }
  .hero-stat strong { font-size: 18px; }
  .hero-stat span { font-size: 10px; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* -----------------------------
   21. Print-friendly (basic)
   ----------------------------- */
@media print {
  .site-header, .floating, .hero-stage::before, .hero::before, .hero::after { display: none; }
  body { background: #fff; color: #000; }
}

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