/* ============================================================
   Expo Freight Services Ltd — Stylesheet
   Brand: Forest Green #1B6B2F | Red #C0392B | White | Dark Navy
   ============================================================ */

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

:root {
  --green:        #1B6B2F;
  --green-mid:    #2E8B57;
  --green-light:  #3aad5e;
  --red:          #C0392B;
  --red-dark:     #962d22;
  --white:        #FFFFFF;
  --light:        #F5F7F5;
  --dark:         #111C14;
  --gray:         #5A6A5E;
  --border:       #dde8df;
  --radius:       8px;
  --shadow:       0 4px 24px rgba(27,107,47,0.10);
  --shadow-lg:    0 12px 40px rgba(27,107,47,0.16);
  --transition:   0.3s ease;
  /* Robust font stack — works without Google Fonts */
  --font-head: 'Montserrat', 'Segoe UI', 'Trebuchet MS', Arial, sans-serif;
  --font-body: 'Open Sans', 'Segoe UI', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Google Fonts (non-blocking fallback) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;600&display=swap');

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem,5vw,3.2rem); }
h2 { font-size: clamp(1.5rem,3.5vw,2.3rem); }
h3 { font-size: clamp(1.05rem,2vw,1.35rem); }
p  { color: var(--gray); }

/* ---------- Layout ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section--light { background: var(--light); }
.section--dark  { background: var(--green); color: var(--white); }

.text-center { text-align: center; }
.text-center .section-sub { margin-left:auto; margin-right:auto; }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section--dark .section-label { color: #7fffa0; }
.section-title  { margin-bottom: 14px; }
.section-sub    { font-size: 1.02rem; max-width: 580px; margin-bottom: 44px; }

.gold-bar { width: 52px; height: 4px; background: var(--red); border-radius:2px; margin-bottom: 22px; }
.gold-bar.center { margin-left:auto; margin-right:auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.35);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.header--transparent { background: transparent; }
.header--solid {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 48px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .n1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  line-height: 1.15;
}
.nav-logo-text .n2 {
  font-family: var(--font-head);
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; padding: 9px 20px; font-size: 0.82rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span { display: block; width: 25px; height: 2px; background: var(--white); border-radius:2px; transition: var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Animated gradient background — no external images needed */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #0a2e12 0%,
    #1B6B2F 35%,
    #1a4a20 60%,
    #0d1f10 100%
  );
  animation: heroBgShift 12s ease infinite alternate;
}
@keyframes heroBgShift {
  0%   { filter: brightness(1) hue-rotate(0deg); }
  100% { filter: brightness(1.1) hue-rotate(5deg); }
}

/* Floating geometric shapes for depth */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,0.18) 0%, transparent 70%);
  top: -200px; right: -150px;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.hero-shape-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(58,173,94,0.2) 0%, transparent 70%);
  top: 30%; left: 55%;
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
}
.hero-inner { max-width: 760px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.18);
  border: 1px solid rgba(192,57,43,0.45);
  border-radius: 100px;
  padding: 6px 18px;
  color: #ff9d95;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff9d95;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title { color: var(--white); margin-bottom: 18px; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.hero-title span { color: #7fffa0; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 36px; max-width: 600px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow { animation: bounce 1.8s ease infinite; }
@keyframes bounce {
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(6px); }
}

/* ---------- STATS STRIP ---------- */
.stats-strip {
  background: var(--dark);
  padding: 44px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  text-align: center;
  divide-x: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ---------- VALUES ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.val-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--green);
}
.val-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.val-icon {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.val-icon svg { width: 30px; height: 30px; fill: var(--white); }
.val-card h3 { color: var(--green); margin-bottom: 10px; }

/* ---------- MOTTO ---------- */
.motto-section {
  background: linear-gradient(135deg, var(--green) 0%, #145222 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.motto-section::before {
  content: '\201C';
  position: absolute;
  top: -60px; left: 10px;
  font-size: 30rem;
  font-family: Georgia, serif;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.motto-text {
  font-family: var(--font-head);
  font-size: clamp(1.2rem,2.5vw,1.8rem);
  font-weight: 700;
  color: var(--white);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 16px;
}
.motto-credit { color: var(--green-light); font-family: var(--font-head); font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; }

/* ---------- SERVICES PREVIEW ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.svc-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--green);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card-icon {
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  padding: 28px 24px 20px;
  display: flex; align-items: center; gap: 14px;
}
.svc-card-icon svg { width: 36px; height: 36px; fill: var(--white); flex-shrink:0; }
.svc-card-icon h3 { color: var(--white); font-size: 1.05rem; }
.svc-card-body { padding: 22px 24px; }
.svc-card-body p { font-size: 0.9rem; margin-bottom: 14px; }
.svc-link {
  color: var(--red);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.svc-link:hover { gap: 12px; }

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1B6B2F 100%);
  padding: 140px 0 72px;
  color: var(--white);
}
.page-hero p { color: rgba(255,255,255,0.72); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb span { color: var(--green-light); }

/* ---------- ABOUT PAGE ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
/* Use gradient as image placeholder since no photo available */
.about-visual {
  height: 400px;
  background: linear-gradient(135deg, #1B6B2F 0%, #2E8B57 50%, #145222 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-head);
}
.about-visual .big-year {
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.about-visual .est-label {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.about-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  padding: 12px 18px;
  border-radius: 10px;
  line-height: 1.25;
  text-align: center;
}
.about-badge strong { font-size: 1.8rem; display: block; }
.about-badge span { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  padding: 32px 28px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-left: 5px solid var(--green);
}
.mv-card h3 { color: var(--green); margin-bottom: 12px; }
.mv-card p { font-size: 0.92rem; }

.team-block {
  background: var(--dark);
  border-radius: 16px;
  padding: 52px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.team-block p { color: rgba(255,255,255,0.75); }
.team-stats-g { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.t-stat { text-align: center; }
.t-stat .n { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--green-light); line-height: 1; }
.t-stat .l { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 5px; }

/* ---------- SERVICES PAGE ---------- */
.svc-detail-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-detail-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 22px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
  border-left: 4px solid var(--green);
}
.svc-detail-card:hover { transform: translateY(-4px); }
.svc-d-icon {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-d-icon svg { width: 26px; height: 26px; fill: var(--white); }
.svc-detail-card h3 { color: var(--green); margin-bottom: 10px; font-size: 1.05rem; }
.svc-detail-card p { font-size: 0.88rem; margin-bottom: 12px; }
.svc-detail-card ul li {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 4px 0 4px 16px;
  position: relative;
}
.svc-detail-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.consulting-box {
  background: linear-gradient(135deg, var(--green), #145222);
  border-radius: 14px;
  padding: 48px 44px;
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
  color: var(--white);
}
.consulting-box p { color: rgba(255,255,255,0.8); margin-top: 10px; }

/* ---------- PARTNERS PAGE ---------- */
.partners-g { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.partner-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--green);
}
.p-abbr {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.p-fullname { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }
.p-desc { font-size: 0.78rem; color: var(--gray); margin-top: 10px; line-height: 1.5; }

/* ---------- CONTACT PAGE ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 52px; align-items: start; }
.contact-info-col {}
.c-item { display: flex; gap: 14px; margin-bottom: 26px; align-items: flex-start; }
.c-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 22px; height: 22px; fill: var(--white); }
.c-body strong { display: block; font-family: var(--font-head); color: var(--green); font-size: 0.88rem; margin-bottom: 4px; }
.c-body span, .c-body a { font-size: 0.9rem; color: var(--gray); display: block; line-height: 1.65; }
.c-body a:hover { color: var(--red); }

.quote-form {
  background: var(--white);
  border-radius: 14px;
  padding: 44px 38px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--green);
}
.quote-form h3 { color: var(--green); margin-bottom: 6px; }
.quote-form .fsub { margin-bottom: 28px; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; color: var(--green); margin-bottom: 7px; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark);
  background: var(--light);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,107,47,0.1);
  background: var(--white);
}
.fg textarea { resize: vertical; min-height: 115px; }
.form-btn { width: 100%; padding: 15px; font-size: 0.95rem; margin-top: 6px; border: none; cursor: pointer; }
.form-success { display: none; text-align: center; padding: 28px; }
.form-success .ok { font-size: 3rem; margin-bottom: 14px; }

/* ---------- FOOTER ---------- */
.footer { background: #080e09; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; margin-bottom: 44px; }
.fbrand .fb-name { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; color: var(--white); }
.fbrand .fb-sub { font-family: var(--font-head); font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; color: var(--green-light); margin-bottom: 14px; }
.fbrand img { height: 44px; width: auto; margin-bottom: 4px; }
.fbrand p { font-size: 0.86rem; line-height: 1.7; }
.fcol h4 { font-family: var(--font-head); font-size: 0.82rem; color: var(--white); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.fcol ul li { margin-bottom: 9px; }
.fcol ul li a { font-size: 0.86rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.fcol ul li a:hover { color: var(--green-light); }
.fcontact p { font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-bottom: 7px; line-height: 1.6; }
.fcontact a { color: rgba(255,255,255,0.6); }
.fcontact a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green-light); }

/* ---------- CTA STRIP ---------- */
.cta-strip { background: var(--red); padding: 56px 0; }
.cta-strip h2 { color: var(--white); margin-bottom: 10px; }
.cta-strip p { color: rgba(255,255,255,0.85); margin-bottom: 30px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ---------- COMPLIANCE BOX ---------- */
.compliance-row { display: grid; gap: 14px; }
.comp-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex; align-items: center; gap: 14px;
}
.comp-item strong { display: block; color: var(--white); font-family: var(--font-head); font-size: 0.88rem; margin-bottom: 3px; }
.comp-item span { color: rgba(255,255,255,0.6); font-size: 0.82rem; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid { gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .partners-g { grid-template-columns: repeat(2,1fr); }
  .team-block { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; position: fixed; top: 76px; left: 0; right: 0; background: var(--dark); flex-direction: column; padding: 28px 20px; gap: 20px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .svc-detail-grid { grid-template-columns: 1fr; }
  .consulting-box { grid-template-columns: 1fr; gap: 24px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-scroll-hint { display: none; }
  .partners-g { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-stats-g { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   UPGRADE PACK — v2.0
   Ken Burns Hero · Partner Carousel · Timeline · WhatsApp CTA
   ============================================================ */

/* ---------- KEN BURNS HERO UPGRADE ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; }

.kb-slides { position: absolute; inset: 0; }
.kb-slide {
  position: absolute; inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1.4s ease;
  animation: kbZoom 8s ease-in-out infinite alternate;
}
.kb-slide.active { opacity: 1; }

/* Each slide gets a slightly different zoom direction for variety */
.kb-slide:nth-child(1) { animation-name: kbZoom1; }
.kb-slide:nth-child(2) { animation-name: kbZoom2; }
.kb-slide:nth-child(3) { animation-name: kbZoom3; }
.kb-slide:nth-child(4) { animation-name: kbZoom4; }

@keyframes kbZoom1 { from { transform: scale(1)    translate(0,0);      } to { transform: scale(1.14) translate(-1.5%,-1%); } }
@keyframes kbZoom2 { from { transform: scale(1.08) translate(-1%,0);    } to { transform: scale(1)    translate(1%, 1%);   } }
@keyframes kbZoom3 { from { transform: scale(1)    translate(1%, 0.5%); } to { transform: scale(1.12) translate(-0.5%,-1%); } }
@keyframes kbZoom4 { from { transform: scale(1.06) translate(0,-1%);    } to { transform: scale(1)    translate(1%, 0.5%); } }

/* Rich overlay: dark bottom for text readability, green tint top */
.kb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,30,14,0.82) 0%,
    rgba(20,60,28,0.65) 40%,
    rgba(10,20,12,0.88) 100%
  );
  z-index: 1;
}

/* Hero slide dot controls */
.kb-dots {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex; gap: 10px;
}
.kb-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.kb-dot.active { background: var(--red); transform: scale(1.35); }

/* Slide progress bar */
.kb-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--red);
  width: 0;
  z-index: 20;
  transition: width linear;
}

/* Updated hero content z-index */
.hero-content { z-index: 10; }

/* Hero badge upgrade */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.5);
  border-radius: 100px;
  padding: 6px 18px;
  color: #ffb3ad;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #ff9d95;
  animation: blink 2s infinite;
  flex-shrink: 0;
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
  color: var(--white);
}
.wa-float svg { width: 24px; height: 24px; fill: var(--white); flex-shrink: 0; }
.wa-float .wa-label { white-space: nowrap; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.70); }
}
@media (max-width: 480px) {
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; bottom: 20px; right: 20px; }
}

/* ---------- PARTNER LOGO CAROUSEL ---------- */
.carousel-section {
  background: var(--light);
  padding: 44px 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.carousel-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}
.carousel-track-wrap {
  position: relative;
  overflow: hidden;
  /* Fade edges */
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.carousel-track {
  display: flex;
  gap: 0;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-right: 1px solid var(--border);
  min-width: 160px;
  transition: filter var(--transition), transform var(--transition);
  filter: grayscale(1) opacity(0.55);
}
.carousel-item:hover { filter: grayscale(0) opacity(1); transform: translateY(-2px); }
.carousel-abbr {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.carousel-name {
  font-size: 0.68rem;
  color: var(--gray);
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 5px;
  max-width: 120px;
  line-height: 1.3;
}

/* ---------- HOMEPAGE TIMELINE ---------- */
.timeline-section { padding: 80px 0; background: var(--white); }
.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 56px;
}
/* Horizontal connector line */
.timeline-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(10% + 12px);
  right: calc(10% + 12px);
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--red));
  z-index: 0;
}
.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0 8px;
}
.tl-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--green);
  z-index: 1;
  flex-shrink: 0;
  margin-bottom: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tl-item:last-child .tl-dot { background: var(--red); box-shadow: 0 0 0 3px var(--red); }
.tl-item:hover .tl-dot { transform: scale(1.3); }
.tl-year {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}
.tl-item:last-child .tl-year { color: var(--red); }
.tl-title {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 6px;
}
.tl-desc {
  font-size: 0.78rem;
  color: var(--gray);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .timeline-track {
    grid-template-columns: 1fr;
    padding-left: 32px;
  }
  .timeline-track::before {
    top: 0; bottom: 0;
    left: 9px; right: auto;
    width: 2px; height: auto;
    background: linear-gradient(180deg, var(--green), var(--red));
  }
  .tl-item { flex-direction: row; align-items: flex-start; gap: 20px; padding: 0 0 28px 0; }
  .tl-dot { flex-shrink: 0; margin-bottom: 0; margin-top: 2px; }
  .tl-title, .tl-desc, .tl-year { text-align: left; }
}

/* ---------- UPGRADED SERVICE CARDS ---------- */
.svc-card-v2 {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid transparent;
  position: relative;
}
.svc-card-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,107,47,0.04), rgba(192,57,43,0.04));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.svc-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(27,107,47,0.18);
  border-bottom-color: var(--green);
}
.svc-card-v2:hover::before { opacity: 1; }
.svc-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}
.svc-card-v2:hover .svc-icon-wrap { transform: scale(1.1) rotate(-4deg); }
.svc-icon-wrap svg { width: 30px; height: 30px; fill: var(--white); }
.svc-card-v2 h3 { color: var(--green); font-size: 1.05rem; margin-bottom: 10px; }
.svc-card-v2 p  { font-size: 0.88rem; margin-bottom: 14px; }

/* ---------- TRUST SIGNAL STRIP (homepage) ---------- */
.trust-strip {
  background: var(--dark);
  padding: 28px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  border-right: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-head);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { width: 16px; height: 16px; fill: var(--green-light); flex-shrink: 0; }
@media (max-width: 600px) {
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; justify-content: center; }
}

/* ---------- SECTION TRANSITION DIVIDER ---------- */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }
