/* Cardiff Insulation Company - v4 Production CSS
   Self-contained, IONOS-compatible, all devices */

/* Google Fonts loaded via @import so it works even if link tag fails */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Lato:ital,wght@0,400;0,700;0,900;1,400&display=swap');

:root {
  --gold:       #C8922A;
  --gold-dk:    #A67820;
  --gold-lt:    #E8B84A;
  --navy:       #0F1923;
  --navy2:      #1a2d40;
  --bg:         #f5f7fa;
  --grey:       #6c757d;
  --line:       #e2e6ea;
  --green:      #22a66a;
  --red:        #d63031;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { overflow-x:hidden; scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { font-family:'Lato',Arial,Helvetica,sans-serif; font-size:16px; line-height:1.65; color:var(--navy); background:#fff; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
h1,h2,h3,h4 { font-family:'Barlow Condensed','Arial Narrow',Arial,sans-serif; font-weight:800; line-height:1.15; }
img { display:block; max-width:100%; height:auto; border:0; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; }

.container { width:100%; max-width:1160px; margin:0 auto; padding:0 20px; }
.text-center { text-align:center; }

/* ── Announcement Bar ── */
.announcement-bar {
  background:var(--navy);
  color:#fff;
  padding:10px 20px;
  font-size:0.88rem;
  font-weight:700;
  font-family:'Lato',Arial,sans-serif;
  text-align:center;
}
.bar-inner {
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  max-width:1160px;
  margin:0 auto;
}
.bar-inner span { flex-shrink:1; min-width:0; }
.bar-inner a {
  color:var(--gold-lt);
  border:1px solid var(--gold);
  padding:4px 14px;
  border-radius:20px;
  white-space:nowrap;
  flex-shrink:0;
  transition:background .2s;
  font-family:'Lato',Arial,sans-serif;
}
.bar-inner a:hover { background:var(--gold); color:#fff; }

/* ── Header ── */
.header {
  position:sticky;
  top:0;
  z-index:900;
  background:#fff;
  border-bottom:2px solid var(--line);
  box-shadow:0 2px 12px rgba(0,0,0,.07);
}
.navbar .container {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  height:72px;
}
.logo { flex-shrink:0; }
.logo img { height:56px; width:auto; object-fit:contain; display:block; }

.nav-menu { display:flex; align-items:center; gap:2px; }
.nav-menu > li { position:relative; }
.nav-menu > li > a {
  display:block;
  padding:8px 10px;
  font-size:0.8rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--navy);
  border-radius:6px;
  white-space:nowrap;
  font-family:'Lato',Arial,sans-serif;
  transition:color .2s,background .2s;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color:var(--gold); background:rgba(200,146,42,.08); }

.dropdown-menu {
  display:none;
  position:absolute;
  top:calc(100% + 4px);
  left:0;
  background:#fff;
  border:1px solid var(--line);
  border-top:3px solid var(--gold);
  border-radius:10px;
  box-shadow:0 8px 32px rgba(0,0,0,.13);
  min-width:230px;
  padding:6px;
  z-index:200;
}
.dropdown:hover .dropdown-menu { display:block; }
.dropdown-menu li a {
  display:block;
  padding:10px 14px;
  font-size:0.88rem;
  font-weight:600;
  color:var(--navy);
  border-radius:6px;
  font-family:'Lato',Arial,sans-serif;
  transition:background .15s,color .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.86rem; font-weight:800; color:var(--navy); white-space:nowrap; font-family:'Lato',Arial,sans-serif; }
.phone-btn:hover { color:var(--gold); }

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

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

/* ── Sections ── */
section { padding:80px 0; }
.section-header { text-align:center; margin-bottom:50px; }
.section-tag {
  display:inline-block;
  background:rgba(200,146,42,.1);
  color:var(--gold-dk);
  font-size:0.74rem;
  font-weight:800;
  letter-spacing:.13em;
  text-transform:uppercase;
  padding:5px 16px;
  border-radius:50px;
  margin-bottom:12px;
  border:1px solid rgba(200,146,42,.25);
  font-family:'Lato',Arial,sans-serif;
}
.section-header h2 { font-size:2.6rem; color:var(--navy); margin-bottom:10px; }
.section-header p { font-size:1rem; color:var(--grey); max-width:520px; margin:0 auto; }

/* ══════════════════════════════════════════
   HERO — background-image approach (most
   reliable cross-browser, no img overflow)
   ══════════════════════════════════════════ */
.hero {
  position:relative;
  background-color:var(--navy);
  /* hero.jpg set inline on the element via style="" */
  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
  /* The overlay darkens the bg-image */
}
/* Overlay via pseudo-element — no extra HTML needed */
.hero::before {
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(15,25,35,.90) 0%, rgba(15,25,35,.55) 60%, rgba(15,25,35,.82) 100%);
  z-index:0;
}
.hero-content-wrapper {
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:row;
  gap:48px;
  align-items:center;
  padding:90px 0 70px;
}
.hero-content { flex:1.35; min-width:0; }
.hero-stats-col { flex:1; min-width:0; }

.badges { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:20px; }
.badge { display:inline-flex; align-items:center; padding:7px 14px; border-radius:50px; font-size:0.82rem; font-weight:800; line-height:1.2; font-family:'Lato',Arial,sans-serif; }
.badge-green  { background:rgba(34,166,106,.18); color:#5eeaac; border:1px solid rgba(34,166,106,.35); }
.badge-orange { background:rgba(240,120,0,.18);  color:#ffaa44; border:1px solid rgba(240,120,0,.35); }

.hero h1 { font-size:3.6rem; color:#fff; margin-bottom:16px; }
.text-gold { color:var(--gold-lt); }
.hero-text { font-size:1.06rem; color:rgba(255,255,255,.82); margin-bottom:24px; max-width:480px; }

.hero-features { display:flex; flex-wrap:wrap; gap:10px 20px; margin:22px 0; }
.feature { display:flex; align-items:center; gap:8px; color:rgba(255,255,255,.9); font-weight:700; font-size:0.92rem; font-family:'Lato',Arial,sans-serif; }
.feat-icon { width:20px; height:20px; background:var(--gold); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.68rem; font-weight:900; flex-shrink:0; }

.hero-cta { display:flex; gap:12px; margin:24px 0; flex-wrap:wrap; }
.trust-items { display:flex; gap:16px; flex-wrap:wrap; color:rgba(255,255,255,.55); font-size:0.84rem; font-weight:600; font-family:'Lato',Arial,sans-serif; }

.hero-stats { display:flex; flex-direction:column; gap:14px; }
.stat-card { background:rgba(255,255,255,.09); border:1px solid rgba(255,255,255,.15); padding:26px 20px; border-radius:14px; text-align:center; }
.stat-card--outline { border-color:rgba(200,146,42,.45); }
.stat-number { font-family:'Barlow Condensed','Arial Narrow',Arial,sans-serif; font-size:3rem; font-weight:900; color:var(--gold-lt); line-height:1; margin-bottom:6px; }
.stat-label { color:rgba(255,255,255,.7); font-size:0.86rem; font-weight:600; font-family:'Lato',Arial,sans-serif; }

/* ── Trust Strip ── */
.trust-strip { background:var(--gold); padding:14px 0; overflow:hidden; }
.trust-strip-inner {
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:0;
  max-width:1160px;
  margin:0 auto;
  padding:0 20px;
}
.trust-item { color:#fff; font-weight:800; font-size:0.84rem; padding:4px 18px; white-space:nowrap; font-family:'Lato',Arial,sans-serif; }
.trust-divider { width:1px; height:16px; background:rgba(255,255,255,.4); flex-shrink:0; }

/* ── Services ── */
.services { background:var(--bg); }
.services-grid { display:flex; flex-wrap:wrap; gap:24px; }
.service-card {
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 2px 16px rgba(0,0,0,.08);
  border:1px solid var(--line);
  transition:transform .25s,box-shadow .25s;
  display:flex;
  flex-direction:column;
  width:calc(33.333% - 16px);
}
.service-card:hover { transform:translateY(-5px); box-shadow:0 12px 36px rgba(0,0,0,.13); }

/* ── Image box: padding-bottom ratio trick ── */
.img-box {
  position:relative;      /* REQUIRED for absolute child */
  width:100%;
  padding-bottom:60%;     /* height = 60% of width → ~5:3 ratio */
  overflow:hidden;
  background:var(--navy2);
  flex-shrink:0;
}
.img-box img {
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  transition:transform .4s ease;
}
.service-card:hover .img-box img { transform:scale(1.05); }

.service-badge {
  position:absolute;
  top:12px; left:12px;
  padding:4px 12px;
  border-radius:50px;
  font-size:0.7rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  z-index:1;
  font-family:'Lato',Arial,sans-serif;
}
.badge-popular { background:var(--gold); color:#fff; }
.badge-premium { background:var(--navy); color:var(--gold-lt); }

.service-content { padding:22px; display:flex; flex-direction:column; flex:1; }
.service-content h3 { font-size:1.35rem; color:var(--navy); margin-bottom:8px; }
.service-content > p { color:var(--grey); font-size:0.9rem; line-height:1.6; margin-bottom:12px; }
.service-content ul { margin-bottom:4px; }
.service-content ul li { padding:6px 0; font-size:0.88rem; font-weight:600; color:var(--navy); border-bottom:1px solid var(--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:16px; border-top:2px solid var(--line); }
.price { font-size:0.95rem; color:var(--grey); }
.price strong { font-size:1.4rem; color:var(--gold-dk); font-weight:900; }

/* ── Why Choose ── */
.why-choose { background:var(--navy); }
.why-choose .section-tag { background:rgba(200,146,42,.18); border-color:rgba(200,146,42,.35); }
.why-choose .section-header h2 { color:#fff; }
.why-choose .section-header p { color:rgba(255,255,255,.6); }
.benefits-grid { display:flex; flex-wrap:wrap; gap:20px; }
.benefit {
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  padding:30px 22px;
  border-radius:14px;
  text-align:center;
  width:calc(33.333% - 14px);
  transition:background .2s,transform .2s;
}
.benefit:hover { background:rgba(255,255,255,.1); transform:translateY(-3px); }
.benefit-icon { font-size:2.4rem; margin-bottom:14px; }
.benefit h3 { font-size:1.2rem; color:#fff; margin-bottom:8px; }
.benefit p { color:rgba(255,255,255,.62); font-size:0.88rem; line-height:1.6; }

/* ── Areas ── */
.areas { background:#fff; }
.areas-grid { display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.areas-grid div { background:var(--bg); padding:12px 16px; border-radius:8px; text-align:center; font-size:0.86rem; font-weight:700; border:2px solid transparent; transition:all .2s; cursor:default; font-family:'Lato',Arial,sans-serif; }
.areas-grid div:hover, .areas-grid div.highlight { background:var(--gold); color:#fff; border-color:var(--gold-dk); }
.areas-note { text-align:center; margin-top:26px; color:var(--grey); font-size:0.92rem; }
.areas-note a { color:var(--gold-dk); font-weight:700; }
.areas-note a:hover { text-decoration:underline; }

/* ── Reviews ── */
.reviews { background:var(--bg); }
.rating-summary { margin-top:16px; }
.rating-summary .stars { font-size:2rem; color:var(--gold); margin-bottom:4px; }
.rating-score { font-family:'Barlow Condensed','Arial Narrow',Arial,sans-serif; font-size:3rem; font-weight:900; color:var(--gold-dk); line-height:1; margin-bottom:4px; }
.rating-summary p { color:var(--grey); font-weight:600; }
.reviews-grid { display:flex; flex-wrap:wrap; gap:20px; margin-top:40px; }
.review {
  background:#fff;
  padding:24px;
  border-radius:14px;
  border-left:4px solid var(--gold);
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  width:calc(33.333% - 14px);
  transition:transform .2s,box-shadow .2s;
}
.review:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.1); }
.review-stars { color:var(--gold); font-size:1rem; margin-bottom:10px; letter-spacing:2px; }
.review p { font-style:italic; color:var(--grey); margin-bottom:12px; line-height:1.65; font-size:0.9rem; }
.review strong { color:var(--navy); font-size:0.86rem; font-weight:800; }

/* ══════════════════════════════
   BLOG — properly centred
   ══════════════════════════════ */
.blog { background:#fff; }
.blog-grid {
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  align-items:flex-start;
}
.blog-featured {
  flex:1 1 55%;
  min-width:0;
}
.blog-sidebar {
  flex:1 1 38%;
  min-width:260px;
  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,.08);
  border:1px solid var(--line);
  transition:transform .25s,box-shadow .25s;
}
.blog-card:hover { transform:translateY(-4px); box-shadow:0 10px 30px rgba(0,0,0,.12); }

/* Blog featured image — uses .img-box */
.blog-card .img-box { padding-bottom:52%; }

/* Small sidebar cards */
.blog-card-sm {
  display:flex;
  flex-direction:row;
  overflow:hidden;
}
.blog-card-sm .img-box {
  width:130px;
  min-width:130px;
  padding-bottom:0;     /* no ratio trick — height driven by content */
  min-height:130px;     /* explicit height instead */
}
.blog-card-sm .blog-card-body { padding:16px; flex:1; min-width:0; display:flex; flex-direction:column; justify-content:center; }

.blog-card-body { padding:26px; }
.blog-card-body h3 { font-size:1.5rem; color:var(--navy); margin-bottom:12px; line-height:1.2; }
.blog-card-body p { color:var(--grey); line-height:1.72; margin-bottom:10px; font-size:0.93rem; }
.blog-card-sm .blog-card-body h3 { font-size:0.96rem; margin-bottom:6px; }
.blog-card-sm .blog-card-body p { font-size:0.84rem; line-height:1.55; }

.blog-tag {
  position:absolute;
  top:10px; left:10px;
  background:var(--gold);
  color:#fff;
  font-size:0.68rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:4px 10px;
  border-radius:50px;
  z-index:1;
  font-family:'Lato',Arial,sans-serif;
}
.blog-tag-navy { background:var(--navy); color:var(--gold-lt); }
.blog-tag-red  { background:var(--red); color:#fff; }

.blog-meta { display:flex; gap:12px; margin-bottom:8px; flex-wrap:wrap; }
.blog-date, .blog-read { font-size:0.78rem; color:var(--grey); font-weight:600; font-family:'Lato',Arial,sans-serif; }
.blog-read-link { display:inline-block; margin-top:8px; color:var(--gold-dk); font-weight:800; font-size:0.86rem; }
.blog-read-link:hover { color:var(--gold); }

/* ── Quote Form ── */
.quote-section { background:var(--bg); }
.quote-wrapper {
  display:flex;
  flex-wrap:wrap;
  gap:40px;
  background:#fff;
  padding:48px;
  border-radius:18px;
  box-shadow:0 4px 32px rgba(0,0,0,.08);
}
.quote-info { flex:1 1 260px; min-width:0; }
.quote-form-col { flex:1.5 1 360px; min-width:0; }
.quote-info .section-tag { display:inline-block; }
.quote-info h2 { font-size:2rem; margin:10px 0 12px; }
.quote-info > p { color:var(--grey); margin-bottom:18px; line-height:1.7; font-size:0.93rem; }
.quote-benefits div { margin-bottom:10px; font-weight:700; color:var(--navy); font-size:0.92rem; font-family:'Lato',Arial,sans-serif; }
.contact-box { background:var(--bg); padding:20px; border-radius:12px; margin-top:22px; text-align:center; border:2px dashed var(--line); }
.contact-box h3 { font-size:1rem; margin-bottom:4px; }
.contact-phone { display:block; font-family:'Barlow Condensed','Arial Narrow',Arial,sans-serif; font-size:1.8rem; font-weight:900; color:var(--gold-dk); margin:8px 0; }
.contact-email { display:block; color:var(--grey); font-size:0.84rem; font-weight:600; margin-top:4px; word-break:break-all; }
.hours-note { font-size:0.82rem; color:var(--grey); margin-top:6px; }
.quote-form { background:var(--bg); padding:32px; border-radius:14px; }
.form-group { margin-bottom:15px; }
.form-row { display:flex; gap:14px; flex-wrap:wrap; }
.form-row .form-group { flex:1 1 160px; min-width:0; }
.form-group label { display:block; font-weight:700; font-size:0.86rem; margin-bottom:5px; color:var(--navy); font-family:'Lato',Arial,sans-serif; }
.form-group input, .form-group select, .form-group textarea {
  width:100%; padding:11px 13px; border:2px solid var(--line); border-radius:7px;
  font-size:0.92rem; font-family:'Lato',Arial,sans-serif; color:var(--navy); background:#fff;
  transition:border-color .2s; appearance:none; -webkit-appearance:none;
}
.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,.12); }
.form-privacy { text-align:center; font-size:0.8rem; color:var(--grey); margin-top:10px; }

/* ── About ── */
.about { background:var(--navy); }
.about .section-tag { background:rgba(200,146,42,.18); border-color:rgba(200,146,42,.35); }
.about .section-header h2 { color:#fff; }
.about-content { max-width:820px; margin:0 auto; text-align:center; }
.about-content p { font-size:1rem; color:rgba(255,255,255,.72); margin-bottom:12px; line-height:1.8; }
.stats-row { display:flex; flex-wrap:wrap; gap:16px; margin-top:42px; justify-content:center; }
.stat { text-align:center; padding:22px 16px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); border-radius:12px; color:rgba(255,255,255,.7); font-size:0.86rem; font-weight:600; flex:1 1 130px; font-family:'Lato',Arial,sans-serif; }
.stat span { display:block; font-family:'Barlow Condensed','Arial Narrow',Arial,sans-serif; font-size:2.5rem; font-weight:900; color:var(--gold-lt); line-height:1; margin-bottom:6px; }

/* ── Footer ── */
.footer-top { background:var(--gold); padding:32px 0; }
.footer-cta-row { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.footer-cta-row h3 { font-size:1.65rem; color:#fff; margin-bottom:4px; }
.footer-cta-row p { color:rgba(255,255,255,.85); font-weight:600; }
.footer-cta-row .btn { background:var(--navy); color:#fff; border-color:var(--navy); flex-shrink:0; }
.footer-cta-row .btn:hover { background:#fff; color:var(--navy); }
.footer-main { background:var(--navy); padding:50px 0 32px; }
.footer-grid { display:flex; flex-wrap:wrap; gap:32px; }
.footer-brand { flex:1.4 1 200px; min-width:0; }
.footer-col { flex:1 1 130px; min-width:0; }
.footer-logo { width:150px; height:90px; object-fit:contain; object-position:left center; margin-bottom:14px; display:block; }
.footer-brand > p { color:rgba(255,255,255,.6); font-size:0.88rem; line-height:1.7; margin-bottom:4px; }
.footer-contact { display:flex; flex-direction:column; gap:7px; margin-top:16px; }
.footer-contact a { color:var(--gold-lt); font-weight:600; font-size:0.88rem; transition:color .2s; }
.footer-contact a:hover { color:#fff; }
.footer-main h4 { color:var(--gold-lt); margin-bottom:14px; font-size:0.86rem; letter-spacing:.06em; text-transform:uppercase; font-family:'Lato',Arial,sans-serif; }
.footer-main ul li { margin-bottom:8px; }
.footer-main ul a { color:rgba(255,255,255,.62); font-size:0.88rem; transition:color .2s; }
.footer-main ul a:hover { color:#fff; }
.hours { color:rgba(255,255,255,.68) !important; font-size:0.88rem !important; }
.hours strong { color:#fff; }
.footer-coverage { font-size:0.82rem !important; margin-top:8px; color:rgba(255,255,255,.42) !important; }
.footer-bottom { background:rgba(0,0,0,.3); padding:14px 0; text-align:center; }
.footer-bottom p { color:rgba(255,255,255,.35); font-size:0.82rem; }

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

/* ── Service subpages ── */
.breadcrumb { background:var(--bg); padding:12px 0; font-size:0.86rem; color:var(--grey); }
.breadcrumb a { color:var(--gold); }
.service-hero { background:var(--navy); padding:70px 0; text-align:center; }
.service-hero h1 { font-size:2.8rem; color:#fff; margin-bottom:16px; }
.service-detail { padding:56px 0; background:var(--bg); }
.detail-grid { display:flex; flex-wrap:wrap; gap:36px; }
.detail-main { flex:1.6 1 320px; min-width:0; }
.detail-side { flex:1 1 240px; min-width:0; }
.content-section { background:#fff; padding:32px; border-radius:14px; box-shadow:0 2px 14px rgba(0,0,0,.06); margin-bottom:22px; }
.content-section h2 { font-size:1.8rem; margin-bottom:14px; }
.content-section p { color:var(--grey); line-height:1.75; }
.sidebar-card { background:#fff; padding:26px; border-radius:14px; box-shadow:0 2px 14px rgba(0,0,0,.06); margin-bottom:18px; }
.pricing-card { background:var(--gold); color:#fff; padding:32px; border-radius:14px; text-align:center; margin-bottom:18px; }
.pricing-card h3 { font-size:2.6rem; color:#fff; margin:10px 0; }
.process-steps { margin:18px 0; }
.process-step { display:flex; gap:14px; padding:18px; background:var(--bg); border-radius:10px; margin-bottom:12px; }
.step-number { width:40px; height:40px; background:var(--gold); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.1rem; font-weight:900; flex-shrink:0; }
.service-page-image { margin-bottom:20px; border-radius:12px; overflow:hidden; }
.service-page-image img { width:100%; height:auto; display:block; }

/* ═══════════════════════════════
   RESPONSIVE
   ═══════════════════════════════ */
@media (max-width:1024px) {
  .service-card { width:calc(50% - 12px); }
  .benefit      { width:calc(50% - 10px); }
  .review       { width:calc(50% - 10px); }
  .hero h1      { font-size:3rem; }
}

@media (max-width:900px) {
  .hero-content-wrapper { flex-direction:column; padding:60px 0 48px; gap:32px; }
  .hero-stats { flex-direction:row; flex-wrap:wrap; gap:12px; }
  .stat-card { flex:1 1 110px; padding:18px 12px; }
  .stat-number { font-size:2.3rem; }
  .hero h1 { font-size:2.6rem; }
  .blog-featured { flex:1 1 100%; }
  .blog-sidebar { flex-direction:row; flex:1 1 100%; }
  .blog-card-sm { flex:1 1 45%; }
  .quote-wrapper { padding:32px 24px; }
}

@media (max-width:820px) {
  .nav-menu {
    position:fixed; top:0; left:-100%;
    width:280px; height:100vh;
    background:#fff; flex-direction:column; align-items:flex-start;
    gap:0; padding:80px 16px 32px;
    box-shadow:4px 0 28px rgba(0,0,0,.18);
    transition:left .28s ease; z-index:800; overflow-y:auto;
  }
  .nav-menu.active { left:0; }
  .nav-menu > li { width:100%; }
  .nav-menu > li > a { padding:12px 14px; font-size:0.94rem; }
  .dropdown-menu { position:static; box-shadow:none; border:none; padding:0 0 0 12px; display:block; background:transparent; }
  .dropdown-menu li a { font-size:0.86rem; padding:8px 12px; }
  .mobile-toggle { display:flex; }
  .phone-btn { display:none; }
}

@media (max-width:640px) {
  section { padding:56px 0; }
  .section-header h2 { font-size:1.9rem; }
  .announcement-bar { font-size:0.8rem; padding:8px 12px; }
  .hero h1 { font-size:2rem; }
  .hero-text { font-size:0.96rem; }
  .hero-cta { flex-direction:column; }
  .hero-cta .btn { width:100%; justify-content:center; }
  .trust-divider { display:none; }
  .trust-item { font-size:0.78rem; padding:3px 10px; }
  .service-card { width:100%; }
  .benefit { width:100%; }
  .review { width:100%; }
  .blog-sidebar { flex-direction:column; }
  .blog-card-sm { flex:1 1 100%; }
  .blog-card-sm .img-box { width:110px; min-width:110px; min-height:110px; }
  .quote-wrapper { padding:22px 16px; }
  .quote-form { padding:20px 14px; }
  .footer-cta-row { flex-direction:column; text-align:center; }
  .footer-cta-row .btn { width:100%; justify-content:center; }
  .bar-inner a { display:none; }
}

@media (max-width:380px) {
  .hero h1 { font-size:1.75rem; }
  .btn-lg { padding:13px 20px; font-size:0.92rem; }
}
