/*
 * theme.css - Henderson Mobile Auto Glass
 * Shared premium design system: dark navy + gold
 * Used by: index.php, service pages, location pages, contact, about
 */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary-dark: #0d1b2a;
  --primary-mid: #1a2f4e;
  --primary-light: #22395e;
  --accent-gold: #c9a84c;
  --accent-gold-lt: #e8c96d;
  --text-light: #f0f4f8;
  --text-muted: #a8b5c1;
  --white: #ffffff;
  --cta-orange: #eb5d1e;
  --cta-orange-dk: #c94d12;
}

/* ============================================================
   BASE RESETS
   ============================================================ */
/* Override legacy #main margin - body padding-top set in head.php */
#main {
  margin-top: 0 !important;
}

/* ============================================================
   SECTION WRAPPERS
   ============================================================ */
.section-navy {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 80px 0;
}

.section-mid {
  background: var(--primary-mid);
  color: var(--text-light);
  padding: 80px 0;
}

.section-light-navy {
  background: var(--primary-light);
  color: var(--text-light);
  padding: 80px 0;
}

/* ============================================================
   SECTION TITLE - GOLD
   ============================================================ */
.section-title-gold {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-gold h2 {
  color: var(--accent-gold);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.section-title-gold h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.section-title-gold p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   SECTION 1 - HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/Homepage - Henderson Mobile Auto Glass.webp');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero-section:hover .hero-bg {
  transform: scale(1.0);
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(7, 15, 28, 0.93) 0%,
      rgba(10, 22, 42, 0.82) 45%,
      rgba(13, 27, 42, 0.45) 100%);
}

.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 15, 28, 0.88) 0%, transparent 55%);
}

.hero-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent 5%, #c9a84c 30%, #e8c96d 65%, transparent 95%);
  opacity: 0.7;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 80px 0 60px;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 50px;
  padding: 5px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

/* H1 */
.hero-content h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.hero-content h1 .h1-highlight {
  color: var(--accent-gold);
}

/* Subheading */
.hero-subheading {
  font-family: 'Inter', sans-serif;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Bullet grid */
.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.4;
}

.hero-bullets li .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-bullets li .check-icon i {
  color: var(--accent-gold);
  font-size: 0.65rem;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta-orange);
  color: #fff !important;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(235, 93, 30, 0.35);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn-hero-primary:hover {
  background: var(--cta-orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(235, 93, 30, 0.45);
  color: #fff !important;
  text-decoration: none;
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--accent-gold) !important;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(201, 168, 76, 0.07);
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  white-space: nowrap;
}

.btn-hero-call:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  color: var(--accent-gold-lt) !important;
  text-decoration: none;
}

/* Hours note */
.hero-hours-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-hours-note i {
  color: var(--accent-gold);
  font-size: 0.75rem;
}

/* Trust badges */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-trust-badge i {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

/* Floating stat cards */
.hero-stats {
  position: absolute;
  bottom: 36px;
  right: 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-stat-card {
  background: rgba(13, 27, 42, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: 10px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}

.hero-stat-card .stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-card .stat-icon i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.hero-stat-card .stat-val {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 2px;
}

.hero-stat-card .stat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Hero responsive */
@media (max-width: 1199px) {
  .hero-stats {
    display: none;
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
  }

  .hero-overlay-1 {
    background: linear-gradient(to bottom, rgba(7, 15, 28, 0.95) 0%, rgba(7, 15, 28, 0.92) 100%);
  }

  .hero-content {
    max-width: 100%;
    padding: 60px 24px 52px;
  }
}

/* Hero mobile image - hidden on desktop, shown on mobile */
.hero-img-mobile {
  display: none;
}

@media (max-width: 767px) {

  /* Switch to stacked layout: image on top, content below */
  .hero-section {
    min-height: auto;
    display: block;
    background: var(--primary-dark);
  }

  /* Hide the CSS background div - image tag takes over */
  .hero-bg {
    display: none;
  }

  /* Show the real image, full width on top */
  .hero-img-mobile {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 30%;
  }

  /* Overlays only cover the content area, not the image */
  .hero-overlay-1,
  .hero-overlay-2 {
    top: 260px;
    /* start below the image */
  }

  /* Content sits below image on a dark background */
  .hero-section>.container {
    position: relative;
    z-index: 2;
  }

  .hero-content {
    padding: 36px 20px 44px;
  }

  .hero-overlay-1 {
    background: var(--primary-dark);
  }

  .hero-overlay-2 {
    background: none;
  }

  .hero-accent-line {
    top: 260px;
    /* align with content area */
  }

  .hero-content h1 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
    white-space: normal;
  }

  .hero-content h1 .h1-highlight {
    white-space: normal;
  }

  .hero-bullets {
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
  }

  .hero-bullets li {
    font-size: 0.82rem;
  }

  .hero-eyebrow {
    font-size: 0.68rem;
    padding: 4px 12px;
  }

  .hero-subheading {
    font-size: 0.88rem;
  }

  .hero-trust-badge {
    font-size: 0.71rem;
    padding: 5px 10px;
  }
}

@media (max-width: 575px) {
  .hero-img-mobile {
    height: 220px;
  }

  .hero-overlay-1,
  .hero-overlay-2 {
    top: 220px;
  }

  .hero-accent-line {
    top: 220px;
  }

  .hero-content {
    padding: 30px 16px 40px;
  }

  .hero-content h1 {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .hero-subheading {
    font-size: 0.85rem;
    margin-bottom: 22px;
  }

  .hero-bullets {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-bullets li {
    font-size: 0.84rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 16px;
  }

  .btn-hero-primary,
  .btn-hero-call {
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
  }

  .hero-accent-line {
    display: none;
  }

  .hero-hours-note {
    font-size: 0.72rem;
  }

  .hero-trust-row {
    gap: 6px;
  }

  .hero-trust-badge {
    font-size: 0.69rem;
    padding: 5px 9px;
  }
}

@media (max-width: 380px) {
  .hero-content {
    padding: 48px 14px 40px;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.5px;
  }
}

/* ============================================================
   SECTION 2 - INTRO + FORM
   ============================================================ */
.form-section {
  background: var(--primary-dark);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.form-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Left: intro */
.form-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 48px;
}

.form-intro .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 5px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  width: fit-content;
}

.form-intro h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}

.form-intro h2 span {
  color: var(--accent-gold);
}

.form-intro .intro-body {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Feature list */
.form-intro-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-intro-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-intro-features li .fi-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.form-intro-features li .fi-icon i {
  color: var(--accent-gold);
  font-size: 0.75rem;
}

/* Divider */
.form-intro-divider {
  height: 1px;
  background: linear-gradient(to right, rgba(201, 168, 76, 0.3), transparent);
  margin-bottom: 28px;
}

/* Phone block */
.form-intro-phone {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-intro-phone .phone-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(235, 93, 30, 0.12);
  border: 1px solid rgba(235, 93, 30, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-intro-phone .phone-icon-wrap i {
  color: var(--cta-orange);
  font-size: 1.1rem;
}

.form-intro-phone .phone-text .ph-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.form-intro-phone .phone-text a {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white) !important;
  text-decoration: none;
  transition: color 0.25s;
  display: block;
}

.form-intro-phone .phone-text a:hover {
  color: var(--accent-gold) !important;
}

.form-intro-phone .phone-text .ph-hours {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Right: form card */
.form-card-wrap {
  position: relative;
}

.form-card-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.35) 0%, transparent 50%, rgba(201, 168, 76, 0.15) 100%);
  z-index: 0;
}

.form-card {
  position: relative;
  z-index: 1;
  background: #0f2033;
  border-radius: 16px;
  padding: 44px 38px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

/* Form heading */
.form-card .form-heading {
  margin-bottom: 28px;
}

.form-card .form-heading .fh-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.form-card .form-heading h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 4px;
}

.form-card .form-heading p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #7a8fa0;
  margin: 0;
}

/* Form fields */
.form-card .form-field-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card .field-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #7a8fa0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.form-card .form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 9px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--text-light);
  outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.form-card .form-input::placeholder {
  color: rgba(200, 212, 222, 0.55);
}

.form-card .form-input:focus {
  border-color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-card textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

/* Captcha */
.form-card .captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-card .captcha-img-wrap {
  flex-shrink: 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 8px;
}

.form-card .captcha-input {
  flex: 1;
}

/* Submit */
.form-card .btn-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--cta-orange);
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(235, 93, 30, 0.3);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  margin-top: 4px;
}

.form-card .btn-form-submit:hover {
  background: var(--cta-orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(235, 93, 30, 0.4);
}

/* Response + footer note */
#response {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  margin-top: 4px;
}

.form-card .form-footer-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.73rem;
  color: var(--text-muted);
  margin-top: 14px;
  justify-content: center;
}

.form-card .form-footer-note i {
  color: var(--accent-gold);
  font-size: 0.75rem;
}

/* Section 2 responsive */
@media (max-width: 991.98px) {
  .form-section {
    padding: 70px 0;
  }

  .form-intro {
    padding-right: 0;
    margin-bottom: 44px;
  }

  .form-intro h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .form-card-wrap::before {
    display: none;
  }

  .form-card {
    border: 1px solid rgba(201, 168, 76, 0.25);
  }
}

@media (max-width: 767px) {
  .form-section {
    padding: 60px 0;
  }

  .form-intro .intro-body {
    font-size: 0.9rem;
  }

  .form-intro-features li {
    font-size: 0.85rem;
  }

  .form-intro-phone .phone-text a {
    font-size: 1.1rem;
  }

  .form-card {
    padding: 28px 22px;
  }

  .form-card .form-heading h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 575px) {
  .form-section {
    padding: 50px 0;
  }

  .form-intro h2 {
    font-size: 1.45rem;
  }

  .form-card {
    padding: 24px 16px;
  }

  .form-intro-features {
    gap: 10px;
  }

  .form-intro-phone .phone-text a {
    font-size: 1.05rem;
  }
}

/* ============================================================
   SECTION 3 - OUR AUTO GLASS SERVICES
   ============================================================ */
.services-section {
  background: var(--primary-dark);
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  padding: 90px 0;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 56px;
}

.services-header .s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.services-header h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.2;
}

.services-header h2 span {
  color: var(--accent-gold);
}

.services-header .s-subtitle {
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.service-card {
  background: #0f2033;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 14px;
  padding: 32px 26px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.service-card:hover::before {
  opacity: 1;
}

.svc-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(201, 168, 76, 0.07);
  font-family: 'Raleway', sans-serif;
  line-height: 1;
  user-select: none;
}

.svc-icon {
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover .svc-icon {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--accent-gold);
}

.svc-icon i {
  color: var(--accent-gold);
  font-size: 1.4rem;
}

.service-card h3 {
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.91rem;
  line-height: 1.68;
  flex-grow: 1;
  margin-bottom: 22px;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--accent-gold) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s, gap 0.2s;
  align-self: flex-start;
  letter-spacing: 0.3px;
}

.btn-service i {
  font-size: 0.8rem;
  transition: transform 0.25s;
}

.btn-service:hover {
  background: var(--accent-gold);
  color: var(--primary-dark) !important;
  border-color: var(--accent-gold);
  text-decoration: none;
  gap: 10px;
}

.btn-service:hover i {
  transform: translateX(3px);
}

@media (max-width: 991.98px) {
  .services-section {
    padding: 70px 0;
  }

  .services-header {
    margin-bottom: 44px;
  }
}

@media (max-width: 575px) {
  .services-section {
    padding: 56px 0;
  }

  .services-header h2 {
    font-size: 1.55rem;
  }
}

/* ============================================================
   SECTION 4 - WHY HENDERSON CHOOSES US
   ============================================================ */
.why-section {
  background: var(--primary-mid);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-header .w-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.why-header h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--text-light);
  line-height: 1.25;
  margin-bottom: 14px;
}

.why-header h2 span {
  color: var(--accent-gold);
}

.why-header .w-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 0;
}

/* Stat strip */
.why-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--primary-dark);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 14px;
  overflow: hidden;
  margin: 40px 0 52px;
}

.why-stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(201, 168, 76, 0.12);
  transition: background 0.25s;
}

.why-stat:last-child {
  border-right: none;
}

.why-stat:hover {
  background: rgba(201, 168, 76, 0.05);
}

.ws-val {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.ws-lbl {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Feature rows */
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: rgba(13, 27, 42, 0.5);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  height: 100%;
  transition: border-color 0.3s, background 0.3s, transform 0.25s;
}

.why-feature:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: rgba(13, 27, 42, 0.8);
  transform: translateY(-4px);
}

.wf-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.why-feature:hover .wf-icon {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--accent-gold);
}

.wf-icon i {
  color: var(--accent-gold);
  font-size: 1.25rem;
}

.wf-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.wf-text {
  color: var(--text-muted);
  font-size: 0.89rem;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 991.98px) {
  .why-section {
    padding: 70px 0;
  }

  .why-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-stat:nth-child(2) {
    border-right: none;
  }

  .why-stat:nth-child(3) {
    border-right: 1px solid rgba(201, 168, 76, 0.12);
  }

  .why-stat:nth-child(3),
  .why-stat:nth-child(4) {
    border-top: 1px solid rgba(201, 168, 76, 0.12);
  }
}

@media (max-width: 575px) {
  .why-section {
    padding: 56px 0;
  }

  .why-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-header h2 {
    font-size: 1.5rem;
  }

  .why-feature {
    padding: 18px 16px;
    gap: 14px;
  }

  .wf-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }
}

/* ============================================================
   SECTION 5 - OUR CREDENTIALS
   ============================================================ */
.credentials-section {
  background: var(--primary-dark);
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  padding: 90px 0;
  position: relative;
}

.credentials-header {
  text-align: center;
  margin-bottom: 56px;
}

.credentials-header .c-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.credentials-header h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.2;
}

.credentials-header h2 span {
  color: var(--accent-gold);
}

.credentials-header .c-subtitle {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.credential-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #0f2033;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 28px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.credential-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.credential-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  border-color: rgba(201, 168, 76, 0.35);
}

.credential-item:hover::before {
  opacity: 1;
}

.cred-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.credential-item:hover .cred-icon {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--accent-gold);
}

.cred-icon i {
  color: var(--accent-gold);
  font-size: 1.7rem;
}

.cred-body {
  flex: 1;
}

.cred-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.cred-desc {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
}

/* Legacy .cred-text kept for compatibility */
.credential-item .cred-text {
  color: var(--text-light);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 991.98px) {
  .credentials-section {
    padding: 70px 0;
  }

  .credentials-header {
    margin-bottom: 44px;
  }
}

@media (max-width: 575px) {
  .credentials-section {
    padding: 56px 0;
  }

  .credential-item {
    padding: 22px 18px;
    gap: 16px;
  }

  .cred-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
  }

  .cred-icon i {
    font-size: 1.4rem;
  }
}

/* ============================================================
   SECTION 6 - CUSTOMER TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--primary-mid);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .t-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.testimonials-header h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.2;
}

.testimonials-header h2 span {
  color: var(--accent-gold);
}



.testimonials-header .t-subtitle {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-card {
  background: var(--primary-dark);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 16px;
  padding: 36px 30px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
  border-color: rgba(201, 168, 76, 0.35);
}

.testimonial-card .quote-icon {
  color: var(--accent-gold);
  font-size: 1.8rem;
  opacity: 0.5;
  margin-bottom: 8px;
  line-height: 1;
}

.testimonial-card .stars {
  color: var(--accent-gold);
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card .review-text {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.75;
  flex-grow: 1;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-card .reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.testimonial-card .reviewer .avatar {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 2px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent-gold);
  font-size: 1.05rem;
  font-family: 'Raleway', sans-serif;
}

.testimonial-card .reviewer .r-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin: 0 0 3px;
}

.testimonial-card .reviewer .r-service {
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Google badge row */
.testimonials-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50px;
  padding: 10px 22px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.g-badge i {
  color: var(--accent-gold);
  font-size: 1rem;
}

.g-badge strong {
  color: var(--white);
}

@media (max-width: 991.98px) {
  .testimonials-section {
    padding: 70px 0;
  }

  .testimonials-header {
    margin-bottom: 44px;
  }
}

@media (max-width: 575px) {
  .testimonials-section {
    padding: 56px 0;
  }

  .testimonial-card {
    padding: 26px 20px;
  }

  .testimonials-header h2 {
    font-size: 1.55rem;
  }
}

/* Legacy stars class used by old markup */
.stars {
  color: var(--accent-gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

/* ============================================================
   SECTION 7 - AREAS WE SERVE
   ============================================================ */
.areas-section {
  background: var(--primary-dark);
  padding: 90px 0;
  position: relative;
}

.areas-header {
  text-align: center;
  margin-bottom: 52px;
}

.areas-header .a-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.areas-header h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.2;
}

.areas-header h2 span {
  color: var(--accent-gold);
}

.areas-header .a-subtitle {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.areas-pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.22);
  color: var(--text-light) !important;
  padding: 11px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}

.area-pill i {
  font-size: 0.75rem;
  color: var(--accent-gold);
  transition: color 0.25s;
}

.area-pill:hover {
  background: var(--accent-gold);
  color: var(--primary-dark) !important;
  border-color: var(--accent-gold);
  text-decoration: none;
  transform: translateY(-2px);
}

.area-pill:hover i {
  color: var(--primary-dark);
}

.area-pill.active {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold) !important;
}

.area-pill.no-link {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .areas-section {
    padding: 70px 0;
  }
}

@media (max-width: 575px) {
  .areas-section {
    padding: 56px 0;
  }

  .area-pill {
    font-size: 0.82rem;
    padding: 9px 16px;
  }
}

/* ============================================================
   SECTION 8 - CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner-inner {
  background: linear-gradient(135deg, #0a1628 0%, #1a2f4e 50%, #0d1b2a 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(235, 93, 30, 0.12);
  border: 1px solid rgba(235, 93, 30, 0.3);
  color: var(--cta-orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}

.cta-banner h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.2;
}

.cta-banner>.cta-banner-inner>.container p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold) !important;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  letter-spacing: 0.5px;
}

.btn-cta-call i {
  font-size: 1rem;
}

.btn-cta-call:hover {
  background: var(--accent-gold);
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta-orange);
  color: #fff !important;
  border: 2px solid var(--cta-orange);
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.btn-cta-main:hover {
  background: var(--cta-orange-dk);
  border-color: var(--cta-orange-dk);
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: none;
}

.cta-hours {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: block;
  margin: 0 auto;
}

.cta-hours i {
  color: var(--accent-gold);
  margin-right: 4px;
}

@media (max-width: 767px) {
  .cta-banner-inner {
    padding: 70px 0;
  }

  .btn-cta-call,
  .btn-cta-main {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
    padding: 0 20px;
  }
}

@media (max-width: 575px) {
  .cta-banner-inner {
    padding: 56px 0;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }
}

/* ============================================================
   SECTION 9 - CONTACT & LOCATION
   ============================================================ */
.contact-section {
  background: var(--primary-mid);
  padding: 90px 0;
  position: relative;
}

.contact-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-header .ct-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.contact-header h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-header h2 span {
  color: var(--accent-gold);
}

.contact-header .ct-subtitle {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-info-card {
  background: var(--primary-dark);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(201, 168, 76, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-info-card h3 {
  color: var(--accent-gold);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.ci-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon i {
  color: var(--accent-gold);
  font-size: 0.95rem;
}

.contact-info-item .ci-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.contact-info-item .ci-value {
  color: var(--text-light);
  font-size: 0.93rem;
  font-weight: 600;
  margin: 0;
}

.contact-info-item a {
  color: var(--text-light) !important;
  text-decoration: none;
  transition: color 0.3s;
  overflow-wrap: anywhere;
}

.contact-info-item a:hover {
  color: var(--accent-gold) !important;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--cta-orange);
  color: #fff !important;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  padding-top: 13px;
  transition: background 0.3s, transform 0.2s;
}

.contact-cta-btn:hover {
  background: var(--cta-orange-dk);
  transform: translateY(-2px);
  color: #fff !important;
  text-decoration: none;
}

.map-widget-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.18);
}

.map-widget-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
}

.weather-wrap {
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .contact-section {
    padding: 70px 0;
  }

  .contact-info-card {
    margin-bottom: 24px;
  }
}

@media (max-width: 575px) {
  .contact-section {
    padding: 56px 0;
  }

  .contact-info-card {
    padding: 26px 20px;
  }
}

/* ============================================================
   GLOBAL RESPONSIVE
   ============================================================ */
@media (max-width: 575.98px) {
  .section-title-gold h2 {
    font-size: 1.5rem;
  }

  .cta-banner h2 {
    font-size: 1.5rem;
  }

  .cta-banner .cta-phone {
    font-size: 1.5rem;
  }

  .section-navy,
  .section-mid,
  .section-light-navy {
    padding: 60px 0;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #070e1a;
  color: var(--text-muted);
  font-size: 0.9rem;
  position: relative;
}

/* Gold top line */
.footer-top-line {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent-gold) 30%, var(--accent-gold-lt) 50%, var(--accent-gold) 70%, transparent 100%);
}

/* Main content area */
.footer-main {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Brand column */
.footer-logo-link {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-gold);
  letter-spacing: 0.3px;
  line-height: 1.2;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 340px;
}

/* Contact list */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: color 0.25s;
}

a.footer-contact-item:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

a.footer-contact-item:hover .fc-value {
  color: var(--accent-gold);
}

.fc-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}

a.footer-contact-item:hover .fc-icon {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--accent-gold);
}

.fc-icon i {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

.fc-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1px;
}

.fc-value {
  display: block;
  color: var(--text-light);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.25s;
}

/* Headings */
.footer-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
}

/* Link lists */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted) !important;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.25s, gap 0.2s;
}

.footer-links li a i {
  font-size: 0.65rem;
  color: var(--accent-gold);
  opacity: 0.6;
  transition: opacity 0.25s, transform 0.2s;
  flex-shrink: 0;
}

.footer-links li a:hover {
  color: var(--accent-gold) !important;
  gap: 10px;
  text-decoration: none;
}

.footer-links li a:hover i {
  opacity: 1;
  transform: translateX(2px);
}

/* Trust badges column */
.footer-trust-badges {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ftb-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  width: fit-content;
}

.ftb-item i {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

/* Bottom bar */
.footer-bottom {
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.3);
}

.footer-copyright {
  color: rgba(168, 181, 193, 0.6);
  font-size: 0.82rem;
  margin: 0;
}

.footer-copyright strong {
  color: var(--text-muted);
}

.footer-legal-links {
  margin: 0;
  font-size: 0.82rem;
}

.footer-legal-links a {
  color: rgba(168, 181, 193, 0.6) !important;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-legal-links a:hover {
  color: var(--accent-gold) !important;
}

.footer-legal-links .sep {
  margin: 0 8px;
  color: rgba(168, 181, 193, 0.3);
}

/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: var(--accent-gold);
  color: var(--primary-dark) !important;
  border-radius: 50%;
  font-size: 1.3rem;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-gold-lt);
  color: var(--primary-dark) !important;
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.55);
  transform: translateY(-3px);
  text-decoration: none;
}

.back-to-top i {
  line-height: 1;
}

@media (max-width: 575px) {
  .back-to-top {
    bottom: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
}

/* Footer responsive */
@media (max-width: 991.98px) {
  .footer-main {
    padding: 56px 0 44px;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-main {
    padding: 48px 0 36px;
  }

  .footer-bottom .row {
    gap: 6px;
  }

  .footer-legal-links {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .footer-trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ============================================================
   SERVICE PAGES - SHARED COMPONENTS
   ============================================================ */

/* Override hero bg for service pages (bg-image set inline) */
.svc-hero .hero-bg {
  background-image: none;
  /* overridden via inline style on each page */
}

.gold-link {
  color: var(--accent-gold);
  text-decoration: none;
}

/* Alternating section backgrounds */
.section-dark-alt {
  background: var(--primary-dark);
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.section-mid-alt {
  background: var(--primary-mid);
}

/* Shared section wrapper */
.svc-content-section {
  padding: 80px 0;
  color: var(--text-light);
}

/* Section header */
.svc-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.svc-section-header h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.svc-section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
}

.svc-section-header.text-start h2::after {
  left: 0;
  transform: none;
}

.svc-section-lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

.svc-section-header.text-start .svc-section-lead {
  margin: 0;
}

/* Detail card - horizontal icon + content */
.svc-detail-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #0f2033;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.svc-detail-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.svc-detail-card--gold {
  border-color: rgba(201, 168, 76, 0.3);
  background: linear-gradient(135deg, #0f2033 0%, #122540 100%);
}

.sdc-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.svc-detail-card:hover .sdc-icon {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--accent-gold);
}

.sdc-icon i {
  color: var(--accent-gold);
  font-size: 1.3rem;
}

.svc-detail-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-detail-card p {
  color: var(--text-muted);
  font-size: 0.91rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.svc-detail-card p:last-child {
  margin-bottom: 0;
}

/* Result card - vertical icon on top */
.svc-result-card {
  background: #0f2033;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 14px;
  padding: 28px 24px;
  height: 100%;
  text-align: center;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.svc-result-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

.src-icon {
  width: 58px;
  height: 58px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.3s, border-color 0.3s;
}

.svc-result-card:hover .src-icon {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--accent-gold);
}

.src-icon i {
  color: var(--accent-gold);
  font-size: 1.4rem;
}

.svc-result-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-result-card p {
  color: var(--text-muted);
  font-size: 0.89rem;
  line-height: 1.68;
  margin: 0;
}

/* Bullet list inside cards */
.svc-bullet-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc-bullet-list li {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.svc-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.7;
}

/* Note text inside cards */
.svc-note {
  color: var(--accent-gold) !important;
  font-size: 0.85rem !important;
  font-style: italic;
  margin-top: 14px !important;
  opacity: 0.85;
}

/* FAQ Accordion */
.svc-faq-accordion {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sfa-item {
  background: #0f2033;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.sfa-item:has(.sfa-body.open) {
  border-color: rgba(201, 168, 76, 0.45);
}

.sfa-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s;
}

.sfa-trigger:hover {
  background: rgba(201, 168, 76, 0.05);
}

.sfa-trigger span {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--white);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.sfa-trigger span i {
  color: var(--accent-gold);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.sfa-chevron {
  color: var(--accent-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sfa-trigger[aria-expanded="true"] .sfa-chevron {
  transform: rotate(180deg);
}

.sfa-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.sfa-body.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.sfa-body p {
  color: var(--text-muted);
  font-size: 0.91rem;
  line-height: 1.72;
  margin: 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 16px;
}

/* Split block - heading + stacked cards in one column */
.svc-split-block {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ssb-heading {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.ssb-heading h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ssb-heading p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.ssb-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

/* Service page responsive */
@media (max-width: 991.98px) {
  .svc-content-section {
    padding: 64px 0;
  }

  .svc-section-header {
    margin-bottom: 38px;
  }
}

@media (max-width: 767px) {
  .svc-content-section {
    padding: 52px 0;
  }
}

@media (max-width: 575px) {
  .svc-content-section {
    padding: 44px 0;
  }

  .svc-section-header h2 {
    font-size: 1.5rem;
  }

  .svc-detail-card {
    flex-direction: column;
    gap: 14px;
  }

  .sdc-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
}

/* ============================================================
   LOCATION PAGE - HERO WITH EMBEDDED FORM
   ============================================================ */
.loc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
  padding: 120px 0 80px;
}

.loc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.loc-hero:hover .loc-hero-bg {
  transform: scale(1.0);
}

.loc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(5, 12, 24, 0.96) 0%,
      rgba(8, 18, 36, 0.88) 40%,
      rgba(10, 22, 44, 0.75) 100%);
}

.loc-hero-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent 5%, var(--accent-gold) 30%, var(--accent-gold-lt) 65%, transparent 95%);
  opacity: 0.7;
}

.loc-hero-content {
  position: relative;
  z-index: 2;
}

.loc-hero-content h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.loc-subheading {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.loc-hero-form {
  position: relative;
  z-index: 2;
}

.loc-hero-form .form-card-wrap::before {
  display: none;
}

.loc-hero-form .form-card {
  background: rgba(15, 32, 51, 0.97);
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Location intro strip */
.loc-intro-section {
  background: var(--primary-mid);
  padding: 64px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.loc-intro-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 36px;
  text-align: center;
}

.loc-cta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.loc-cta-strip .strip-label {
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 600;
}

.loc-cta-strip .strip-divider {
  color: rgba(201, 168, 76, 0.4);
  font-weight: 300;
}

/* Areas local content blocks */
.loc-areas-text {
  background: var(--primary-mid);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-left: 4px solid var(--accent-gold);
  border-radius: 14px;
  padding: 32px 28px;
  margin-bottom: 32px;
  transition: border-color 0.3s;
}

.loc-areas-text:hover {
  border-color: rgba(201, 168, 76, 0.35);
  border-left-color: var(--accent-gold-lt);
}

.loc-areas-text h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.loc-areas-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.78;
  margin-bottom: 14px;
}

.loc-areas-text p:last-child {
  margin-bottom: 0;
}

/* Location hero responsive */
@media (max-width: 991.98px) {
  .loc-hero {
    min-height: auto;
    padding: 100px 0 60px;
    align-items: flex-start;
  }

  .loc-hero-overlay {
    background: rgba(5, 12, 24, 0.94);
  }

  /* Form on top, content below on mobile */
  .col-form {
    order: 1;
  }

  .col-content {
    order: 2;
  }

  .loc-hero-form {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .loc-hero {
    padding: 90px 0 50px;
  }

  .loc-hero-overlay {
    background: rgba(4, 10, 20, 0.96);
  }

  .loc-hero-content h1 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .loc-intro-section {
    padding: 50px 0;
  }
}

@media (max-width: 575px) {
  .loc-hero {
    padding: 80px 0 44px;
  }

  .loc-hero-content .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .loc-hero-content .btn-hero-primary,
  .loc-hero-content .btn-hero-call {
    width: 100%;
    justify-content: center;
  }

  .loc-areas-text {
    padding: 22px 18px;
  }
}

/* ============================================================
   BLOG PAGES
   ============================================================ */

/* ── Hero ── */
.blog-hero-section {
  position: relative;
  background: var(--primary-dark);
  padding: 130px 0 80px;
  overflow: hidden;
}

.blog-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.97) 0%, rgba(26, 47, 78, 0.90) 100%);
  pointer-events: none;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
}

.blog-hero-content h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.blog-hero-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ── Shared blog section wrappers (reuse service page alt) ── */
.blog-content-section {
  padding: 80px 0;
  color: var(--text-light);
}

/* ── Lead paragraph ── */
.blog-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto 10px;
}

/* ── Info cards (damage types) ── */
.blog-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s;
}

.blog-info-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateY(-3px);
}

.bic-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.blog-info-card h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.blog-info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Blog image wrap ── */
.blog-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(201, 168, 76, 0.2);
}

.blog-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.blog-img-wrap:hover img {
  transform: scale(1.03);
}

/* ── Factors list ── */
.blog-factor-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.blog-factor {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--accent-gold);
  border-radius: 0 10px 10px 0;
}

.bf-label {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-gold-lt);
  margin-bottom: 6px;
}

.blog-factor p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}

/* ── Benefits cards ── */
.blog-benefits-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 32px;
  height: 100%;
  transition: border-color 0.3s;
}

.blog-benefits-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.blog-benefits-card--gold {
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(201, 168, 76, 0.04);
}

.bbc-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.bbc-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--accent-gold);
}

.bbc-header h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.blog-benefits-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.blog-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.blog-benefits-list li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  opacity: 0.7;
}

.blog-benefits-list li:last-child {
  border-bottom: none;
}

.blog-benefits-list li strong {
  color: var(--white);
}

/* ── Inline blog links ── */
.blog-link {
  color: var(--accent-gold-lt);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(201, 168, 76, 0.4);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.blog-link:hover {
  color: var(--accent-gold);
  text-decoration-color: var(--accent-gold);
}

/* ── Blog section H2 ── */
.blog-content-section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

/* ── Blog section body text ── */
.blog-content-section p:not(.blog-lead):not(.blog-factor p):not(.blog-benefits-card p) {
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Blog responsive ── */
@media (max-width: 991px) {
  .blog-hero-section {
    padding: 110px 0 60px;
  }
}

@media (max-width: 767px) {
  .blog-hero-section {
    padding: 90px 0 50px;
  }

  .blog-benefits-card {
    padding: 28px 22px;
  }

  .blog-factor-list {
    gap: 14px;
  }
}

@media (max-width: 575px) {
  .blog-hero-content h1 {
    font-size: clamp(1.4rem, 7vw, 1.75rem);
  }

  .bbc-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}