/* ============================================================
   C&H Junk Yard — Static Website Styles
   Brand colors: #004E98 (blue) · #FF2E44 (red) · white backgrounds
   ============================================================ */

:root {
  --blue: #004E98;
  --blue-dark: #00345f;
  --blue-deep: #0a2640;
  --red: #FF2E44;
  --red-dark: #d81f33;
  --ink: #12263a;
  --muted: #53636f;
  --white: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-soft-2: #eaf0f7;
  --line: #e4ebf2;
  --shadow: 0 14px 40px rgba(0, 78, 152, 0.10);
  --shadow-sm: 0 6px 18px rgba(0, 78, 152, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font-head: 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--red); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--white { background: var(--white); }

.section-head { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-head .kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  font-weight: 600;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--blue);
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  line-height: 1;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: #fff; color: var(--blue); border-color: #fff; }
.btn-light { background: #fff; color: var(--blue); }
.btn-light:hover { background: var(--bg-soft); color: var(--blue); }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: var(--blue-deep);
  color: #c7d6e6;
  font-size: 13px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar a { color: #dbe7f3; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar .topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar .topbar-right { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar svg { width: 14px; height: 14px; flex: 0 0 auto; }

/* ============================================================
   MAIN HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 86px;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 60px; width: auto; object-fit: contain; }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 6px; }
.main-nav a {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  color: var(--ink);
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.main-nav a:hover { color: var(--red); background: var(--bg-soft); }
.main-nav a.active { color: var(--blue); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.header-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 0 0 auto;
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.header-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 600;
}
.header-contact a:hover { color: var(--red); }
.header-contact .hc-phone { font-family: var(--font-head); font-size: 17px; color: var(--blue); }
.header-contact .hc-phone:hover { color: var(--red); }
.header-contact svg { width: 17px; height: 17px; color: var(--red); flex: 0 0 auto; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 0;
  cursor: pointer;
  width: 46px; height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 10px;
  background: var(--bg-soft);
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: all .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   SUB HEADER (tire installation strip)
   ============================================================ */
.subheader {
  background: var(--red);
  color: #fff;
}
.subheader .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  min-height: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.subheader .tire {
  display: inline-flex;
  animation: spin 6s linear infinite;
}
.subheader strong {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
}
.subheader .note { color: #ffe3e6; font-size: 13.5px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(0,34,63,.92) 0%, rgba(0,78,152,.78) 52%, rgba(0,34,63,.55) 100%),
    url("../hero%20img.png") center/cover no-repeat;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 70px 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-head);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 22px;
}
.hero-copy h1 {
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.02;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-copy h1 .accent { color: var(--red); }
.hero-copy .hero-tag {
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 26px;
  max-width: 520px;
}
.hero-copy .hero-tag strong { color: #ffd7db; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.lang-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff;
  padding: 11px 18px;
  border-radius: 999px;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(255,46,68,.35);
}
.lang-badge svg { width: 16px; height: 16px; }

/* ---------- Offer form card ---------- */
.offer-card {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  justify-self: end;
}
.offer-head {
  background: var(--blue);
  color: #fff;
  padding: 22px 26px 18px;
}
.offer-head h3 {
  font-size: 22px;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.offer-head p { font-size: 13.5px; color: #cfe2f2; line-height: 1.5; }
.offer-progress { padding: 18px 26px 4px; }
.progress-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 9px;
}
.progress-meta .pct { color: var(--red); }
.progress-bar {
  height: 8px;
  background: var(--bg-soft-2);
  border-radius: 999px;
  overflow: hidden;
}
.progress-bar span {
  display: block;
  height: 100%;
  width: 6%;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 999px;
  transition: width .4s ease;
}
.step-dots {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  padding: 12px 26px 0;
}
.step-dots button {
  flex: 1 0 auto;
  min-width: 14px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: var(--bg-soft-2);
  cursor: pointer;
  transition: background .2s ease;
  padding: 0;
}
.step-dots button.done { background: var(--blue); }
.step-dots button.current { background: var(--red); }

.offer-body { padding: 8px 26px 26px; }
.step-question {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  text-transform: none;
  letter-spacing: .3px;
  margin: 16px 0 18px;
  line-height: 1.25;
}

.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
}
.field input:focus,
.field select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,78,152,.12);
}
.field .hint { font-size: 12px; color: var(--muted); margin-top: 5px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Radio option cards */
.option-list { display: grid; gap: 10px; }
.option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .18s ease;
  background: #fff;
}
.option:hover { border-color: var(--blue); background: var(--bg-soft); }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option .dot {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #b9c6d3;
  margin-top: 1px;
  display: grid;
  place-items: center;
  transition: all .18s ease;
}
.option .dot::after {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
  transform: scale(0);
  transition: transform .18s ease;
}
.option input:checked ~ .dot { border-color: var(--blue); }
.option input:checked ~ .dot::after { transform: scale(1); }
.option input:checked ~ .opt-text { color: var(--blue); font-weight: 600; }
.option.checked { border-color: var(--blue); background: #eef5fc; }
.opt-text { font-size: 15px; color: var(--ink); line-height: 1.4; }

/* checkbox */
.check-row { display: flex; align-items: flex-start; gap: 11px; margin-top: 14px; cursor: pointer; }
.check-row input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); cursor: pointer; }
.check-row span { font-size: 14px; color: var(--muted); }

/* file upload */
.upload-box {
  border: 2px dashed #c4d2e0;
  border-radius: var(--radius-sm);
  padding: 28px 18px;
  text-align: center;
  background: var(--bg-soft);
  transition: all .2s ease;
  cursor: pointer;
}
.upload-box:hover { border-color: var(--blue); background: #eef5fc; }
.upload-box svg { width: 34px; height: 34px; color: var(--blue); margin-bottom: 10px; }
.upload-box p { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.upload-box .files { font-size: 12.5px; color: var(--muted); margin-top: 6px; }

.form-error {
  display: none;
  margin-top: 12px;
  padding: 10px 13px;
  background: #fff0f2;
  border: 1px solid #ffccd1;
  color: var(--red-dark);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
}
.form-error.show { display: block; }

.offer-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}
.offer-nav .back-btn {
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s ease;
}
.offer-nav .back-btn:hover { color: var(--blue); }
.offer-nav .next-btn {
  margin-left: auto;
  font-size: 14px;
  padding: 13px 26px;
}

/* success state */
.offer-success { text-align: center; padding: 30px 10px; }
.offer-success .check {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: #e7f6ec;
  color: #1f9d55;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}
.offer-success .check svg { width: 38px; height: 38px; }
.offer-success h3 { color: var(--blue); font-size: 24px; margin-bottom: 10px; }
.offer-success p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card .media { aspect-ratio: 16/11; overflow: hidden; background: var(--bg-soft-2); }
.service-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .media img { transform: scale(1.07); }
.service-card .body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.service-card .body h3 { color: var(--blue); font-size: 23px; }
.service-card .body p { color: var(--muted); font-size: 15px; flex: 1; }
.service-card .body .num {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--red);
  font-weight: 600;
}

/* ============================================================
   NEGOTIATION BAND
   ============================================================ */
.negotiate {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.negotiate::before, .negotiate::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.negotiate::before { width: 320px; height: 320px; top: -120px; left: -80px; }
.negotiate::after { width: 260px; height: 260px; bottom: -110px; right: -60px; }
.negotiate .container { position: relative; z-index: 1; }
.negotiate h2 {
  font-size: clamp(26px, 4vw, 40px);
  max-width: 900px;
  margin: 0 auto 22px;
  line-height: 1.25;
}
.negotiate h2 .accent { color: #ff8494; }
.negotiate .divider {
  width: 70px; height: 4px;
  background: var(--red);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.negotiate p { max-width: 720px; margin: 0 auto; font-size: 17px; color: #d6e4f2; }

/* ============================================================
   BUY CARS / TOW SECTION
   ============================================================ */
.buy-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.buy-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.buy-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.buy-media .badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.buy-content h2 { color: var(--blue); font-size: clamp(28px, 4vw, 42px); margin-bottom: 20px; }
.buy-content .lead { font-size: 19px; color: var(--ink); font-weight: 600; margin-bottom: 22px; }
.buy-list { display: grid; gap: 14px; margin: 22px 0 28px; }
.buy-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--muted); }
.buy-list .tick {
  flex: 0 0 auto;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #e7f0fa;
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.buy-list .tick svg { width: 14px; height: 14px; }
.quote-box {
  background: var(--bg-soft);
  border-left: 4px solid var(--red);
  padding: 20px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head);
  font-size: 18px;
  letter-spacing: .5px;
  color: var(--blue);
  margin-top: 6px;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-head { text-align: center; margin-bottom: 40px; }
.reviews-head .rating-summary { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.reviews-head .rating-summary .big { font-family: var(--font-head); font-size: 46px; color: var(--blue); font-weight: 700; line-height: 1; }
.reviews-head .stars { display: flex; gap: 3px; color: #fbbc04; }
.reviews-head .stars svg { width: 22px; height: 22px; }
.reviews-head .meta { color: var(--muted); font-size: 15px; }
.reviews-head .powered { display: inline-flex; align-items: center; gap: 9px; margin-top: 14px; color: var(--muted); font-size: 13.5px; }
.reviews-head .powered svg { width: 20px; height: 20px; }

.reviews-wrap { position: relative; }
.reviews-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 16px;
  scroll-behavior: smooth;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc(33.333% - 15px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-card .top { display: flex; align-items: center; gap: 13px; }
.review-card .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  flex: 0 0 auto;
}
.review-card .who { line-height: 1.3; }
.review-card .who strong { font-size: 15.5px; color: var(--ink); }
.review-card .who span { font-size: 13px; color: var(--muted); }
.review-card .stars { display: flex; gap: 2px; color: #fbbc04; }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card .text { color: var(--ink); font-size: 15px; line-height: 1.55; flex: 1; }

.reviews-nav { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.reviews-nav button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--blue);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .2s ease;
}
.reviews-nav button:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.reviews-nav button svg { width: 20px; height: 20px; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--red);
  color: #fff;
  text-align: center;
}
.cta-strip h2 { font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 10px; }
.cta-strip p { color: #ffe3e6; font-size: 16.5px; margin-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--blue-deep);
  color: #c7d6e6;
}
.footer-main { padding: 64px 0 44px; display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 42px; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 15px; line-height: 1.6; max-width: 320px; }
.footer h4 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer h4::after { content: ""; display: block; width: 36px; height: 3px; background: var(--red); margin-top: 8px; border-radius: 2px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--red); flex: 0 0 auto; margin-top: 3px; }
.footer-contact a { color: #c7d6e6; }
.footer-contact a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: grid;
  place-items: center;
  transition: all .25s ease;
}
.footer-social a:hover { background: var(--red); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #9fb2c4;
}
.footer-bottom a { color: #c7d6e6; font-weight: 600; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; background: rgba(255,255,255,.06); top: -140px; right: -100px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 12px; }
.page-hero p { color: #d6e4f2; font-size: 17px; }
.page-hero .crumbs { font-size: 13.5px; letter-spacing: 1px; text-transform: uppercase; color: #ffaab5; margin-bottom: 8px; }
.page-hero .crumbs a { color: #cfe2f2; }
.page-hero .crumbs a:hover { color: #fff; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.about-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-content h2 { color: var(--blue); font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 18px; }
.about-content p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.about-content .buy-list { margin-bottom: 28px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 44px; align-items: start; }
.contact-info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h2 { color: var(--blue); font-size: 26px; margin-bottom: 20px; }
.contact-item { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-item:last-child { border-bottom: 0; }
.contact-item .ico {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: #e7f0fa;
  color: var(--blue);
  display: grid;
  place-items: center;
}
.contact-item .ico svg { width: 22px; height: 22px; }
.contact-item h3 { font-family: var(--font-head); font-size: 15px; letter-spacing: 1.5px; color: var(--red); margin-bottom: 3px; }
.contact-item p, .contact-item a { font-size: 15.5px; color: var(--ink); font-weight: 500; }
.contact-item a:hover { color: var(--red); }
.map-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.map-card iframe { width: 100%; height: 460px; border: 0; display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 640px; }
  .offer-card { max-width: 520px; justify-self: start; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .review-card { flex-basis: calc(50% - 11px); }
  .buy-section .container { gap: 34px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .header-contact { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(0,0,0,.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    margin-left: 0;
  }
  .main-nav.open { max-height: 340px; }
  .main-nav ul { flex-direction: column; padding: 10px 20px 18px; gap: 2px; }
  .main-nav a { display: block; padding: 13px 12px; }
  .main-nav a.active::after { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .buy-section .container { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .topbar .container { justify-content: center; text-align: center; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .review-card { flex-basis: 100%; }
  .field-grid { grid-template-columns: 1fr; }
  .hero { padding: 48px 0; }
  .offer-head, .offer-progress, .step-dots, .offer-body { padding-left: 20px; padding-right: 20px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .topbar .topbar-right { display: none; }
}
