/* ============================================================
   GLOBAL CSS — Local Roofing Repairs UK Ltd
   Fonts loaded via <link> in BaseLayout for font-display:swap.
   ============================================================ */

/* ---- Variables ---- */
:root {
  --navy:       #0a1628;
  --navy-mid:   #0f2040;
  --blue:       #0055ff;
  --blue-dark:  #0044cc;
  --amber:      #f59e0b;
  --amber-dark: #d97706;
  --white:      #ffffff;
  --off-white:  #f8fafc;
  --light:      #f1f5f9;
  --border:     #e2e8f0;
  --text:       #0f172a;
  --muted:      #64748b;
  --font-h:     'Montserrat', system-ui, sans-serif;
  --font-b:     'Inter', system-ui, sans-serif;
  --container:  1180px;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.13);
  --header-h:   72px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); line-height: 1.2; color: var(--navy); }
ul { list-style: none; }
address { font-style: normal; }

/* Focus-visible for accessibility */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  min-height: 48px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .15s ease;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: scale(.98); }
.btn-amber  { background: var(--amber);  color: var(--navy);  border-color: var(--amber); }
.btn-amber:hover  { background: var(--amber-dark); border-color: var(--amber-dark); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.65); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-navy   { background: var(--navy);  color: var(--white); border-color: var(--navy); }
.btn-navy:hover   { background: var(--navy-mid); }
.btn-white  { background: var(--white); color: var(--navy);  border-color: var(--white); }
.btn-white:hover  { background: var(--off-white); }
.btn-blue   { background: var(--blue);  color: var(--white); border-color: var(--blue); }
.btn-blue:hover   { background: var(--blue-dark); border-color: var(--blue-dark); }
.btn-lg { font-size: 16px; padding: 15px 32px; min-height: 52px; }
.btn-sm { font-size: 13px; padding: 9px 18px;  min-height: 40px; }

/* ---- HEADER — always solid ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.09);
  height: var(--header-h);
  display: flex; align-items: center;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px; background: var(--amber); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-h); font-weight: 800; font-size: 14px;
  line-height: 1.15; color: var(--navy);
}
.logo-tag {
  font-family: var(--font-h); font-weight: 700; font-size: 10px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--blue);
}

.nav-desktop { display: flex; align-items: center; }
.nav-desktop a {
  font-family: var(--font-h); font-weight: 700; font-size: 12px;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--navy); padding: 8px 14px; border-radius: 4px;
  transition: color .2s;
}
.nav-desktop a:hover { color: var(--blue); }
.nav-desktop a.active { color: var(--blue); }

.header-cta { display: flex; align-items: center; }
.header-phone-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--amber); color: var(--navy);
  font-family: var(--font-h); font-weight: 800; font-size: 13px;
  padding: 10px 18px; min-height: 44px; border-radius: var(--radius);
  transition: background .2s;
}
.header-phone-btn:hover { background: var(--amber-dark); }

.mobile-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; flex-direction: column;
  gap: 5px; padding: 6px;
  z-index: 1002; position: relative;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--navy); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-h); font-weight: 800; font-size: clamp(22px, 7vw, 30px);
  color: var(--white); text-align: center; padding: 16px 48px;
  transition: color .2s; display: block;
}
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav-ctas {
  margin-top: 28px; display: flex;
  flex-direction: column; gap: 12px; width: min(280px, 80vw);
}
.mobile-nav-ctas .btn { justify-content: center; width: 100%; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,.94) 0%, rgba(10,22,40,.78) 50%, rgba(10,22,40,.42) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  padding: clamp(96px,16vw,140px) 0 clamp(64px,8vw,90px);
  max-width: 740px;
}

.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(245,158,11,.14); border: 1px solid rgba(245,158,11,.4);
  color: var(--amber); font-family: var(--font-h); font-weight: 700;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 20px;
}
.eyebrow-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber); animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 {
  font-size: clamp(1.9rem, 4.8vw, 3.6rem); font-weight: 900;
  color: var(--white); line-height: 1.08; margin-bottom: 20px;
}
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-sub {
  font-size: clamp(15px, 2.2vw, 18px); color: rgba(255,255,255,.84);
  max-width: 560px; margin-bottom: 32px; line-height: 1.75;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.10); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18); color: var(--white);
  font-weight: 600; font-size: 12px; padding: 6px 12px; border-radius: 100px;
}
.trust-pill-check { color: var(--amber); font-weight: 900; font-size: 13px; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--navy); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.trust-bar-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 28px; }
.trust-bar-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.88); font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: .06em;
}
.trust-bar-item .dot {
  width: 20px; height: 20px; border-radius: 50%; background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; color: var(--white); flex-shrink: 0;
}

/* ---- SECTIONS ---- */
.section     { padding: clamp(56px, 8vw, 88px) 0; }
.section-sm  { padding: clamp(40px, 6vw, 64px) 0; }
.section-lg  { padding: clamp(72px,10vw,104px) 0; }
.section-light { background: var(--off-white); }
.section-navy  { background: var(--navy); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,.82); }

.section-hd { text-align: center; max-width: 720px; margin: 0 auto clamp(36px,6vw,52px); }
.section-hd .sub-eyebrow {
  font-family: var(--font-h); font-weight: 700; font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px;
}
.section-hd .sub-eyebrow::before,
.section-hd .sub-eyebrow::after { content:''; display:inline-block; width:28px; height:2px; background:var(--blue); flex-shrink:0; }
.section-navy .section-hd .sub-eyebrow { color: var(--amber); }
.section-navy .section-hd .sub-eyebrow::before,
.section-navy .section-hd .sub-eyebrow::after { background: var(--amber); }
.section-hd h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 800; margin-bottom: 14px; }
.section-navy .section-hd h2 { color: var(--white); }
.section-hd p { font-size: clamp(15px,2vw,17px); color: var(--muted); line-height: 1.75; }
.section-navy .section-hd p { color: rgba(255,255,255,.78); }

/* ---- ABOUT ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 72px); align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width:100%; border-radius:12px; box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white); border-radius: 12px; padding: 16px 20px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.about-badge-icon { flex-shrink: 0; display: flex; }
.about-badge p:first-child { font-family: var(--font-h); font-weight: 900; font-size: 22px; color: var(--navy); line-height:1; }
.about-badge p:last-child  { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

.about-content .eyebrow-line {
  font-family: var(--font-h); font-weight: 700; font-size: 11px; letter-spacing:.1em;
  text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.about-content .eyebrow-line::before { content:''; width: 28px; height: 2px; background: var(--blue); flex-shrink:0; }
.about-content h2 { font-size: clamp(1.5rem,2.8vw,2.2rem); font-weight: 800; margin-bottom: 16px; }
.about-content p   { color: var(--muted); margin-bottom: 13px; font-size: 15.5px; line-height: 1.78; }

.checklist {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px 18px; margin: 22px 0 28px;
}
.checklist li {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 14px; color: var(--navy);
}
.checklist li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; flex-shrink: 0;
}

/* ---- SERVICE CARDS ---- */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.svc-card {
  background: var(--white); border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,.07); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.svc-card-img { height: 190px; overflow: hidden; }
.svc-card-img img { width:100%; height:100%; object-fit:cover; transition: transform .4s ease; }
.svc-card:hover .svc-card-img img { transform: scale(1.06); }
.svc-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.svc-card-title { font-family: var(--font-h); font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.svc-card-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 13px; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-h); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .06em; color: var(--amber);
}
.svc-card-link:hover { color: var(--navy); }
.svc-card-bar { height: 3px; background: linear-gradient(to right, var(--blue), var(--amber)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.svc-card:hover .svc-card-bar { transform: scaleX(1); }

/* ---- AREAS SECTION ---- */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px,1fr)); gap: 10px; margin-top: 32px; }
.area-tag {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.88); padding: 11px 16px;
  border-radius: 8px; font-weight: 600; font-size: 14px; text-align: center;
  transition: background .2s, border-color .2s, color .2s;
}
.area-tag:hover { background: var(--amber); border-color: var(--amber); color: var(--navy); }

/* ---- FEATURE CARDS ---- */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card {
  text-align: center; padding: clamp(24px,4vw,36px) clamp(18px,3vw,26px);
  background: var(--white); border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: box-shadow .3s, transform .3s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--blue) 0%, #0040c0 100%);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
}
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.feature-card p  { font-size: 13.5px; color: var(--muted); line-height: 1.68; }

/* ---- EMERGENCY CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--amber) 0%, #e8900a 100%);
  padding: clamp(48px,7vw,72px) 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.18) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band-flex { display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.5rem, 3.2vw, 2.3rem); font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.cta-band p  { font-size: clamp(15px,2vw,17px); color: rgba(10,22,40,.76); max-width: 520px; line-height: 1.65; }
.cta-band-btns { display: flex; flex-wrap: wrap; gap: 12px; flex-shrink: 0; }

/* ---- MAINTENANCE GRID ---- */
.maintenance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,72px); align-items: center; }
.maintenance-content h2 { font-size: clamp(1.5rem,2.8vw,2.1rem); font-weight: 800; margin-bottom: 14px; }
.maintenance-content p  { color: var(--muted); margin-bottom: 12px; line-height: 1.78; }
.maintenance-img { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.maintenance-img img { width:100%; height: 400px; object-fit: cover; }

/* ---- PROBLEMS GRID ---- */
.problems-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.problem-item {
  padding: 24px; background: var(--white); border-radius: 10px;
  border-left: 4px solid var(--blue); box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.problem-item h3 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.problem-item p  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ---- FAQ (details/summary) ---- */
.faq-list { max-width: 820px; margin: 0 auto; }
details { border-bottom: 1px solid var(--border); }
details:first-child { border-top: 1px solid var(--border); }
summary {
  font-family: var(--font-h); font-size: 15.5px; font-weight: 700; color: var(--navy);
  padding: 18px 14px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  user-select: none; min-height: 52px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content:'+'; font-size: 22px; font-weight: 400; color: var(--blue); flex-shrink: 0; }
details[open] summary::after { content:'−'; }
details[open] summary { color: var(--blue); }
.faq-body { padding: 4px 14px 20px; color: var(--muted); font-size: 15px; line-height: 1.78; }
.faq-body p { margin-bottom: 10px; }
.faq-body p:last-child { margin-bottom: 0; }

/* ---- PAGE HERO (services/contact) ---- */
.page-hero {
  position: relative;
  min-height: clamp(280px, 40vw, 420px);
  padding: clamp(120px,16vw,172px) 0 clamp(48px,7vw,72px);
  display: flex; align-items: flex-end; overflow: hidden;
}
.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(10,22,40,.94) 0%, rgba(10,22,40,.72) 55%, rgba(10,22,40,.46) 100%);
}
.page-hero-content { position: relative; z-index: 10; }
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: rgba(255,255,255,.6); margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb .sep  { color: rgba(255,255,255,.35); }
.breadcrumb .curr { color: var(--amber); }
.page-hero h1 {
  font-size: clamp(1.8rem, 4.2vw, 2.9rem); font-weight: 900; color: var(--white);
  max-width: 800px; line-height: 1.1; margin-bottom: 10px;
}
.page-hero p { font-size: clamp(14px,2vw,17px); color: rgba(255,255,255,.80); max-width: 560px; margin-top: 12px; line-height: 1.7; }

/* ---- SERVICES PAGE ---- */
.services-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,72px); align-items: center; margin-bottom: clamp(48px,7vw,72px); }
.services-intro-content h2 { font-size: clamp(1.5rem,2.6vw,2rem); font-weight: 800; margin-bottom: 14px; }
.services-intro-content p  { color: var(--muted); margin-bottom: 13px; line-height: 1.78; }
.services-intro-img { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.services-intro-img img { width:100%; height: 400px; object-fit: cover; }

.svc-section { padding: clamp(40px,6vw,52px) 0; border-bottom: 1px solid var(--border); }
.svc-section:last-child { border-bottom: none; }
.svc-section-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,60px); align-items: start; }
.svc-section-grid.reverse .svc-sec-img { order: -1; }
.svc-sec-num   { font-family: var(--font-h); font-weight: 900; font-size: 48px; color: rgba(0,85,255,.10); line-height:1; margin-bottom:4px; }
.svc-sec-title { font-size: clamp(1.3rem,2.4vw,1.6rem); font-weight: 800; color: var(--navy); margin-bottom: 13px; }
.svc-sec-body p { color: var(--muted); margin-bottom: 13px; line-height: 1.78; }
.svc-sec-body p:last-of-type { margin-bottom: 16px; }
.svc-sec-img { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.svc-sec-img img { width:100%; height: 300px; object-fit: cover; }
.svc-sec-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-h); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: 6px;
}
.svc-sec-tag::before { content:''; width: 22px; height: 2px; background: var(--blue); }

.svc-no-img { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; padding: 16px 0 36px; }
.svc-no-img article { padding: 26px 22px; background: var(--off-white); border-radius: 10px; border-top: 3px solid var(--amber); }
.svc-no-img article h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.svc-no-img article p  { font-size: 13.5px; color: var(--muted); line-height: 1.68; margin-bottom: 12px; }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,64px); align-items: start; }
.contact-info-section h2 { font-size: clamp(1.5rem,2.8vw,1.7rem); font-weight: 800; margin-bottom: 12px; }
.contact-info-section > p { color: var(--muted); margin-bottom: 28px; line-height: 1.78; }
.contact-items { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: 50%;
  background: rgba(0,85,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.ci-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 4px; }
.ci-value { font-family: var(--font-h); font-weight: 700; font-size: 16px; color: var(--navy); line-height: 1.4; }
.ci-value a { color: var(--navy); transition: color .2s; }
.ci-value a:hover { color: var(--blue); }

.contact-form-card { background: var(--white); border-radius: 14px; box-shadow: var(--shadow-lg); overflow: hidden; }
.contact-form-bar  { height: 5px; background: linear-gradient(to right, var(--blue), var(--amber)); }
.contact-form-body { padding: clamp(24px,4vw,40px); }
.contact-form-body h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label { display: block; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 14px; min-height: 48px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-b); font-size: 15px; color: var(--text);
  background: var(--off-white); outline: none; transition: border-color .2s, background .2s;
  appearance: none; -webkit-appearance: none;
}
.form-control:focus { border-color: var(--blue); background: var(--white); }
.form-control::placeholder { color: #b0bec5; }
textarea.form-control { resize: vertical; min-height: 128px; }
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.form-success {
  display: none; background: #ecfdf5; border: 1px solid #a7f3d0;
  border-radius: var(--radius); padding: 16px 18px; color: #065f46;
  font-weight: 600; text-align: center; margin-top: 14px; font-size: 15px;
}
.urgent-notice {
  background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.3);
  border-radius: 12px; padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 40px;
}
.urgent-notice h3 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.urgent-notice p  { font-size: 14.5px; color: var(--muted); line-height: 1.6; }
.urgent-notice a  { color: var(--amber); font-weight: 700; }
.urgent-notice a:hover { text-decoration: underline; }
.contact-areas { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.contact-area-tag {
  background: var(--light); border: 1px solid var(--border);
  color: var(--navy); padding: 6px 13px; border-radius: 6px;
  font-weight: 600; font-size: 13px;
}

/* ---- FOOTER ---- */
.site-footer { background: var(--navy); padding: clamp(52px,7vw,72px) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(28px,4vw,44px);
  padding-bottom: clamp(40px,6vw,52px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 38px; height: 38px; min-width: 38px; background: var(--amber);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.footer-logo-name { font-family: var(--font-h); font-weight: 800; font-size: 14px; color: var(--white); }
.footer-logo-tag  { font-family: var(--font-h); font-weight: 700; font-size: 10px; letter-spacing:.08em; text-transform: uppercase; color: var(--amber); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,.68); line-height: 1.75; margin-bottom: 20px; }
.footer-nap { display: flex; flex-direction: column; gap: 11px; }
.footer-nap-item { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: rgba(255,255,255,.76); }
.footer-nap-item a { color: rgba(255,255,255,.76); transition: color .2s; }
.footer-nap-item a:hover { color: var(--amber); }
.footer-nap-icon { flex-shrink: 0; margin-top: 2px; display: flex; }
.footer-heading { font-family: var(--font-h); font-weight: 800; font-size: 14px; color: var(--white); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.70); display: flex; align-items: center; gap: 6px; transition: color .2s; }
.footer-links a:hover { color: var(--amber); }
.footer-links a::before { content:'›'; color: var(--blue); font-weight: 700; font-size: 16px; }
.footer-emergency p { font-size: 13.5px; color: rgba(255,255,255,.70); line-height: 1.75; margin-bottom: 16px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 8px; padding: 16px 0; font-size: 12px; color: rgba(255,255,255,.42);
}

/* ---- MOBILE STICKY CALL BAR ---- */
.sticky-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 800; background: var(--navy); border-top: 3px solid var(--amber);
}
.sticky-call-inner { display: flex; }
.sticky-call a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 8px; min-height: 54px;
  font-family: var(--font-h); font-weight: 800; font-size: 13px; color: var(--white);
  border-right: 1px solid rgba(255,255,255,.1); transition: background .2s;
}
.sticky-call a:last-child { border-right: none; }
.sticky-call a:first-child { background: rgba(245,158,11,.12); }
.sticky-call a:first-child:hover { background: rgba(245,158,11,.22); }

/* ---- RESPONSIVE BREAKPOINTS ---- */

/* Tablet: 1024px */
@media (max-width: 1024px) {
  .services-grid       { grid-template-columns: repeat(2,1fr); }
  .features-grid       { grid-template-columns: repeat(2,1fr); }
  .about-grid          { grid-template-columns: 1fr; gap: clamp(32px,5vw,48px); }
  .about-badge         { display: none; }
  .maintenance-grid    { grid-template-columns: 1fr; gap: 36px; }
  .problems-grid       { grid-template-columns: repeat(2,1fr); }
  .services-intro-grid { grid-template-columns: 1fr; }
  .svc-section-grid    { grid-template-columns: 1fr; gap: 28px; }
  .svc-section-grid.reverse .svc-sec-img { order: unset; }
  .contact-grid        { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .svc-no-img          { grid-template-columns: repeat(2,1fr); }
}

/* Mobile: 768px */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .nav-desktop   { display: none; }
  .header-cta    { display: none; }
  .mobile-toggle { display: flex; }
  .sticky-call   { display: block; }
  body { padding-bottom: 54px; }

  .services-grid  { grid-template-columns: 1fr; gap: 18px; }
  .features-grid  { grid-template-columns: 1fr; }
  .problems-grid  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .checklist      { grid-template-columns: 1fr; }
  .svc-no-img     { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .areas-grid     { grid-template-columns: repeat(2,1fr); }
  .trust-bar-inner { gap: 12px 20px; }
  .hero-ctas      { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-band-flex  { flex-direction: column; align-items: flex-start; }
  .cta-band-btns  { flex-direction: column; width: 100%; }
  .cta-band-btns .btn { justify-content: center; }

  .maintenance-img img { height: 260px; }
  .services-intro-img img { height: 260px; }
  .svc-sec-img img { height: 220px; }
}

/* Small mobile: 480px */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero h1   { font-size: 1.75rem; }
  .areas-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 10px; }
  .trust-bar-item  { font-size: 11px; }
  .hero-trust .trust-pill { font-size: 11px; padding: 5px 10px; }
  .features-grid { gap: 16px; }
  .svc-card-img  { height: 160px; }
  .mobile-nav a  { font-size: 26px; padding: 14px 32px; }
  .mobile-nav-ctas { width: min(260px, 86vw); }
  .footer-bottom { flex-direction: column; text-align: center; gap: 4px; }
}

/* Tiny: 320px */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.6rem; }
  .btn     { font-size: 13px; padding: 12px 20px; }
  .btn-lg  { font-size: 14px; padding: 13px 22px; }
  .sticky-call a { font-size: 12px; gap: 6px; }
}
