/* ============================================================
   CRAFTSHIELD ROOFING — MAIN STYLESHEET
   craftshieldroofing.ie
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand Blues — matched to logo */
  --blue-primary:  #2B75C5;
  --blue-dark:     #0C2851;
  --blue-bright:   #3D8EE0;
  --blue-light:    #BDD9F5;
  --blue-xlight:   #D2E7F8;

  /* Grey palette — blue-grey toned */
  --steel:         #6B7E96;
  --grey-900:      #0F172A;
  --grey-800:      #1E293B;
  --grey-700:      #334155;
  --grey-600:      #475569;
  --grey-500:      #5F7490;
  --grey-400:      #849AB4;
  --grey-300:      #B2C3D6;
  --grey-200:      #C2D1E2;
  --grey-100:      #D4E0EE;
  --grey-50:       #E6EDF6;
  --white:         #FFFFFF;

  /* CTA / Accent — Steel Grey */
  --cta:           #3A5272;
  --cta-dark:      #263749;
  --cta-glow:      rgba(58, 82, 114, 0.35);

  /* Typography */
  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;

  /* Layout */
  --max-w:         1200px;
  --pad:           1.5rem;

  /* Radii */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  14px;
  --r-xl:  20px;
  --r-pill:9999px;

  /* Shadows */
  --s-sm:  0 1px 3px rgba(0,0,0,.08);
  --s-md:  0 4px 14px rgba(0,0,0,.10);
  --s-lg:  0 10px 30px rgba(0,0,0,.14);
  --s-xl:  0 20px 50px rgba(0,0,0,.18);
  --s-blue:0 6px 24px rgba(43,117,197,.35);

  /* Transitions */
  --t:     all .3s cubic-bezier(.4,0,.2,1);
  --t-fast:all .15s cubic-bezier(.4,0,.2,1);

  /* Z-index */
  --z-drop:  100;
  --z-nav:   200;
  --z-float: 900;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--grey-700);
  background: var(--grey-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--grey-900);
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 4vw,   2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.25rem; }
p  { line-height: 1.75; color: var(--grey-600); }
strong { font-weight: 700; }

/* ============================================================
   4. LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section      { padding: 6rem 0; }
.section-sm   { padding: 4rem 0; }
.section-bg   { background: var(--grey-100); }
.section-dark { background: var(--blue-dark); }
.section-blue { background: var(--blue-dark); }

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.badge {
  display: inline-block;
  background: var(--blue-xlight);
  color: var(--blue-primary);
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35em 1.1em;
  border-radius: var(--r-pill);
  margin-bottom: .875rem;
}
.badge-dark {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}
.section-title       { margin-bottom: .75rem; }
.section-title-white { color: var(--white); }
.section-sub {
  font-size: 1.075rem;
  color: var(--grey-500);
  max-width: 580px;
  margin: 0 auto;
}
.section-sub-white { color: rgba(255,255,255,.75); }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 2rem;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  transition: var(--t);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue-primary);
  color: var(--white);
  border-color: var(--blue-primary);
  box-shadow: var(--s-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(43,117,197,.45);
}
.btn-cta {
  background: var(--cta);
  color: var(--white);
  border-color: var(--cta);
  box-shadow: 0 4px 18px var(--cta-glow);
}
.btn-cta:hover {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--cta-glow);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-primary);
  transform: translateY(-2px);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue-primary);
  border-color: var(--blue-primary);
}
.btn-outline-blue:hover {
  background: var(--blue-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }
.btn-sm { padding: .6rem 1.3rem;  font-size: .85rem;  }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   6. TOP BAR
   ============================================================ */
.top-bar {
  background: var(--blue-dark);
  padding: .55rem 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--grey-400);
}
.top-bar-item i { color: var(--blue-bright); font-size: .8rem; }
.top-bar-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
  transition: var(--t-fast);
}
.top-bar-phone:hover { color: var(--cta); }
.top-bar-phone i { color: var(--cta); }

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.header {
  background: var(--grey-50);
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  border-bottom: 2px solid var(--grey-200);
  transition: var(--t);
}
.header.scrolled { box-shadow: var(--s-md); }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 118px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .95rem;
  font-family: var(--font-head);
  font-size: .86rem;
  font-weight: 600;
  color: var(--grey-700);
  border-radius: var(--r-sm);
  transition: var(--t-fast);
}
.nav-link:hover,
.nav-link.active {
  color: var(--blue-primary);
  background: var(--blue-xlight);
}
.nav-link i.chevron { font-size: .65rem; transition: transform .25s ease; }
.nav-item:hover .nav-link i.chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-drop {
  position: absolute;
  top: calc(100% + .6rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  box-shadow: var(--s-xl);
  padding: .5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--t);
  z-index: var(--z-drop);
}
.nav-item:hover .nav-drop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.drop-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem .875rem;
  font-size: .86rem;
  font-weight: 500;
  color: var(--grey-700);
  border-radius: var(--r-md);
  transition: var(--t-fast);
}
.drop-link:hover {
  background: var(--blue-xlight);
  color: var(--blue-primary);
}
.drop-link i {
  color: var(--blue-primary);
  width: 18px;
  text-align: center;
  font-size: .95rem;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: 1rem;
}
.nav-phone-link {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--blue-dark);
  transition: var(--t-fast);
}
.nav-phone-link:hover { color: var(--blue-primary); }
.nav-phone-link i { color: var(--cta); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 10);
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--grey-700);
  border-radius: 2px;
  transition: var(--t);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  overflow-x: hidden;
  background: var(--blue-dark);
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(12,40,81,.92) 0%,
    rgba(12,40,81,.82) 45%,
    rgba(12,40,81,.55) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5rem;
  max-width: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.92);
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4em 1.1em;
  border-radius: var(--r-pill);
  backdrop-filter: blur(6px);
  margin-bottom: 1.5rem;
}
.hero-eyebrow i { color: #FBBF24; }
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.hero-title .accent { color: #60AAFF; }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.85);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 2.25rem;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.88);
  font-size: .88rem;
  font-weight: 500;
}
.hero-trust-item i { color: #34D399; font-size: .95rem; }

/* ============================================================
   9. STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--blue-primary);
  padding: 1.25rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
}
.stat-item {
  text-align: center;
  padding: .75rem 1rem;
  border-right: 1px solid rgba(255,255,255,.22);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.82);
  font-weight: 500;
}

/* ============================================================
   10. SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--s-md);
  border: 1px solid var(--grey-200);
  transition: var(--t);
  display: block;
  text-decoration: none;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--s-xl);
  border-color: var(--blue-light);
}
.sc-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.sc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:hover .sc-img img { transform: scale(1.07); }
.sc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,40,81,.65), transparent);
  opacity: 0;
  transition: var(--t);
}
.service-card:hover .sc-img-overlay { opacity: 1; }
.sc-body { padding: 1.5rem; }
.sc-icon {
  width: 46px;
  height: 46px;
  background: var(--blue-xlight);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .875rem;
  transition: var(--t);
}
.sc-icon i { font-size: 1.3rem; color: var(--blue-primary); transition: var(--t); }
.service-card:hover .sc-icon { background: var(--blue-primary); }
.service-card:hover .sc-icon i { color: var(--white); }
.sc-title {
  font-size: 1.15rem;
  color: var(--grey-900);
  margin-bottom: .45rem;
}
.sc-desc {
  font-size: .88rem;
  color: var(--grey-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.sc-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--blue-primary);
  transition: var(--t-fast);
}
.sc-more i { font-size: .7rem; transition: transform .2s ease; }
.service-card:hover .sc-more i { transform: translateX(4px); }

/* ============================================================
   11. WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-img-wrap { position: relative; }
.why-img-wrap img {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--s-xl);
}
.why-badge-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--blue-primary);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 1.35rem 1.75rem;
  box-shadow: var(--s-xl);
  text-align: center;
  min-width: 120px;
}
.why-badge-float .wbf-num {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.why-badge-float .wbf-lbl {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  opacity: .88;
}
.why-content .section-head { text-align: left; }
.why-content .section-sub  { margin: 0; }
.why-feats {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.why-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-feat-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-xlight);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feat-icon i { color: var(--blue-primary); font-size: 1.1rem; }
.why-feat-text h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: .2rem;
}
.why-feat-text p {
  font-size: .875rem;
  color: var(--grey-500);
  margin: 0;
}

/* ============================================================
   12. GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 220px;
  gap: .75rem;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
}
.gal-item.span2 {
  grid-column: span 2;
  grid-row: span 2;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gal-item:hover img { transform: scale(1.08); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,40,81,.85), transparent 55%);
  opacity: 0;
  transition: var(--t);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-label {
  color: var(--white);
  font-size: .85rem;
  font-weight: 600;
  font-family: var(--font-head);
}

/* ============================================================
   13. BEFORE & AFTER
   ============================================================ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.ba-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.ba-img {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ba-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.ba-tag {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(12,40,81,.88);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3em .8em;
  border-radius: var(--r-pill);
}
.ba-tag.after { background: var(--blue-primary); }
.ba-content .section-head { text-align: left; }
.ba-content .section-sub  { margin: 0; }
.ba-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.ba-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  color: var(--grey-700);
  font-weight: 500;
}
.ba-list li i { color: var(--blue-primary); width: 18px; }

/* ============================================================
   14. TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  box-shadow: var(--s-md);
  border: 1px solid var(--grey-200);
  position: relative;
  transition: var(--t);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s-lg);
  border-color: var(--blue-light);
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--blue-light);
  line-height: 1;
}
.testi-stars {
  display: flex;
  gap: .25rem;
  color: #FBBF24;
  font-size: .88rem;
  margin-bottom: 1rem;
}
.testi-text {
  font-size: .93rem;
  color: var(--grey-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--blue-primary);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name {
  font-weight: 700;
  color: var(--grey-900);
  font-size: .95rem;
  margin: 0;
}
.testi-loc {
  font-size: .82rem;
  color: var(--grey-400);
  margin: 0;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--white);
  box-shadow: var(--s-md);
  border-radius: var(--r-xl);
  padding: 1rem 2rem;
  max-width: 360px;
  margin: 2.5rem auto 0;
}
.g-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
}
.g-b { color: #4285F4; } .g-r { color: #EA4335; }
.g-y { color: #FBBC05; } .g-g { color: #34A853; }
.g-score {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--grey-900);
  line-height: 1;
}
.g-stars {
  display: flex;
  gap: .15rem;
  color: #FBBF24;
  font-size: .8rem;
}
.g-reviews { font-size: .78rem; color: var(--grey-400); }

/* ============================================================
   15. SERVICE AREAS
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--t);
}
.area-card:hover {
  border-color: var(--blue-primary);
  background: var(--blue-xlight);
  transform: translateY(-5px);
  box-shadow: var(--s-lg);
}
.area-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-xlight);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--t);
}
.area-card:hover .area-icon { background: var(--blue-primary); }
.area-icon i {
  font-size: 1.5rem;
  color: var(--blue-primary);
  transition: var(--t);
}
.area-card:hover .area-icon i { color: var(--white); }
.area-title {
  font-size: 1.2rem;
  color: var(--grey-900);
  margin-bottom: 1rem;
}
.area-list li {
  font-size: .88rem;
  color: var(--grey-600);
  padding: .3rem 0;
  border-bottom: 1px solid var(--grey-200);
}
.area-list li:last-child { border: none; }

/* ============================================================
   16. CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 100%);
  padding: 4.5rem 0;
}
.cta-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.cta-banner-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .5rem;
}
.cta-banner-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin: 0;
}
.cta-banner-right {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  align-items: flex-end;
}
.cta-tel {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--white);
  transition: var(--t-fast);
}
.cta-tel:hover { color: rgba(255,255,255,.8); }
.cta-tel i { color: var(--cta); }

/* ============================================================
   17. FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: var(--t);
}
.faq-item.open {
  border-color: var(--blue-primary);
  box-shadow: var(--s-md);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--grey-900);
}
.faq-q i { color: var(--blue-primary); transition: transform .3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .875rem;
  color: var(--grey-600);
  line-height: 1.75;
}

/* ============================================================
   18. CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4.5rem;
  align-items: start;
}
.contact-info-title { margin-bottom: .875rem; }
.contact-info-desc  { margin-bottom: 2rem; }
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-xlight);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i { color: var(--blue-primary); font-size: 1.05rem; }
.contact-item-label {
  font-weight: 700;
  font-family: var(--font-head);
  font-size: .88rem;
  color: var(--grey-900);
  margin-bottom: .2rem;
}
.contact-item-value {
  font-size: .93rem;
  color: var(--grey-600);
  margin: 0;
}
.contact-item-value a { color: var(--blue-primary); }
.contact-item-value a:hover { color: var(--blue-dark); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.25rem;
  border: 1px solid var(--grey-200);
}
.contact-form-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--grey-700);
  margin-bottom: .38rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--grey-300);
  border-radius: var(--r-md);
  font-size: .93rem;
  color: var(--grey-900);
  background: var(--white);
  transition: var(--t-fast);
  outline: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(43,117,197,.14);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--grey-900);
  color: var(--grey-400);
}
.footer-main { padding: 5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer-logo { height: 85px; width: auto; margin-bottom: 1.1rem; }
.footer-desc {
  font-size: .88rem;
  color: var(--grey-500);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: .625rem; }
.footer-soc {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  transition: var(--t-fast);
}
.footer-soc:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-h {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .55rem; }
.footer-link {
  font-size: .88rem;
  color: var(--grey-500);
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  gap: .45rem;
}
.footer-link:hover { color: var(--white); padding-left: .2rem; }
.footer-link i { font-size: .6rem; color: var(--blue-bright); }
.footer-contact-row {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: .7rem;
}
.footer-contact-row i {
  color: var(--blue-bright);
  font-size: .85rem;
  margin-top: .15rem;
  flex-shrink: 0;
}
.footer-contact-row span {
  font-size: .88rem;
  color: var(--grey-500);
  line-height: 1.6;
}
.footer-contact-row a { color: var(--grey-500); }
.footer-contact-row a:hover { color: var(--white); }
hr.footer-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-copy { font-size: .82rem; color: var(--grey-600); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-link {
  font-size: .82rem;
  color: var(--grey-600);
  transition: var(--t-fast);
}
.footer-bottom-link:hover { color: var(--white); }

/* ============================================================
   20. FLOATING CTA
   ============================================================ */
.float-cta {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: var(--z-float);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.375rem;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--s-xl);
  transition: var(--t);
  white-space: nowrap;
  text-decoration: none;
}
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,.3); }
.float-call { background: var(--cta); }
.float-call:hover { background: var(--cta-dark); }
.float-quote { background: var(--blue-primary); }
.float-quote:hover { background: var(--blue-dark); }
.float-btn i { font-size: 1rem; }

/* WhatsApp floating button — pulse animation */
.float-wa {
  background: #25D366 !important;
  animation: wa-pulse 2.5s infinite;
}
.float-wa:hover { background: #1ebe5d !important; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.6), var(--s-xl); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0), var(--s-xl); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), var(--s-xl); }
}

/* ============================================================
   21. PAGE HERO (Service Pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 62vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,40,81,.93) 0%, rgba(12,40,81,.65) 65%, rgba(12,40,81,.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 2rem 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.bc-item {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
}
.bc-item a { color: rgba(255,255,255,.6); }
.bc-item a:hover { color: var(--white); }
.bc-sep { color: rgba(255,255,255,.35); font-size: .65rem; }
.bc-item.active { color: var(--white); }
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.page-hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 540px;
  margin-bottom: 2rem;
}
.page-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   22. SERVICE INTRO
   ============================================================ */
.svc-intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
.svc-intro-text h2 { margin-bottom: 1rem; }
.svc-intro-text p  { margin-bottom: 1rem; }
.svc-feat-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.svc-feat-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .93rem;
  color: var(--grey-700);
  font-weight: 500;
}
.svc-feat-list li i { color: var(--blue-primary); flex-shrink: 0; }

/* Sidebar CTA Box */
.svc-sidebar { position: sticky; top: 100px; }
.svc-cta-box {
  background: var(--blue-primary);
  border-radius: var(--r-xl);
  padding: 2rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.svc-cta-box-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}
.svc-cta-box-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
}
.svc-cta-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  margin: 1rem 0;
}
.svc-cta-divider::before,
.svc-cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.2);
}
.svc-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  transition: var(--t-fast);
}
.svc-cta-phone:hover { color: rgba(255,255,255,.82); }

.svc-trust-box {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-xl);
  padding: 1.5rem;
}
.svc-trust-box-title {
  font-size: .88rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--grey-900);
  margin-bottom: 1rem;
}
.svc-trust-items { display: flex; flex-direction: column; gap: .6rem; }
.svc-trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .88rem;
  color: var(--grey-700);
  font-weight: 500;
}
.svc-trust-item i { color: #34D399; font-size: .95rem; }

/* ============================================================
   23. PROCESS STEPS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(to right, var(--blue-primary), var(--blue-bright));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.ps-num {
  width: 64px;
  height: 64px;
  background: var(--white);
  border: 3px solid var(--blue-primary);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--blue-primary);
  margin: 0 auto 1.25rem;
  box-shadow: var(--s-md);
  background: var(--white);
}
.ps-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: .5rem;
}
.ps-desc {
  font-size: .85rem;
  color: var(--grey-500);
  line-height: 1.65;
}

/* ============================================================
   24. SERVICE GALLERY
   ============================================================ */
.svc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.svc-gal-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.svc-gal-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .4s ease;
}
.svc-gal-item:hover img { transform: scale(1.06); }

/* ============================================================
   25. RELATED SERVICES
   ============================================================ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}

/* ============================================================
   26. SCROLL ANIMATIONS
   ============================================================ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
[data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-aos][data-delay="100"] { transition-delay: .1s; }
[data-aos][data-delay="200"] { transition-delay: .2s; }
[data-aos][data-delay="300"] { transition-delay: .3s; }
[data-aos][data-delay="400"] { transition-delay: .4s; }
[data-aos][data-delay="500"] { transition-delay: .5s; }

/* ============================================================
   27. HERO FORM PANEL
   ============================================================ */
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 3.5rem;
  align-items: center;
}
.hero-inner > * { min-width: 0; }

.hero-form-panel {
  background: rgba(255,255,255,.97);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  position: relative;
  z-index: 2;
  align-self: start;
}

.hero-form-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--grey-900);
  margin-bottom: .25rem;
  line-height: 1.2;
}
.hero-form-sub {
  font-size: .82rem;
  color: var(--grey-500);
  margin-bottom: 1.25rem;
}

.hero-form .form-label {
  color: var(--grey-700);
}
.hero-form .form-group {
  margin-bottom: .875rem;
}
.hero-form .form-input,
.hero-form .form-select,
.hero-form .form-textarea {
  padding: .65rem .875rem;
  font-size: .88rem;
}
.hero-form .form-textarea {
  min-height: 80px;
}

.hero-form-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.1rem;
}

.hero-form-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .78rem;
  color: var(--grey-400);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-form-divider::before,
.hero-form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-200);
}

.hero-quick-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .625rem;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37,211,102,.4);
}
.btn-call {
  background: var(--cta);
  color: var(--white);
  border-color: var(--cta);
  box-shadow: 0 4px 16px var(--cta-glow);
}
.btn-call:hover {
  background: var(--cta-dark);
  border-color: var(--cta-dark);
  transform: translateY(-2px);
}

.hero-form-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--grey-400);
  margin-top: .875rem;
  font-weight: 500;
}
.hero-form-badge i { color: #34D399; font-size: .85rem; }

/* ============================================================
   28. RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-form-panel { max-width: 520px; }
  .services-grid  { grid-template-columns: repeat(2,1fr); }
  .gallery-grid   { grid-template-columns: repeat(3,1fr); }
  .gal-item.span2 { grid-column: span 2; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-grid   { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .stats-inner    { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
  .why-grid,
  .ba-grid,
  .contact-grid,
  .svc-intro-grid,
  .cta-banner-inner { grid-template-columns: 1fr; }

  .why-img-wrap { order: -1; }
  .why-badge-float { right: 1rem; bottom: 1rem; }
  .cta-banner-right { align-items: flex-start; }
  .svc-sidebar { position: static; }
  .testi-grid  { grid-template-columns: repeat(2,1fr); }
  .areas-grid  { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   28. RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section, .section-sm { padding: 4rem 0; }

  .top-bar-left { display: none; }
  .top-bar-inner { justify-content: center; }
  .top-bar { padding: .4rem 0; }

  /* Mobile nav */
  .nav-menu {
    position: fixed;
    inset: 0;
    background: var(--grey-50);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 200px 1.5rem 2rem;
    gap: .25rem;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: calc(var(--z-nav) - 1);
    overflow-y: auto;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { font-size: 1.05rem; padding: .75rem 1rem; width: 100%; }
  .nav-drop {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--grey-100);
    margin: .25rem 0 .25rem 1rem;
    display: none;
  }
  .nav-item.open .nav-drop { display: block; }
  .nav-cta-wrap { display: none; }
  .nav-phone-link { display: none; }
  .nav-hamburger { display: flex; }

  /* Centre & enlarge logo on mobile */
  .nav-wrap {
    height: 185px;
    min-height: 185px;
    position: relative;
    justify-content: flex-end;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .nav-logo img { height: 170px; }

  /* Layout */
  .services-grid    { grid-template-columns: 1fr; }
  .areas-grid       { grid-template-columns: 1fr; }
  .testi-grid       { grid-template-columns: 1fr; }
  .faq-grid         { grid-template-columns: 1fr; }
  .related-grid     { grid-template-columns: 1fr; }
  .svc-gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid     { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .gal-item.span2   { grid-column: span 2; }

  /* ── Hero: natural height, no forced 100vh ── */
  .hero {
    min-height: auto !important;
    align-items: flex-start;
    overflow-x: hidden;
  }
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1.75rem;
    padding: 2rem 0 2.5rem;
    width: 100%;
  }
  .hero-inner > * { min-width: 0; max-width: 100%; }

  .hero-content {
    padding: 0 !important;
    max-width: 100% !important;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  .hero-eyebrow {
    white-space: normal;
    word-break: break-word;
    font-size: .75rem;
  }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.4rem); line-height: 1.1; }
  .hero-sub { max-width: 100%; font-size: .97rem; }
  .hero-trust { gap: .6rem; }
  .hero-trust-item { font-size: .82rem; }

  .hero-form-panel {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 1.5rem 1.25rem;
  }
  .hero-quick-btns { grid-template-columns: 1fr 1fr; }
  .hero-quick-btns .btn { padding: .7rem .75rem; font-size: .82rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.22); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .ba-imgs { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

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

  .page-hero { height: auto; padding: 5rem 0 3rem; min-height: 380px; }

  /* Floating btns - icon only on mobile */
  .float-btn span { display: none; }
  .float-btn {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .float-btn i { font-size: 1.25rem; }
  /* WhatsApp button is larger and more prominent on mobile */
  .float-wa {
    width: 64px !important;
    height: 64px !important;
  }
  .float-wa i { font-size: 1.6rem !important; }
  .float-cta { bottom: 1.25rem; right: 1.25rem; gap: .625rem; }
}

@media (max-width: 480px) {
  .svc-gallery-grid { grid-template-columns: 1fr; }
  .ba-imgs          { grid-template-columns: 1fr; }
  .google-badge     { flex-direction: column; text-align: center; }

  /* Extra small screens */
  .hero-title       { font-size: clamp(1.7rem, 8vw, 2.1rem); }
  .hero-eyebrow     { font-size: .75rem; }
  .hero-sub         { font-size: .95rem; }
  .hero-trust       { gap: .6rem; }
  .hero-trust-item  { font-size: .82rem; }
  .stats-inner      { grid-template-columns: repeat(2,1fr); }
  .cta-banner       { padding: 3rem 0; }
  .cta-tel          { font-size: 1.4rem; }
  .section          { padding: 3rem 0; }

  /* Nav on very small screens */
  .nav-logo img     { height: 150px; }
  .nav-wrap         { height: 165px; min-height: 165px; }
}

