/* ============================================================
   Cardiff Insulation Company — Clean Production Stylesheet
   ============================================================ */

:root {
  --gold:       #C8922A;
  --gold-dark:  #A67820;
  --gold-light: #E8B84A;
  --navy:       #0F1923;
  --navy-2:     #1a2d40;
  --white:      #ffffff;
  --bg:         #f5f7fa;
  --grey:       #6c757d;
  --grey-line:  #e2e6ea;
  --green:      #22a66a;
  --red:        #d63031;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--navy);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Lato', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

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

a { color: inherit; }

ul { list-style: none; }

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

.text-center { text-align: center; }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.announcement-bar a {
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid var(--gold);
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.2s;
}
.announcement-bar a:hover { background: var(--gold); color: #fff; }

/* ── Header / Nav ── */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 2px solid var(--grey-line);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.navbar { padding: 0; }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.logo { flex-shrink: 0; line-height: 0; }
.logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 8px 11px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--navy);
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--gold); background: rgba(200,146,42,0.08); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid var(--grey-line);
  border-top: 3px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  min-width: 240px;
  padding: 6px;
  z-index: 200;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu li a:hover { background: var(--bg); color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.phone-btn {
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--navy);
  white-space: nowrap;
}
.phone-btn:hover { color: var(--gold); }

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,146,42,0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-ghost:hover { background: rgba(255,255,255,0.28); }
.btn-outline {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: #fff; }
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ── Section Shared ── */
section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: rgba(200,146,42,0.1);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(200,146,42,0.25);
}
.section-header h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.section-header p { font-size: 1.05rem; color: var(--grey); max-width: 540px; margin: 0 auto; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(15,25,35,0.88) 0%,
    rgba(15,25,35,0.60) 60%,
    rgba(15,25,35,0.75) 100%);
}
.hero-content-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0 60px;
}

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
}
.badge-green  { background: rgba(34,166,106,0.18); color: #5eeaac; border: 1px solid rgba(34,166,106,0.35); }
.badge-orange { background: rgba(240,120,0,0.18);  color: #ffaa44; border: 1px solid rgba(240,120,0,0.35); }

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: #fff;
  margin-bottom: 18px;
}
.text-gold { color: var(--gold-light); }

.hero-text { font-size: 1.08rem; color: rgba(255,255,255,0.82); margin-bottom: 26px; max-width: 500px; }

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.feature {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 0.94rem;
}
.feat-icon {
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hero-cta { display: flex; gap: 12px; margin: 26px 0; flex-wrap: wrap; }

.trust-items {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  font-weight: 600;
}

/* Hero stats */
.hero-stats { display: flex; flex-direction: column; gap: 14px; }
.stat-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 26px 22px;
  border-radius: 14px;
  text-align: center;
}
.stat-card--outline { border-color: rgba(200,146,42,0.4); }
.stat-number {
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.88rem; font-weight: 600; }

/* ── Trust Strip ── */
.trust-strip {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 16px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  color: #fff;
  font-weight: 800;
  font-size: 0.86rem;
  padding: 4px 22px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.trust-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.35); }

/* ── Services ── */
.services { background: var(--bg); }

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

.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--grey-line);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

/* ── CRITICAL: fixed image containers ── */
.service-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #1a2d40;
  flex-shrink: 0;
}
.service-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-image img { transform: scale(1.06); }

.service-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
}
.badge-popular { background: var(--gold); color: #fff; }
.badge-premium { background: var(--navy); color: var(--gold-light); }

.service-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-content h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.service-content > p { color: var(--grey); font-size: 0.92rem; line-height: 1.6; margin-bottom: 14px; }
.service-content ul { margin-bottom: 4px; }
.service-content ul li {
  padding: 7px 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--grey-line);
}
.service-content ul li:last-child { border-bottom: none; }

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 2px solid var(--grey-line);
}
.price { font-size: 1rem; color: var(--grey); }
.price strong { font-size: 1.45rem; color: var(--gold-dark); font-weight: 900; }

/* ── Why Choose ── */
.why-choose { background: var(--navy); }
.why-choose .section-tag  { background: rgba(200,146,42,0.18); border-color: rgba(200,146,42,0.35); }
.why-choose .section-header h2 { color: #fff; }
.why-choose .section-header p  { color: rgba(255,255,255,0.6); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 24px;
  border-radius: 14px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
}
.benefit:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.benefit-icon { font-size: 2.6rem; margin-bottom: 16px; }
.benefit h3 { font-size: 1.25rem; color: #fff; margin-bottom: 8px; }
.benefit p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; }

/* ── Areas ── */
.areas { background: #fff; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.areas-grid div {
  background: var(--bg);
  padding: 14px 10px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: default;
  transition: all 0.2s;
}
.areas-grid div:hover,
.areas-grid div.highlight { background: var(--gold); color: #fff; border-color: var(--gold-dark); transform: scale(1.03); }
.areas-note { text-align: center; margin-top: 28px; color: var(--grey); font-size: 0.93rem; }
.areas-note a { color: var(--gold-dark); font-weight: 700; text-decoration: none; }
.areas-note a:hover { text-decoration: underline; }

/* ── Reviews ── */
.reviews { background: var(--bg); }
.rating-summary { margin-top: 18px; }
.rating-summary .stars { font-size: 2rem; color: var(--gold); margin-bottom: 6px; }
.rating-score { font-family: 'Barlow Condensed', Arial, sans-serif; font-size: 3.2rem; font-weight: 900; color: var(--gold-dark); line-height: 1; margin-bottom: 6px; }
.rating-summary p { color: var(--grey); font-weight: 600; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.review {
  background: #fff;
  padding: 26px;
  border-radius: 14px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.review:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review p { font-style: italic; color: var(--grey); margin-bottom: 14px; line-height: 1.7; font-size: 0.92rem; }
.review strong { color: var(--navy); font-size: 0.88rem; }

/* ── Blog ── */
.blog { background: #fff; }
.blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
}
.blog-sidebar { display: flex; flex-direction: column; gap: 20px; }

.blog-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--grey-line);
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }

/* Featured blog card */
.blog-card--featured .blog-img-wrap {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: var(--navy-2);
}
.blog-card--featured .blog-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-card--featured .blog-card-content { padding: 32px; }
.blog-card--featured h3 { font-size: 1.7rem; color: var(--navy); margin-bottom: 14px; line-height: 1.2; }
.blog-card--featured p { color: var(--grey); line-height: 1.75; margin-bottom: 12px; font-size: 0.95rem; }

/* Small blog cards */
.blog-card--small {
  display: flex;
  flex-direction: row;
}
.blog-card--small .blog-img-wrap {
  position: relative;
  width: 130px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--navy-2);
}
.blog-card--small .blog-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-card--small .blog-card-content { padding: 18px; flex: 1; }
.blog-card--small h3 { font-size: 1rem; color: var(--navy); margin-bottom: 7px; line-height: 1.3; }
.blog-card--small p { font-size: 0.87rem; color: var(--grey); line-height: 1.6; }

.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 1;
}
.blog-tag--navy { background: var(--navy); color: var(--gold-light); }
.blog-tag--red  { background: var(--red); color: #fff; }

.blog-meta { display: flex; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-date, .blog-read { font-size: 0.8rem; color: var(--grey); font-weight: 600; }
.blog-read-link { display: inline-block; margin-top: 10px; color: var(--gold-dark); font-weight: 800; font-size: 0.87rem; text-decoration: none; }
.blog-read-link:hover { color: var(--gold); }

/* ── Quote Form ── */
.quote-section { background: var(--bg); }
.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 44px;
  background: #fff;
  padding: 52px;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
}
.quote-info .section-tag { display: inline-block; }
.quote-info h2 { font-size: 2.1rem; margin: 10px 0 14px; }
.quote-info > p { color: var(--grey); margin-bottom: 22px; line-height: 1.7; font-size: 0.95rem; }
.quote-benefits { margin: 20px 0; }
.quote-benefits div { margin-bottom: 11px; font-weight: 700; color: var(--navy); font-size: 0.93rem; }

.contact-box {
  background: var(--bg);
  padding: 22px;
  border-radius: 12px;
  margin-top: 26px;
  text-align: center;
  border: 2px dashed var(--grey-line);
}
.contact-box h3 { font-size: 1.05rem; margin-bottom: 4px; }
.contact-phone {
  display: block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--gold-dark);
  text-decoration: none;
  margin: 10px 0;
}
.contact-email {
  display: block;
  color: var(--grey);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 5px;
  word-break: break-all;
}
.hours-note { font-size: 0.83rem; color: var(--grey); margin-top: 7px; }

.quote-form {
  background: var(--bg);
  padding: 36px;
  border-radius: 14px;
}
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--grey-line);
  border-radius: 7px;
  font-size: 0.93rem;
  font-family: 'Lato', Arial, sans-serif;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12);
}
.form-group input.error,
.form-group select.error { border-color: var(--red); }
.form-privacy { text-align: center; font-size: 0.82rem; color: var(--grey); margin-top: 12px; }

/* ── About ── */
.about { background: var(--navy); }
.about .section-tag { background: rgba(200,146,42,0.18); border-color: rgba(200,146,42,0.35); }
.about .section-header h2 { color: #fff; }
.about-content { max-width: 860px; margin: 0 auto; text-align: center; }
.about-content p { font-size: 1.02rem; color: rgba(255,255,255,0.72); margin-bottom: 14px; line-height: 1.8; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 46px;
}
.stat {
  text-align: center;
  padding: 24px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}
.stat:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); }
.stat span {
  display: block;
  font-family: 'Barlow Condensed', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 7px;
}

/* ── Footer ── */
.footer-top {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 36px 0;
}
.footer-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-cta-row h3 { font-size: 1.75rem; color: #fff; margin-bottom: 5px; }
.footer-cta-row p { color: rgba(255,255,255,0.82); font-weight: 600; }
.footer-cta-row .btn-primary {
  background: #fff;
  color: var(--gold-dark);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.footer-cta-row .btn-primary:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

.footer-main { background: var(--navy); padding: 56px 0 36px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

/* ── FOOTER LOGO FIX ── */
.footer-logo {
  width: 160px;
  height: 100px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 16px;
  display: block;
  background: transparent;
}

.footer-brand > p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.footer-contact a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }
.footer-main h4 {
  color: var(--gold-light);
  margin-bottom: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-main ul li { margin-bottom: 9px; }
.footer-main ul a {
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.15s;
}
.footer-main ul a:hover { color: #fff; padding-left: 4px; }
.hours { color: rgba(255,255,255,0.68) !important; font-size: 0.9rem !important; }
.hours strong { color: #fff; }
.footer-coverage { font-size: 0.84rem !important; margin-top: 10px; color: rgba(255,255,255,0.45) !important; }

.footer-bottom { background: rgba(0,0,0,0.3); padding: 16px 0; }
.footer-bottom .container { text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.83rem; }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Service Pages (subpages) ── */
.breadcrumb { background: var(--bg); padding: 14px 0; font-size: 0.88rem; color: var(--grey); }
.breadcrumb a { color: var(--gold); text-decoration: none; }

.service-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 72px 0;
  color: #fff;
  text-align: center;
}
.service-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; margin-bottom: 18px; }

.service-detail { padding: 60px 0; background: var(--bg); }
.detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; }

.content-section {
  background: #fff;
  padding: 36px;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.content-section h2 { font-size: 1.9rem; margin-bottom: 18px; color: var(--navy); }
.content-section h3 { font-size: 1.4rem; margin: 22px 0 12px; color: var(--navy); }
.content-section p { color: var(--grey); line-height: 1.75; }

.sidebar-card {
  background: #fff;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  margin-bottom: 20px;
  position: sticky;
  top: 90px;
}
.pricing-card {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  padding: 36px;
  border-radius: 14px;
  text-align: center;
  margin-bottom: 20px;
}
.pricing-card h3 { font-size: 2.8rem; color: #fff; margin: 12px 0; }

.process-steps { margin: 20px 0; }
.process-step {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: 10px;
  margin-bottom: 14px;
}
.step-number {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}

.service-page-image { margin-bottom: 22px; border-radius: 12px; overflow: hidden; }
.service-page-image img { width: 100%; height: auto; display: block; }

/* ============================================================
   RESPONSIVE — Mobile First
   ============================================================ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid    { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 28px; }
  .blog-grid       { grid-template-columns: 1fr; }
  .blog-card--featured .blog-img-wrap { height: 220px; }
  .blog-sidebar    { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .stats-row       { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .detail-grid     { grid-template-columns: 1fr; }
  .sidebar-card    { position: static; }
}

/* Phablet: ≤ 768px */
@media (max-width: 768px) {

  /* Nav — slide-in drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: min(300px, 85vw);
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 90px 20px 40px;
    box-shadow: 4px 0 28px rgba(0,0,0,0.18);
    transition: left 0.28s ease;
    z-index: 800;
    overflow-y: auto;
  }
  .nav-menu.active { left: 0; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a {
    padding: 13px 14px;
    font-size: 0.96rem;
    border-radius: 8px;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 14px;
    display: block;
    background: transparent;
  }
  .dropdown-menu li a { font-size: 0.88rem; padding: 9px 12px; }

  .mobile-toggle { display: flex; }
  .phone-btn { display: none; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    padding: 60px 0 48px;
    gap: 32px;
  }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  .hero-features { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }
  .stat-card { flex: 1; min-width: 130px; padding: 18px 14px; }
  .stat-number { font-size: 2.3rem; }

  /* Trust strip */
  .trust-divider { display: none; }
  .trust-item { padding: 4px 12px; font-size: 0.82rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-image { height: 200px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr; }

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

  /* Blog */
  .blog-sidebar { grid-template-columns: 1fr; }
  .blog-card--small { flex-direction: column; }
  .blog-card--small .blog-img-wrap { width: 100%; height: 160px; }

  /* Quote */
  .quote-wrapper { grid-template-columns: 1fr; padding: 28px 22px; }
  .quote-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }

  /* About */
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-top .footer-cta-row { flex-direction: column; text-align: center; }
}

/* Mobile: ≤ 480px */
@media (max-width: 480px) {
  section { padding: 56px 0; }
  .hero h1 { font-size: 1.85rem; }
  .section-header h2 { font-size: 1.75rem; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-features { grid-template-columns: 1fr; }
  .announcement-bar { font-size: 0.8rem; }
  .announcement-bar a { display: none; }
  .quote-wrapper { padding: 22px 16px; }
}
