/* ============================================================
   GUARDAN Auto Warranty — Cardan-inspired theme
   Colors matched to the reference layout
   ============================================================ */
:root {
  --orange: #f26522;
  --orange-d: #d45418;
  --navy: #0e2744;
  --navy-2: #123250;
  --navy-d: #081c33;
  --navy-mid: #163a5c;
  --heading: #1a2d42;
  --text: #5d6d7e;
  --muted: #8a97a6;
  --line: #e6ebf0;
  --bg: #f4f7fa;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(14, 39, 68, 0.12);
  --radius: 4px;
  --container: 1200px;
  --font: "Barlow", "Segoe UI", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: 0.25s; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - 40px, 1320px); margin-inline: auto; }

h1, h2, h3, h4, h5 { font-weight: 700; color: var(--heading); line-height: 1.2; }
.orange { color: var(--orange); }
.white { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 2px solid var(--orange);
  border-radius: 3px;
  cursor: pointer;
  transition: 0.25s;
}
.btn:hover { background: var(--orange-d); border-color: var(--orange-d); color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--orange); border-color: var(--orange); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-d);
  color: #c5d0dc;
  font-size: 13px;
  padding: 9px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar span { display: inline-flex; align-items: center; gap: 8px; }
.topbar i { color: var(--orange); }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a:hover { color: var(--orange); }

/* ---------- Header ---------- */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(14, 39, 68, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
}
.brand { order: 1; }
.nav { order: 2; flex: 1; justify-content: center; }
.header-tools { order: 3; margin-left: 0; }
.hamburger { order: 4; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hamburger { flex-shrink: 0; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong {
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--navy);
  font-weight: 800;
}
.brand-text small {
  font-size: 10px;
  letter-spacing: 2.2px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 16px; }
.nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--heading);
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
}
.nav a:hover,
.nav a.active { color: var(--orange); }
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--orange);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  margin-left: auto;
}
.tool-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  color: var(--heading);
  font-size: 16px;
  border-radius: 4px;
}
.tool-btn:hover { color: var(--orange); }
.expert-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-left: 1px solid var(--line);
  margin-left: 6px;
}
.expert-chip i {
  width: 38px; height: 38px;
  background: var(--bg);
  color: var(--orange);
  display: grid; place-items: center;
  border-radius: 50%;
}
.expert-chip b { display: block; font-size: 11px; color: var(--muted); font-weight: 600; }
.expert-chip span { font-size: 13px; font-weight: 700; color: var(--navy); }
button.hamburger {
  -webkit-appearance: none;
  appearance: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background-color: var(--orange) !important;
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 18px;
  margin-left: 8px;
  display: grid;
  place-items: center;
}

.search-drop {
  display: none;
  position: absolute;
  right: 20px;
  top: 88px;
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow);
  border-radius: 4px;
  z-index: 20;
}
.search-drop.open { display: flex; gap: 8px; }
.search-drop input {
  border: 1px solid var(--line);
  padding: 10px 12px;
  width: 240px;
  outline: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8, 28, 51, 0.78) 0%, rgba(8, 28, 51, 0.45) 55%, rgba(8, 28, 51, 0.25) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 90px 0 140px; }
.eyebrow {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero p { color: #dbe4ee; font-size: 18px; max-width: 560px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.page-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  margin-bottom: -40px;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(8, 28, 51, 0.72);
}
.page-hero-content { position: relative; z-index: 2; padding: 70px 0 100px; text-align: center; width: 100%; }
.page-hero h1 { color: #fff; font-size: 48px; font-weight: 800; margin-bottom: 10px; }
.breadcrumb { color: #c9d4e0; font-size: 14px; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); margin: 0 6px; }

/* ---------- Feature trio ---------- */
.feature-trio {
  position: relative;
  z-index: 3;
  margin-top: -70px;
  margin-bottom: 40px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  box-shadow: var(--shadow);
}
.feature-item {
  padding: 36px 32px;
  display: flex;
  gap: 18px;
  border-right: 1px solid var(--line);
}
.feature-item:last-child { border-right: 0; }
.feature-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--bg);
  color: var(--orange);
  display: grid; place-items: center;
  font-size: 26px;
  border-radius: 4px;
}
.feature-item h3 { font-size: 20px; margin-bottom: 8px; }
.feature-item p { font-size: 14.5px; }
.feature-item a { color: var(--orange); font-weight: 700; font-size: 13px; letter-spacing: 0.4px; }

/* ---------- Section helpers ---------- */
.section { padding: 90px 0; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-top: 8px; }
.section-head p { max-width: 640px; margin-top: 12px; }
.section-head.center p { margin-inline: auto; }

/* ---------- About ---------- */
.about-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-media { position: relative; }
.about-media .main-img {
  width: 78%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
}
.about-media .side-img {
  position: absolute;
  right: 0; bottom: 30px;
  width: 48%;
  height: 210px;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}
.years-badge {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--orange);
  color: #fff;
  width: 170px;
  padding: 22px 16px;
  text-align: center;
}
.years-badge b { display: block; font-size: 48px; font-weight: 800; line-height: 1; }
.years-badge span { font-size: 13px; letter-spacing: 0.4px; }
.play-btn {
  position: absolute;
  width: 64px; height: 64px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 18px;
  box-shadow: 0 10px 30px rgba(242, 101, 34, 0.45);
  z-index: 2;
}
.play-btn.tl { top: 18px; left: 18px; }
.play-btn.mid { top: 50%; left: 50%; transform: translate(-50%, -50%); }

.check-list { margin-top: 18px; }
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--heading);
  font-weight: 500;
}
.check-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  position: absolute;
  left: 0;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.mini-features h4 { font-size: 17px; margin: 12px 0 8px; }
.mini-features i { color: var(--orange); font-size: 28px; }

/* ---------- Partners ---------- */
.partners {
  padding: 70px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.partners-watermark {
  position: absolute;
  left: 50%; top: 10px;
  transform: translateX(-50%);
  font-size: clamp(70px, 14vw, 160px);
  font-weight: 800;
  color: rgba(14, 39, 68, 0.045);
  letter-spacing: 8px;
  white-space: nowrap;
  pointer-events: none;
}
.stamp-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
}
.stamp {
  width: 118px; height: 118px;
  border: 3px solid #c5cdd6;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #8a96a3;
  text-align: center;
  transform: rotate(-8deg);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
}
.stamp:nth-child(even) { transform: rotate(7deg); }
.stamp i { font-size: 22px; display: block; margin-bottom: 4px; }

/* ---------- Services ---------- */
.bg-light { background: var(--bg); }
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
}
.service-tabs button {
  background: #fff;
  border: 0;
  padding: 14px 22px;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(14,39,68,0.06);
}
.service-tabs button.active { background: var(--navy); color: #fff; }

.service-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.service-card img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.service-body { padding: 36px 40px; }
.service-body h3 { font-size: 28px; margin-bottom: 6px; }
.price-line { color: var(--orange); font-weight: 700; margin-bottom: 14px; }
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 28px;
  margin-top: 16px;
}
.two-cols li {
  padding-left: 22px;
  position: relative;
  font-size: 14.5px;
  color: var(--heading);
}
.two-cols li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  position: absolute;
  left: 0;
  font-size: 12px;
}

.service-list { display: grid; gap: 28px; }
.center-btn { text-align: center; margin-top: 36px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-box {
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: 0.3s;
}
.svc-box:hover { transform: translateY(-6px); }
.svc-box img { width: 100%; height: 210px; object-fit: cover; }
.svc-box-body { padding: 22px 22px 26px; }
.svc-box h3 { font-size: 20px; margin-bottom: 6px; }
.svc-box .price-line { font-size: 14px; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}
.step { padding: 10px 18px; }
.step-num {
  width: 84px; height: 84px;
  margin: 0 auto 18px;
  border: 2px dashed var(--orange);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--orange);
  font-weight: 800;
  font-size: 26px;
  position: relative;
}
.step h3 { font-size: 22px; margin-bottom: 8px; }

/* ---------- Split navy ---------- */
.split-navy {
  position: relative;
  background: var(--navy);
  color: #c5d3e0;
  overflow: hidden;
}
.split-navy .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-copy { padding: 90px 50px 90px 0; }
.split-copy h2 { color: #fff; font-size: 38px; margin: 10px 0 16px; }
.split-copy p { margin-bottom: 22px; }
.num-list { display: grid; gap: 18px; }
.num-list li { display: flex; gap: 16px; }
.num-list .n {
  color: var(--orange);
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
}
.num-list h4 { color: #fff; font-size: 18px; margin-bottom: 4px; }
.split-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}

/* ---------- Vehicle types ---------- */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vehicle-card {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 4px;
}
.vehicle-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.vehicle-card:hover img { transform: scale(1.08); }
.vehicle-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(8,28,51,0.85));
  color: #fff;
}
.vehicle-card h3 { color: #fff; margin-bottom: 6px; }
.vehicle-card a { color: var(--orange); font-weight: 700; font-size: 13px; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 10px;
}
.gallery-grid a:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid a:nth-child(6) { grid-column: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid a { position: relative; overflow: hidden; display: block; }
.gallery-grid a::after {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute; inset: 0;
  background: rgba(242,101,34,0.78);
  color: #fff;
  display: grid; place-items: center;
  font-size: 22px;
  opacity: 0;
  transition: 0.3s;
}
.gallery-grid a:hover::after { opacity: 1; }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: #fff;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.testi-card .quote {
  color: var(--orange);
  font-size: 28px;
  margin-bottom: 10px;
}
.testi-card h4 { font-size: 18px; margin-bottom: 10px; }
.testi-user { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testi-user img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-user b { display: block; color: var(--heading); }
.testi-user span { font-size: 13px; color: var(--muted); }
.stars { color: #f5b942; font-size: 13px; margin-bottom: 8px; }

/* ---------- Counters ---------- */
.counters {
  background: var(--navy) url("../images/review-bg.jpg") center/cover no-repeat;
  position: relative;
  padding: 80px 0;
}
.counters::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(8, 28, 51, 0.88);
}
.counter-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  color: #fff;
}
.counter-grid i { color: var(--orange); font-size: 32px; margin-bottom: 10px; }
.counter-grid b { display: block; font-size: 42px; font-weight: 800; }
.counter-grid span { color: #c5d3e0; }

/* ---------- Blog / news ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card { background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.news-card img { width: 100%; height: 210px; object-fit: cover; }
.news-card-body { padding: 22px; }
.news-card-body .meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.news-card-body h3 { font-size: 20px; margin-bottom: 8px; }
.news-card-body h3 a:hover { color: var(--orange); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  color: #fff;
}
.envelope {
  width: 92px; height: 70px;
  background: #f3d37a;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.envelope::before {
  content: "";
  position: absolute;
  top: -28px; left: 0; right: 0; height: 40px;
  background: #f26522;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.envelope .mark {
  position: absolute;
  right: -8px; top: -8px;
  width: 26px; height: 26px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 800;
  border: 3px solid var(--navy-2);
}
.newsletter h3 { color: #fff; font-size: 24px; }
.newsletter p { color: #b8c6d4; font-size: 14px; }
.news-form { display: flex; flex-wrap: wrap; gap: 8px 0; min-width: 380px; align-items: stretch; }
.news-form .form-success { width: 100%; margin: 0 0 4px; }
.news-form .form-group { flex: 1; min-width: 180px; }
.news-form input {
  flex: 1;
  width: 100%;
  border: 0;
  padding: 14px 16px;
  outline: none;
}
.news-form button {
  background: var(--orange);
  color: #fff;
  border: 0;
  padding: 14px 22px;
  font-weight: 800;
  letter-spacing: 0.6px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-d);
  color: #b7c4d2;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer .brand-text strong { color: #fff; }
.footer p { margin: 16px 0; font-size: 14.5px; }
.footer h4 {
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 9px; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.socials { display: flex; gap: 10px; margin-top: 12px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid #2a415a;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
}
.socials a:hover { background: var(--orange); border-color: var(--orange); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13.5px;
  margin-top: 10px;
}
.footer-legal a { color: #9aabbc; }
.footer-legal a:hover { color: var(--orange); }
.copyright {
  border-top: 1px solid #1a334d;
  padding: 16px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card { background: #fff; text-align: center; box-shadow: var(--shadow); overflow: hidden; }
.team-photo { position: relative; overflow: hidden; }
.team-photo img { width: 100%; height: 280px; object-fit: cover; }
.team-photo .overlay {
  position: absolute; inset: 0;
  background: rgba(14,39,68,0.55);
  display: grid; place-items: center;
  opacity: 0;
  transition: 0.3s;
}
.team-card:hover .overlay { opacity: 1; }
.team-card h3 { margin: 16px 0 4px; font-size: 20px; }
.team-card span { color: var(--orange); font-size: 13px; font-weight: 600; display: block; padding-bottom: 18px; }

/* ---------- Pricing ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 36px 28px;
  text-align: center;
  border-top: 4px solid var(--navy);
}
.price-card.featured {
  border-top-color: var(--orange);
  transform: translateY(-12px);
  background: var(--navy);
  color: #c5d3e0;
}
.price-card.featured h3,
.price-card.featured .amount { color: #fff; }
.price-card h3 { font-size: 22px; margin-bottom: 8px; }
.amount { font-size: 48px; font-weight: 800; color: var(--navy); line-height: 1; }
.amount small { font-size: 16px; font-weight: 600; color: var(--muted); }
.price-card ul { text-align: left; margin: 22px 0; }
.price-card li {
  padding: 8px 0 8px 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.price-card.featured li { border-color: #23405c; }
.price-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  position: absolute;
  left: 0;
}

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  box-shadow: var(--shadow);
  background: #fff;
  margin-top: 20px;
}
.contact-aside {
  background: var(--navy);
  color: #c5d3e0;
  padding: 40px 32px;
}
.contact-aside h3 { color: #fff; margin-bottom: 22px; }
.cinfo { display: flex; gap: 14px; margin-bottom: 22px; }
.cinfo i { color: var(--orange); font-size: 18px; margin-top: 4px; }
.cinfo b { display: block; color: #fff; margin-bottom: 4px; }
.cinfo div { overflow-wrap: anywhere; word-break: break-word; }
.contact-form { padding: 40px 42px; }
.contact-form h3 { font-size: 28px; margin-bottom: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; color: var(--heading); margin-bottom: 6px; font-size: 14px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 12px 14px;
  outline: none;
  color: var(--heading);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--orange); background: #fff; }
.form-group textarea { min-height: 130px; resize: vertical; }
.error-text { color: #d32f2f; font-size: 12.5px; margin-top: 5px; display: none; }
.form-group.invalid input,
.form-group.invalid textarea,
.form-group.invalid select { border-color: #d32f2f; }
.form-group.invalid .error-text { display: block; }
.form-success {
  display: none;
  background: #e8f6ec;
  color: #1b7a3a;
  border: 1px solid #b7e0c2;
  padding: 16px 18px;
  margin-bottom: 16px;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ---------- Legal ---------- */
.legal {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 48px 46px;
  margin-top: 10px;
}
.legal h2 { font-size: 24px; margin: 28px 0 10px; }
.legal h3 { font-size: 18px; margin: 20px 0 8px; }
.legal p, .legal li { margin-bottom: 10px; }
.legal ul, .legal ol { padding-left: 20px; margin-bottom: 12px; }
.legal ul li { list-style: disc; }
.legal ol li { list-style: decimal; }
.legal-meta { color: var(--muted); font-size: 14px; margin-bottom: 20px; }

/* ---------- Projects ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card { background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.project-card img { width: 100%; height: 220px; object-fit: cover; }
.project-card-body { padding: 20px 22px 24px; }
.tag {
  display: inline-block;
  background: #fff3ec;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  margin-bottom: 8px;
}

/* ---------- Quote strip ---------- */
.quote-strip {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
}
.quote-strip .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.quote-strip h3 { color: #fff; font-size: 24px; }
.quote-strip p { color: #c5d3e0; }

/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 2000;
  place-items: center;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 86vh; }
.lightbox-close {
  position: absolute; top: 18px; right: 24px;
  color: #fff; font-size: 32px; cursor: pointer;
}

/* ---------- Mobile menu ---------- */
.mobile-nav {
  display: none;
  background: var(--navy-d);
  padding: 10px 20px 20px;
}
.mobile-nav a {
  display: block;
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #1a334d;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
}
.mobile-nav a.active, .mobile-nav a:hover { color: var(--orange); }

/* ---------- Misc ---------- */
.mt-20 { margin-top: 20px; }
.mb-10 { margin-bottom: 10px; }
.video-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2100;
  place-items: center;
}
.video-modal.open { display: grid; }
.video-modal .box {
  background: #fff;
  padding: 28px;
  max-width: 480px;
  text-align: center;
}
.icon-row {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin: 10px 0 20px;
  color: #9aa8b6;
}
.icon-row span { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 1px; }
.icon-row i { display: block; font-size: 28px; margin-bottom: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .nav { display: none; }
  .hamburger { display: grid; place-items: center; }
  .mobile-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    padding: 4px 20px 14px;
    background: var(--navy-d);
  }
  .mobile-nav a { border-bottom: 0; padding: 8px 0; }
}
@media (max-width: 1100px) {
  .expert-chip { display: none; }
  .about-wrap,
  .service-card,
  .split-navy .inner,
  .contact-wrap { grid-template-columns: 1fr; }
  .about-media .main-img { width: 100%; height: 360px; }
  .about-media .side-img { display: none; }
  .split-copy { padding: 70px 0; }
  .split-photo { min-height: 360px; clip-path: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .newsletter-inner { grid-template-columns: 1fr; text-align: left; }
  .news-form { min-width: 0; width: 100%; }
}
@media (max-width: 860px) {
  .feature-grid,
  .mini-features,
  .steps,
  .vehicle-grid,
  .testi-grid,
  .news-grid,
  .service-grid,
  .project-grid,
  .price-grid,
  .team-grid,
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-grid a:nth-child(1),
  .gallery-grid a:nth-child(6) { grid-column: auto; grid-row: auto; }
  .form-row { grid-template-columns: 1fr; }
  .two-cols { grid-template-columns: 1fr; }
  .hero { clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%); min-height: 520px; }
}
@media (max-width: 640px) {
  .feature-grid,
  .mini-features,
  .steps,
  .vehicle-grid,
  .testi-grid,
  .news-grid,
  .service-grid,
  .project-grid,
  .price-grid,
  .team-grid,
  .counter-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .page-hero h1 { font-size: 34px; }
  .legal, .contact-form { padding: 24px 18px; }
  .header { position: sticky; }
  .header-inner { min-height: 72px; gap: 8px; position: relative; padding-right: 56px; }
  .brand img { width: 44px; height: 44px; }
  .brand-text strong { font-size: 18px; }
  .topbar { display: none; }
  .header-tools { display: none; }
  .hamburger {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    margin-left: 0;
    display: grid !important;
    place-items: center;
    order: 4;
    z-index: 5;
  }
  .hero .eyebrow { letter-spacing: 1px; font-size: 11px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  .mobile-nav { gap: 2px 12px; }
  .mobile-nav a { font-size: 11px; }
  .hero-content { padding: 70px 0 120px; max-width: 100%; }
}
