/* ==========================================================
   IFALAKHE TRANSPORT HOLDINGS — styles.css
   Premium, non-template logistics design
   ========================================================== */

/* ==========================================================
   1. TOKENS
   ========================================================== */
:root {
  /* Palette */
  --navy:          #0a1628;
  --navy-mid:      #152033;
  --navy-card:     #1c2e42;
  --navy-border:   #243549;
  --orange:        #e8761a;
  --orange-dark:   #c4601000;
  --orange-glow:   rgba(232,118,26,0.18);
  --orange-subtle: rgba(232,118,26,0.08);
  --white:         #ffffff;
  --off-white:     #f4f6f9;
  --light:         #e9ecf0;
  --mid-grey:      #8a99aa;
  --text:          #1a2535;
  --text-body:     #4a5a6a;
  --text-muted:    #7a8a9a;
  --green:         #22c55e;
  --whatsapp:      #25d366;

  /* Font */
  --font:          'Inter', system-ui, sans-serif;
  --font-display:  'Barlow Condensed', 'Inter', sans-serif;

  /* Space */
  --s1: 0.25rem;  --s2: 0.5rem;  --s3: 0.75rem;  --s4: 1rem;
  --s5: 1.25rem;  --s6: 1.5rem;  --s8: 2rem;     --s10: 2.5rem;
  --s12: 3rem;    --s16: 4rem;   --s20: 5rem;    --s24: 6rem;

  /* Layout */
  --max-w: 1240px;
  --nav-h: 70px;

  /* Elevation */
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.1);
  --shadow-md: 0 4px 14px rgba(10,22,40,0.14);
  --shadow-lg: 0 8px 28px rgba(10,22,40,0.18);
  --shadow-xl: 0 16px 48px rgba(10,22,40,0.22);
  --shadow-orange: 0 6px 24px rgba(232,118,26,0.3);

  /* Radius */
  --r-sm: 6px;  --r-md: 12px;  --r-lg: 18px;  --r-xl: 28px;

  /* Motion */
  --ease: 0.22s ease;
  --ease-slow: 0.38s ease;
}

/* ==========================================================
   2. RESET
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html   { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body   { font-family: var(--font); color: var(--text-body); background: var(--white);
         line-height: 1.65; overflow-x: hidden;
         -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img    { display: block; max-width: 100%; height: auto; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
address { font-style: normal; }
em      { font-style: normal; }

/* SVG icon system */
.icon    { display: inline-block; width: 1em; height: 1em; flex-shrink: 0; vertical-align: middle; }
.icon-xs { width: 0.85rem; height: 0.85rem; }
.icon-sm { width: 1rem;    height: 1rem; }
.icon-lg { width: 1.5rem;  height: 1.5rem; }
.icon-xl { width: 2rem;    height: 2rem; }

/* ==========================================================
   3. SKIP LINK
   ========================================================== */
.skip-link {
  position: absolute; top: -100%; left: var(--s4);
  background: var(--orange); color: var(--white);
  padding: var(--s2) var(--s4); border-radius: var(--r-sm);
  font-weight: 700; font-size: .875rem; z-index: 9999;
  transition: top var(--ease);
}
.skip-link:focus { top: var(--s4); }

/* ==========================================================
   4. CONTAINER
   ========================================================== */
.container {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: var(--s5);
}
@media (min-width: 768px)  { .container { padding-inline: var(--s8); } }
@media (min-width: 1200px) { .container { padding-inline: var(--s6); } }

/* ==========================================================
   5. SHARED TYPOGRAPHY
   ========================================================== */
.section-label {
  display: inline-block;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: var(--s3);
}
.section-label--light { color: #ff9548; }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 2.9rem);
  font-weight: 900; color: var(--text);
  line-height: 1.1; letter-spacing: -.02em;
  margin-bottom: var(--s4);
}
.section-heading--light { color: var(--white); }

.section-subtext {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: var(--text-muted); max-width: 580px; line-height: 1.75;
}
.section-subtext--light { color: rgba(255,255,255,.65); }

.section-header { text-align: center; margin-bottom: var(--s12); }
.section-header .section-subtext { margin-inline: auto; }

/* ==========================================================
   6. BUTTONS
   ========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s2); padding: .7rem 1.4rem; border-radius: var(--r-sm);
  font-weight: 700; font-size: .875rem; letter-spacing: .02em;
  min-height: 48px; white-space: nowrap; cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--ease), color var(--ease),
              border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.btn-primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-primary:hover {
  background: #ca6510; border-color: #ca6510;
  transform: translateY(-2px); box-shadow: var(--shadow-orange);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255,255,255,.1); color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6);
}

.btn-outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.12); border-color: var(--white);
}

.btn-lg { padding: .85rem 1.8rem; font-size: .95rem; min-height: 52px; }

/* ==========================================================
   7. TOP BAR
   ========================================================== */
.top-bar {
  background: var(--navy);
  border-bottom: 1px solid var(--navy-border);
  display: none;
}
@media (min-width: 768px) { .top-bar { display: block; } }

.top-bar-inner {
  display: flex; align-items: center; gap: var(--s5);
  height: 36px; font-size: .72rem;
  font-weight: 600; letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.top-bar-item { display: flex; align-items: center; gap: var(--s2); white-space: nowrap; }
.top-bar-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.12); flex-shrink: 0;
}

/* ==========================================================
   8. HEADER / NAV
   ========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-border);
  transition: box-shadow var(--ease);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(10,22,40,.5);
}

.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); max-width: var(--max-w);
  margin-inline: auto; padding-inline: var(--s5);
  gap: var(--s4);
}
@media (min-width: 900px) { .nav-container { padding-inline: var(--s8); } }

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  /* Invert the black logo to white for the dark navy header.
     The gold becomes a light warm tone which still reads well. */
  filter: brightness(0) invert(1);
}

/* Desktop nav */
.nav-links { display: none; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 500;
  padding: var(--s2) var(--s3); border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: var(--white); background: rgba(255,255,255,.08);
}
.nav-cta { display: none; flex-shrink: 0; font-size: .82rem; }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 44px; height: 44px; padding: var(--s2);
  border-radius: var(--r-sm);
  transition: background var(--ease);
}
.hamburger:hover  { background: rgba(255,255,255,.08); }
.hamburger:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.ham-line {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
.hamburger.is-open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--navy-mid);
  padding: var(--s6) var(--s5) var(--s8);
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: transform var(--ease-slow), opacity var(--ease-slow), visibility var(--ease-slow);
  z-index: 999;
  border-top: 1px solid var(--navy-border);
  box-shadow: 0 12px 40px rgba(10,22,40,.6);
}
.mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }

.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; margin-bottom: var(--s6); }
.mobile-nav-link {
  display: flex; align-items: center; gap: var(--s3);
  color: rgba(255,255,255,.8); font-size: 1rem; font-weight: 500;
  padding: var(--s4) var(--s3);
  border-bottom: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.mobile-nav-link:hover { color: var(--white); background: rgba(255,255,255,.06); }
.mobile-cta { display: flex; width: 100%; justify-content: center; padding: var(--s4); }

.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(10,22,40,.65);
  z-index: 998; opacity: 0; visibility: hidden;
  transition: opacity var(--ease-slow), visibility var(--ease-slow);
  backdrop-filter: blur(3px);
}
.mobile-overlay.is-open { opacity: 1; visibility: visible; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta   { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-menu, .mobile-overlay { display: none !important; }
}

/* ==========================================================
   9. HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 900px);
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10,22,40,.92) 0%,
    rgba(10,22,40,.72) 52%,
    rgba(10,22,40,.42) 100%
  );
}

.hero-content {
  position: relative; z-index: 2;
  padding-top: var(--s16); padding-bottom: var(--s16);
  max-width: 680px;
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--s2);
  background: rgba(232,118,26,.12);
  border: 1px solid rgba(232,118,26,.35);
  border-radius: 100px;
  padding: var(--s2) var(--s4);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: #ff9a4a;
  margin-bottom: var(--s6);
  animation: fadeUp .7s ease both;
}
.badge-sep { color: var(--orange); opacity: .6; }

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7.5vw, 5rem);
  font-weight: 900; color: var(--white);
  line-height: 1.06; letter-spacing: -.025em;
  margin-bottom: var(--s5);
  animation: fadeUp .7s .1s ease both;
}
.headline-accent {
  color: var(--orange);
  display: block;
}

.hero-subtext {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.78); line-height: 1.75;
  max-width: 500px; margin-bottom: var(--s8);
  animation: fadeUp .7s .2s ease both;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: var(--s3);
  margin-bottom: var(--s8);
  animation: fadeUp .7s .3s ease both;
}

/* Trust line */
.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--s4);
  animation: fadeUp .7s .4s ease both;
}
.trust-item {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.55); letter-spacing: .04em;
}
.trust-item span { color: var(--green); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: var(--s8);
  left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:.4; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(1.2); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }

/* ==========================================================
   10. QUICK CARDS
   ========================================================== */
.quick-services {
  padding: var(--s12) 0;
  background: var(--white);
  position: relative; z-index: 2;
}
@media (min-width: 900px) { .quick-services { padding: var(--s16) 0; } }

.quick-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
@media (min-width: 500px) { .quick-cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .quick-cards-grid { grid-template-columns: repeat(4, 1fr); } }

.quick-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s5) var(--s5);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.quick-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,118,26,.3);
}

.qc-icon {
  width: 2.5rem; height: 2.5rem; margin-bottom: var(--s4);
  color: var(--orange);
  filter: drop-shadow(0 2px 4px rgba(232,118,26,.2));
}
.qc-icon svg { width: 100%; height: 100%; }

.qc-title {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 800;
  color: var(--text); margin-bottom: var(--s2); letter-spacing: .01em;
}
.qc-desc {
  font-size: .875rem; color: var(--text-muted); line-height: 1.65;
  flex: 1; margin-bottom: var(--s4);
}
.qc-link {
  display: inline-flex; align-items: center;
  font-size: .82rem; font-weight: 700;
  color: var(--orange); margin-top: auto;
  transition: gap var(--ease), color var(--ease);
}
.qc-link:hover { color: #c46010; }

/* ==========================================================
   11. ABOUT
   ========================================================== */
.about {
  padding: var(--s20) 0; background: var(--off-white);
  overflow: hidden;
}

.about-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s12); align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: var(--s16); }
}

.about-image-wrap { position: relative; }
.about-img {
  width: 100%; height: clamp(300px, 48vw, 500px);
  object-fit: cover; border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}

.about-location-card {
  position: absolute; bottom: var(--s5); left: var(--s5);
  background: var(--navy);
  border-radius: var(--r-md);
  padding: var(--s4) var(--s5);
  display: flex; align-items: flex-start; gap: var(--s3);
  box-shadow: var(--shadow-lg);
  max-width: 260px;
}
@media (max-width: 479px) {
  .about-location-card {
    position: relative; bottom: auto; left: auto;
    max-width: 100%; margin-top: var(--s5);
  }
}
.location-pin {
  width: 1.2rem; height: 1.2rem;
  flex-shrink: 0; margin-top: 2px;
  color: var(--orange);
}
.location-text { font-size: .8rem; color: rgba(255,255,255,.75); line-height: 1.65; }
.location-label {
  display: block; font-size: .62rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: var(--s1);
}

.about-tag {
  position: absolute; top: var(--s4); right: var(--s4);
  background: rgba(10,22,40,.85);
  border: 1px solid rgba(232,118,26,.3);
  border-radius: 100px;
  padding: var(--s2) var(--s4);
  font-size: .72rem; font-weight: 700;
  color: rgba(255,255,255,.8); letter-spacing: .05em;
  display: flex; align-items: center; gap: var(--s2);
  backdrop-filter: blur(4px);
}

/* About content */
.about-lead {
  font-size: 1.05rem; color: var(--text); line-height: 1.75;
  font-weight: 500; margin-bottom: var(--s4);
}
.about-body {
  font-size: .96rem; color: var(--text-body); line-height: 1.8;
  margin-bottom: var(--s4);
}

.about-pillars {
  display: flex; flex-wrap: wrap; gap: var(--s3); margin: var(--s6) 0;
}
.pillar {
  display: flex; align-items: center; gap: var(--s2);
  background: var(--white); border: 1px solid var(--light);
  border-radius: 100px; padding: var(--s2) var(--s4);
  font-size: .82rem; font-weight: 700; color: var(--text);
  box-shadow: var(--shadow-sm);
}
.pillar-icon { font-size: 1rem; color: var(--orange); }

/* ==========================================================
   12. SERVICES
   ========================================================== */
.services { padding: var(--s20) 0; background: var(--white); }

.services-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--s6); margin-bottom: var(--s12);
}
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1.5px solid var(--light);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  background: var(--white);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(232,118,26,.25);
}

.service-img-wrap {
  position: relative;
  height: clamp(180px, 22vw, 230px);
  overflow: hidden;
}
.service-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .65s ease;
}
.service-card:hover .service-img { transform: scale(1.05); }
.service-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,.65) 100%);
}
/* Service badge SVG icon */
.service-badge {
  position: absolute; bottom: var(--s3); right: var(--s4);
  width: 2rem; height: 2rem;
  color: white;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.4));
}
.service-badge svg { width: 100%; height: 100%; }

.service-body { padding: var(--s5); flex: 1; display: flex; flex-direction: column; }
.service-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800;
  color: var(--text); margin-bottom: var(--s2);
}
.service-desc {
  font-size: .875rem; color: var(--text-muted);
  line-height: 1.7; flex: 1; margin-bottom: var(--s4);
}
.service-link {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: .85rem; font-weight: 700; color: var(--orange);
  transition: color var(--ease);
  margin-top: auto;
}
.service-link:hover { color: #c46010; }

/* Services CTA block */
.services-cta {
  text-align: center;
  padding: var(--s12) var(--s6);
  background: linear-gradient(135deg, var(--off-white) 0%, #ebeef3 100%);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--light);
}
.services-cta-text {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 800;
  color: var(--text); margin-bottom: var(--s2);
}
.services-cta-sub {
  font-size: .95rem; color: var(--text-muted);
  margin-bottom: var(--s6);
}

/* ==========================================================
   13. WHY CHOOSE US
   ========================================================== */
.why-us {
  padding: var(--s20) 0; background: var(--navy);
  position: relative; overflow: hidden;
}
.why-us::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,118,26,.07) 0%, transparent 65%);
  pointer-events: none;
}
.why-us::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232,118,26,.05) 0%, transparent 65%);
  pointer-events: none;
}

.why-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s5);
}
@media (min-width: 600px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg); padding: var(--s7, 1.75rem) var(--s6);
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
}
.why-card:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(232,118,26,.25);
  transform: translateY(-4px);
}

.why-icon {
  width: 2.5rem; height: 2.5rem; margin-bottom: var(--s4);
  color: var(--orange);
  filter: drop-shadow(0 2px 8px rgba(232,118,26,.3));
}
.why-icon svg { width: 100%; height: 100%; }
.why-title {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 800;
  color: var(--white); margin-bottom: var(--s3);
}
.why-desc { font-size: .875rem; color: rgba(255,255,255,.58); line-height: 1.72; }

.why-statement {
  margin-top: var(--s12);
  text-align: center;
}
.why-quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 700; font-style: italic;
  color: rgba(255,255,255,.35);
  max-width: 620px; margin-inline: auto;
  line-height: 1.4;
  border-left: none;
}

/* ==========================================================
   14. HOW IT WORKS
   ========================================================== */
.how-it-works { padding: var(--s20) 0; background: var(--off-white); }

.hiw-timeline { display: flex; flex-direction: column; gap: 0; }

.hiw-step { display: flex; gap: var(--s5); }

.hiw-num-wrap {
  display: flex; flex-direction: column;
  align-items: center; flex-shrink: 0; width: 56px;
}
.hiw-num {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--navy); color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 900;
  border-radius: 50%;
  border: 2px solid var(--orange);
  flex-shrink: 0; position: relative; z-index: 1;
  letter-spacing: .02em;
}
.step-line {
  flex: 1; width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(232,118,26,.1));
  margin-block: var(--s2);
  min-height: var(--s10);
}
.hiw-step:last-child .step-line { display: none; }

.hiw-content { padding-top: var(--s2); padding-bottom: var(--s10); }
.hiw-step:last-child .hiw-content { padding-bottom: 0; }

.hiw-icon { width: 2rem; height: 2rem; margin-bottom: var(--s3); color: var(--orange); }
.hiw-icon svg { width: 100%; height: 100%; }
.hiw-title {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 800; color: var(--text);
  margin-bottom: var(--s2);
}
.hiw-desc { font-size: .9rem; color: var(--text-muted); line-height: 1.72; max-width: 360px; }

/* Desktop: horizontal */
@media (min-width: 900px) {
  .hiw-timeline { flex-direction: row; align-items: flex-start; gap: 0; }

  .hiw-step {
    flex: 1; flex-direction: column; align-items: center;
    text-align: center; padding-right: var(--s4); padding-bottom: 0;
  }
  .hiw-step:last-child { padding-right: 0; }

  .hiw-num-wrap { flex-direction: row; width: 100%; align-items: center; margin-bottom: var(--s6); }
  .hiw-num { flex-shrink: 0; }

  .step-line {
    flex: 1; width: auto; height: 2px; min-height: unset;
    background: linear-gradient(to right, var(--orange), rgba(232,118,26,.15));
    margin: 0; margin-left: var(--s2);
  }

  .hiw-content { padding-top: 0; padding-bottom: 0; text-align: center; }
  .hiw-content { display: flex; flex-direction: column; align-items: center; }
  .hiw-desc { text-align: center; max-width: 200px; }
}

.hiw-cta { text-align: center; margin-top: var(--s12); }

/* ==========================================================
   15. SERVICE AREA
   ========================================================== */
.service-area { padding: var(--s20) 0; background: var(--white); }

.area-grid { display: grid; grid-template-columns: 1fr; gap: var(--s12); align-items: center; }
@media (min-width: 900px) { .area-grid { grid-template-columns: 1fr 1fr; gap: var(--s14, 3.5rem); } }

.area-body { font-size: .975rem; color: var(--text-body); line-height: 1.8; margin-bottom: var(--s4); }
.area-note {
  font-size: .85rem; color: var(--text-muted);
  padding: var(--s3) var(--s4); margin-bottom: var(--s6);
  border-left: 3px solid var(--orange);
  background: var(--orange-subtle);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  display: flex; align-items: flex-start; gap: var(--s2); line-height: 1.65;
}

.provinces-grid { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s8); }
.province-tag {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: var(--s2) var(--s3);
  background: var(--orange-subtle);
  border: 1px solid rgba(232,118,26,.22);
  border-radius: 100px;
  font-size: .78rem; font-weight: 700; color: var(--text);
  transition: background var(--ease), border-color var(--ease);
}
.province-tag:hover {
  background: rgba(232,118,26,.15); border-color: var(--orange);
}

/* Map */
.map-container {
  background: var(--navy-mid);
  border-radius: var(--r-xl); padding: var(--s8);
  border: 1px solid var(--navy-border);
  box-shadow: var(--shadow-lg);
}
.map-heading {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: var(--s2);
  margin-bottom: var(--s5);
}
.sa-map { width: 100%; height: auto; max-width: 460px; display: block; margin-inline: auto; }

.map-legend { border-top: 1px solid var(--navy-border); padding-top: var(--s4); display: flex; flex-direction: column; gap: var(--s2); }
.legend-item { display: flex; align-items: center; gap: var(--s2); font-size: .78rem; color: rgba(255,255,255,.5); }
.legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: var(--navy-card); border: 1.5px solid var(--orange); flex-shrink: 0; }
.legend-dot--active { background: var(--orange); border-color: var(--white); }

/* ==========================================================
   16. CTA BANNER
   ========================================================== */
.cta-banner {
  position: relative;
  padding: clamp(var(--s16), 11vw, var(--s24)) 0;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    130deg,
    rgba(10,22,40,.94) 0%,
    rgba(10,22,40,.82) 55%,
    rgba(232,118,26,.12) 100%
  );
}

.cta-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 680px; margin-inline: auto;
}
.cta-icon {
  width: 4rem; height: 4rem; margin-bottom: var(--s4);
  color: var(--orange);
  margin-inline: auto;
  filter: drop-shadow(0 2px 12px rgba(232,118,26,.35));
}
.cta-icon svg { width: 100%; height: 100%; }
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 3.8rem);
  font-weight: 900; color: var(--white);
  line-height: 1.06; letter-spacing: -.025em;
  margin-bottom: var(--s4);
}
.cta-subtext {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.75); line-height: 1.75;
  margin-bottom: var(--s8);
}
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--s3); justify-content: center; }

/* ==========================================================
   17. CONTACT
   ========================================================== */
.contact { padding: var(--s20) 0; background: var(--off-white); }

.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s10);
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 320px 1fr; gap: var(--s12); } }

/* Info side */
.contact-info { display: flex; flex-direction: column; gap: var(--s5); }

.info-block { display: flex; gap: var(--s3); align-items: flex-start; }
.info-icon {
  width: 1.4rem; height: 1.4rem;
  flex-shrink: 0; margin-top: 2px;
  color: var(--orange);
}
.info-icon svg { width: 100%; height: 100%; }
.info-label {
  font-size: .68rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: var(--s1);
}
.info-value { font-size: .9rem; color: var(--text-body); line-height: 1.75; }
.info-placeholder { color: var(--text-muted); font-style: italic; }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: var(--s3);
  padding: var(--s3) var(--s5);
  background: var(--whatsapp); color: var(--white);
  border-radius: var(--r-sm);
  font-weight: 700; font-size: .9rem;
  transition: background var(--ease), transform var(--ease);
  min-height: 48px; width: fit-content;
}
.whatsapp-btn:hover { background: #1cba58; transform: translateY(-1px); }
.whatsapp-btn:focus-visible { outline: 3px solid var(--whatsapp); outline-offset: 3px; }

/* Form side */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl); padding: var(--s8);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--light);
}

.contact-form { display: flex; flex-direction: column; gap: var(--s5); }

.form-row { display: grid; grid-template-columns: 1fr; gap: var(--s5); }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: var(--s2); }
.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: .8rem; font-weight: 700;
  color: var(--text); letter-spacing: .02em;
}
.req { color: var(--orange); font-size: .75rem; margin-left: 1px; }

.form-input {
  width: 100%; padding: .72rem 1rem;
  background: var(--off-white); border: 1.5px solid var(--light);
  border-radius: var(--r-sm);
  font-size: .9rem; color: var(--text);
  min-height: 48px;
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  -webkit-appearance: none; appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:hover { border-color: var(--mid-grey); }
.form-input:focus {
  outline: none; border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,118,26,.12);
}
.form-input.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%238a99aa' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
}

.form-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }

.form-error { font-size: .77rem; color: #ef4444; font-weight: 600; min-height: 18px; }

.form-submit-row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: var(--s4);
}
.form-required-note { font-size: .77rem; color: var(--text-muted); }

.form-submit-btn { position: relative; overflow: hidden; min-width: 200px; }
.btn-loader {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
.form-submit-btn.is-loading .btn-text { opacity: 0; }
.form-submit-btn.is-loading .btn-loader { display: block; position: absolute; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: flex; align-items: center; gap: var(--s3);
  padding: var(--s4) var(--s5);
  background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25);
  border-radius: var(--r-md);
  font-size: .9rem; color: #15803d; font-weight: 600;
}
.form-success[hidden] { display: none; }

/* ==========================================================
   18. FOOTER
   ========================================================== */
.site-footer { background: var(--navy); }

.footer-top {
  padding: var(--s16) 0 var(--s12);
  border-bottom: 1px solid var(--navy-border);
}

.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s10);
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8) var(--s10); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: var(--s8) var(--s8); } }

.footer-logo { margin-bottom: var(--s4); }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.45); font-style: italic; margin-bottom: var(--s4); line-height: 1.6; }
.footer-address { font-size: .82rem; color: rgba(255,255,255,.42); line-height: 1.85; display: flex; align-items: flex-start; gap: var(--s2); }
.footer-reg-tag { font-size: .72rem; color: rgba(255,255,255,.25); display: flex; align-items: center; gap: var(--s2); margin-top: var(--s3); }

.footer-nav-title {
  font-size: .65rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: var(--s4);
}
.footer-nav ul { display: flex; flex-direction: column; gap: var(--s2); }
.footer-link {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: .875rem; color: rgba(255,255,255,.52);
  padding: 2px 0;
  transition: color var(--ease);
}
.footer-link:hover { color: #ff9a4a; }

.footer-contact { display: flex; flex-direction: column; gap: var(--s3); }
.footer-contact-item {
  display: flex; align-items: center; gap: var(--s2);
  font-size: .82rem; color: rgba(255,255,255,.52);
}
.footer-placeholder { color: rgba(255,255,255,.28); font-style: italic; }

.footer-quote-btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  margin-top: var(--s3); padding: var(--s3) var(--s5);
  background: var(--orange); color: var(--white);
  border-radius: var(--r-sm);
  font-size: .82rem; font-weight: 700;
  transition: background var(--ease), transform var(--ease);
  min-height: 44px; width: fit-content;
}
.footer-quote-btn:hover { background: #c46010; transform: translateY(-1px); }

.footer-bottom { padding: var(--s5) 0; }
.footer-bottom-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: var(--s3);
}
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.32); }
.footer-made { font-size: .72rem; color: rgba(255,255,255,.2); display: flex; align-items: center; gap: var(--s2); }

/* ==========================================================
   19. BACK TO TOP
   ========================================================== */
.back-to-top {
  position: fixed; bottom: var(--s6); right: var(--s5);
  width: 48px; height: 48px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(232,118,26,.45);
  opacity: 0; visibility: hidden;
  transform: translateY(14px);
  transition: opacity var(--ease), visibility var(--ease),
              transform var(--ease), background var(--ease);
  z-index: 500;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #c46010; }
.back-to-top:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }

/* ==========================================================
   20. SCROLL REVEAL
   ========================================================== */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .58s ease, transform .58s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ==========================================================
   21. FOCUS & A11Y
   ========================================================== */
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }

/* ==========================================================
   22. RESPONSIVE — mobile refinements
   ========================================================== */
@media (max-width: 479px) {
  :root { --nav-h: 62px; }

  .hero-actions, .cta-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; justify-content: center; }

  .form-submit-row { flex-direction: column; align-items: stretch; }
  .form-submit-btn { width: 100%; }
  .form-row        { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: var(--s5); border-radius: var(--r-lg); }

  .services-cta-text { font-size: 1.25rem; }
  .hiw-timeline { overflow: hidden; }

  .cta-actions { align-items: center; }
}

/* ==========================================================
   23. OVERFLOW GUARD
   ========================================================== */
section, footer, header, main { max-width: 100vw; overflow-x: hidden; }
.hero-bg, .cta-bg { overflow: hidden; }

/* ==========================================================
   24. PRINT
   ========================================================== */
@media print {
  .site-header, .top-bar, .back-to-top, .hero-scroll,
  .hamburger, .mobile-menu, .mobile-overlay { display: none !important; }
  body { color: #000; background: #fff; }
}

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

/* ==========================================================
   26. SVG ICON HELPERS
   ========================================================== */

/* Trust check marks */
.trust-check { color: var(--green); }

/* Services CTA truck icon */
.services-cta-icon {
  width: 1.5rem; height: 1.5rem;
  vertical-align: middle; margin-right: var(--s2);
  color: var(--orange);
}

/* Form label icons */
.label-icon {
  width: 0.8rem; height: 0.8rem;
  color: var(--orange);
  margin-right: 3px;
  vertical-align: middle;
}

/* Province tag with star highlight */
.province-tag--primary {
  background: rgba(232,118,26,.18);
  border-color: rgba(232,118,26,.45);
  color: var(--orange);
}
.province-tag--primary svg { color: var(--orange); }

/* Top bar icons */
.top-bar-item .icon { color: var(--orange); opacity: 0.8; }

/* Mobile nav icons */
.mobile-nav-link .icon { color: var(--orange); }

/* ==========================================================
   27. WORDPRESS-SPECIFIC OVERRIDES
   ========================================================== */

/* Remove default WP margin on body */
.wp-site-blocks { padding: 0 !important; }

/* Inner pages (page.php / 404.php) */
.inner-page .entry-content {
  font-size: 1rem; color: var(--text-body); line-height: 1.8;
  max-width: 720px;
}
.inner-page .entry-content h2,
.inner-page .entry-content h3 { color: var(--text); margin: 1.5em 0 .5em; }
.inner-page .entry-content p   { margin-bottom: 1rem; }
.inner-page .entry-content a   { color: var(--orange); text-decoration: underline; }
.inner-page .entry-content a:hover { color: #c46010; }

/* Archive cards */
.archive-card { background: var(--white); border: 1.5px solid var(--light); border-radius: var(--r-lg); overflow: hidden; }
.archive-card-img { width: 100%; height: 200px; object-fit: cover; }
.archive-card-body { padding: var(--s5); }
.archive-card-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--text); margin-bottom: var(--s2); }
.archive-card-title a:hover { color: var(--orange); }
.archive-card-excerpt { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* Footer contact link */
.footer-contact-link { color: rgba(255,255,255,.52); transition: color .22s ease; }
.footer-contact-link:hover { color: #ff9a4a; }

/* WP admin bar offset for sticky header */
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* Align wide / full for block editor */
.alignwide  { max-width: 1100px; margin-inline: auto; }
.alignfull  { max-width: 100%; margin-inline: 0; }
