/* ============================================
   KINGSWOOD APPLIANCE REPAIRS — PREMIUM CSS
   ============================================ */

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

:root {
  --navy: #2D3748;
  --navy-dark: #1A202C;
  --gold: #C0392B;
  --gold-hover: #a93226;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --light-bg: #F7F7F5;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 12px;
  --font: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* scroll offset for sticky header */
section[id] {
  scroll-margin-top: 80px;
}

/* ============ UTILITY ============ */

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

.section--white { background: var(--white); }
.section--light { background: var(--light-bg); }

/* Section label with hairline rules */
.section-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 14px;
  text-align: center;
}

.label-line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #ccc;
  vertical-align: middle;
  margin: 0 12px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 48px;
  line-height: 1.15;
}

/* ============ BUTTONS ============ */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}

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

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1ebe5c;
  border-color: #1ebe5c;
}

/* HIW band buttons */
.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--white:hover {
  background: #eef2ff;
  border-color: #eef2ff;
}

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

/* Contact reversed buttons */
.btn--contact-white {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
  font-weight: 700;
}
.btn--contact-white:hover {
  background: #eef2ff;
  border-color: #eef2ff;
}

.btn--full {
  width: 100%;
  text-align: center;
  display: block;
}

.gold-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--gold);
  transition: color 0.2s;
}
.gold-link:hover {
  color: var(--gold-hover);
}

/* ============ HEADER ============ */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
}

.header__logo img {
  height: 48px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 28px;
  margin: 0 auto;
}

.header__nav a {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  transition: color 0.2s;
}
.header__nav a:hover {
  color: var(--navy);
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: url('images/david-repair.jpeg') center center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero__badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  max-width: fit-content;
}

.hero__h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-bottom: 36px;
  max-width: 600px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Feature chips below hero buttons */
.hero__chips {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-chip {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.55);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.hero__trust {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.45);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__trust-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 14px;
  flex-wrap: wrap;
}

.trust-sep {
  color: rgba(255,255,255,0.35);
}

/* ============ AWARDS BAR ============ */

.trust-bar {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.trust-bar__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-bar__cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-bar__cards--center {
  margin-top: 16px;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  min-width: 200px;
  max-width: 260px;
  flex: 1;
}

.trust-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}

.trust-card__icon--g { background: #4285F4; }
.trust-card__icon--num { font-size: 14px; }

.trust-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.trust-card__value {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 2px 0;
}

.trust-card__stars {
  color: #f59e0b;
  font-size: 12px;
}

.trust-card__sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============ SERVICES ============ */

.services {
  padding: 5rem 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.service-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  flex: 1;
}

/* Service tag chips */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.service-tag {
  font-size: 11px;
  font-weight: 600;
  background: #f0f4f4;
  color: var(--navy);
  border: 1px solid #cdd8d8;
  padding: 3px 10px;
  border-radius: 100px;
}

/* Book this repair link */
.service-book-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  transition: color 0.2s;
  margin-top: auto;
}
.service-book-link:hover {
  color: var(--gold-hover);
}

/* ============ WHY CHOOSE US ============ */

.why-us {
  padding: 5rem 0;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: start;
}

.why-us__heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.why-us__para {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Enhanced stat card */
.why-us__stat-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px 32px;
  color: var(--white);
}

.stat-trusted-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stat-big-number {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-text {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.stat-stars {
  font-size: 20px;
  margin-bottom: 6px;
  letter-spacing: 2px;
  color: var(--gold);
}

.stat-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  margin-bottom: 18px;
}

.stat-avatars {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.stat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-avatar-more {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  margin-left: 4px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  position: relative;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: var(--shadow);
}

.feature-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy);
  background: rgba(27, 58, 107, 0.08);
  border-radius: 6px;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.feature-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ HOW IT WORKS ============ */

.how-it-works {
  padding: 5rem 0;
}

.hiw-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.hiw-sub {
  color: #666;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Connector line between step cards */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 66px;
  left: calc(16.66% + 22px);
  right: calc(16.66% + 22px);
  height: 2px;
  background: #e0e5f0;
  z-index: 0;
}

.step-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  background: var(--light-bg);
  border: 1px solid #e0e5f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
}

.step-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
}

.step-bullets {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
  font-size: 0.8rem;
  color: #666;
}

/* HIW CTA band */
.hiw-cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--navy-dark);
  border-radius: 16px;
  padding: 2rem 3rem;
  margin-top: 2.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.hiw-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
}

.hiw-cta-text strong {
  font-size: 1.1rem;
  font-weight: 700;
}

.hiw-cta-text span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.hiw-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============ REVIEWS ============ */

.reviews {
  padding: 5rem 0;
}

.reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.reviews__score-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  min-width: 220px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.reviews__score-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.reviews__score-stars {
  color: var(--gold);
  font-size: 1.2rem;
  margin: 0.25rem 0;
}

.reviews__score-count {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1rem;
}

.reviews__score-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.score-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #666;
}

.score-bar span { width: 8px; text-align: right; }

.bar-track {
  flex: 1;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 3px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 40px;
}

.review-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}

.review-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); }

.review-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 1px; }

.review-tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: #f0f4f4;
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #cdd8d8;
}

.review-quote {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  flex: 1;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}
.review-meta strong { color: #1a1a1a; }
.review-meta span { color: #888; }

.review-verified {
  font-size: 0.72rem;
  color: #2e7d32;
  font-weight: 600;
  white-space: nowrap;
}

.reviews__cta {
  text-align: center;
}

/* ============ AWARDS SECTION ============ */

.awards {
  padding: 5rem 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.award-card {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.award-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Year badge — absolute top-right pill */
.award-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--navy-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
}

/* ============ AREAS ============ */

.areas {
  padding: 5rem 0;
  text-align: center;
}

.areas-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.pill {
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 100px;
}

/* ============ BRANDS ============ */

.brands {
  padding: 5rem 0;
  text-align: center;
}

.brands .section-heading {
  margin-bottom: 40px;
}

.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.brands-row img {
  max-height: 48px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s;
}

.brands-row img:hover {
  filter: grayscale(0) opacity(1);
}

/* ============ CONTACT ============ */

.contact {
  padding: 5rem 0;
  background: var(--navy);
}

.contact__heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 56px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Dark navy left card */
.contact__left-card {
  background: var(--navy-dark);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact__left-phone {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
}

.contact__left-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact__left-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.contact__left-buttons .btn {
  text-align: center;
}

.contact__left-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.contact-info-row {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}

.contact__form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.contact__form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-group textarea {
  resize: vertical;
}

/* ============ FOOTER ============ */

.footer {
  background: var(--navy-dark);
  padding-top: 56px;
}

.footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer__tagline-head {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer__phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

.footer__col-heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__list li,
.footer__list a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  line-height: 1.4;
}

.footer__list a:hover {
  color: var(--white);
}

/* Footer bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom-inner p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer__bottom-inner a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

.footer__trust-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-trust-chip {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__trust-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .trust-sep { display: none; }

  .footer__cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .awards-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hiw-cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.5rem;
  }

  .hiw-cta-buttons {
    width: 100%;
  }

  .hiw-cta-buttons .btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__header { flex-direction: column; }
  .reviews__score-card { width: 100%; }
}

@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .brands-row {
    gap: 24px;
  }
  .brands-row img {
    max-height: 36px;
    max-width: 90px;
  }
}
