/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root { --bg:#0b1220; --text:#1b1b1b; --brand:#2563eb; }
* { box-sizing:border-box; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: #222; /* keep your existing body color */
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; /* can adjust per style */
  color: #0b1b2b; /* matches your existing heading tone */
}
.container { width:min(1100px, 92%); margin:auto; }
.site-header { background:#fff; border-bottom:1px solid #eee; }
.site-header .container { display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.logo { font-weight:700; text-decoration:none; color:#111; }
.nav a { margin-left:18px; text-decoration:none; color:#333; }
.hero { background:linear-gradient(180deg, #f6f9ff, #ffffff); padding:80px 0; text-align:center; }
.hero h1 { font-size:2.2rem; margin:0 0 10px; }
.hero p { color:#444; margin:0 0 20px; }
.btn { display:inline-block; padding:12px 18px; background:var(--brand); color:#fff; text-decoration:none; border-radius:8px; }
.section { padding:56px 0; }
.grid-3 { display:grid; gap:24px; grid-template-columns:repeat(auto-fit, minmax(240px,1fr)); }
article { background:#fff; border:1px solid #eee; border-radius:12px; padding:18px; }
.site-footer { padding:24px 0; background:#fafafa; border-top:1px solid #eee; text-align:center; }
label { display:block; margin:12px 0; }
input, textarea { width:100%; padding:10px; border:1px solid #ddd; border-radius:8px; }
button.btn { border:0; cursor:pointer; }

:root{
  --ink:#0b1b2b;
  --muted:#ffffff;
  --brand:#f5a018;           /* orange accent like the screenshot */
  --brand-ink:#0b1b2b;
  --card:#ffffff;
  --border:#f1c37c;          /* orange border for the card */
  --radius:14px;
  --shadow:0 14px 40px rgba(0,0,0,.18);
}

/* basic layout helper */
.container{max-width:1200px;margin-inline:auto;padding:0 0px}

/* HERO */
.hero{
  position: relative;
  color:#fff;
  padding:96px 0;
  overflow:hidden;

  /* ⬇️ use a variable instead of a hard-coded image */
  --hero-img: url("/assets/images/roofing-banner.png"); /* default/fallback */
  background: var(--hero-img) top/cover no-repeat;
}
/* Per-page hero images */
.hero--repairs{      --hero-img: url("/assets/images/hero-repair.png"); }
.hero--replacement{  --hero-img: url("/assets/images/hero-replacement.png"); }
.hero--colorbond{    --hero-img: url("/assets/images/hero-colorbond.png"); }
.hero--ventilation{  --hero-img: url("/assets/images/hero-ventilation.png"); }
.hero--guttering{    --hero-img: url("/assets/images/hero-guttering.png"); }

/* Optional: lighter mobile crops */
@media (max-width:600px){
  .hero--repairs{      --hero-img: url("/assets/images/hero-repair.png"); }
  .hero--replacement{  --hero-img: url("/assets/images/hero-replacement.png"); }
  .hero--colorbond{    --hero-img: url("/assets/images/hero-colorbond.png"); }
  .hero--ventilation{  --hero-img: url("/assets/images/hero-ventilation.png"); }
  .hero--guttering{    --hero-img: url("/assets/images/hero-guttering.png"); }
}
.hero::before{                        /* dark overlay */
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 40%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.15) 100%);
}
.hero__grid{
  position:relative;                  /* above overlay */
  display:grid;
  grid-template-columns: 1.2fr .95fr;
  gap:48px;
  align-items: center;
  z-index:1;
}
.hero__copy {
  text-align: left;                     /* left-align text */
  justify-self: start;                  /* keep the block to the left side */
  max-width: 560px;
}
/* LEFT */
.hero__badge{
  display:inline-flex; align-items:center; gap:20px;
  font-weight:700; letter-spacing:.04em;
  color:#f5a018;
  margin-bottom:18px;
}
.hero__badge-icon{display:inline-block; transform:translateY(1px)}
.hero__title{
  font-size: clamp(45px, 5vw, 60px);
  line-height:1.2;
  font-weight:800;
  color: #fff;
  margin:0 0 16px;
}
.hero__lead {
  color: #ffffff !important; /* solid black text */
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
  position: relative; /* ensure it’s above the overlay */
  z-index: 2;
}
.hero__cta{display:inline-flex; align-items:left; gap:10px}

/* RIGHT CARD (quote) */
.quote{
  background: var(--card);
  color: var(--ink);
  border: 4px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.quote__title{
  margin:0 0 18px;
  text-align:center;
  font-size: 34px;
  font-weight: 800;
  color: var(--brand-ink);
}
.quote__form{display:grid; gap:28px}
.field{display:grid; gap:8px}
.field span{font-size:14px; color:#0b1b2b; font-weight:600}
.field input, .field select, .field textarea{
  width:100%;
  border:1px solid #e4e8ee;
  border-radius:10px;
  padding:14px 12px;
  font-size:16px;
  outline:none;
  transition:.2s border-color, .2s box-shadow;
  background:#fff;
}
.field { gap: 28; }

/* hide the visible label span */
.field > span { display: none; }

/* placeholder look */
.field input::placeholder,
.field textarea::placeholder {
  color: #7a8a9b;
  opacity: 1; /* ensure consistent color across browsers */
}
.field input:focus{
  border-color:#b9c6ff;
  box-shadow:0 0 0 4px rgba(10,108,241,.08);
}

/* Buttons */
.btn{
  --btn-bg:#fff; --btn-ink:#0b1b2b;
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 18px; border-radius:10px;
  border:none; text-decoration:none; cursor:pointer; font-weight:700;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
}
.btn--primary{ --btn-bg: var(--brand); --btn-ink: #fff; background:var(--btn-bg); color:var(--btn-ink); }
.btn--primary:hover{ filter:brightness(0.96); }
.btn--block{ width:100% }
.btn__icon{ font-size: 18px; }

/* Responsive */
@media (max-width: 1024px){
  .hero__grid{ grid-template-columns: 1fr; gap:32px; }
  .quote{ max-width: 560px; margin-left:auto }
}
@media (max-width: 600px){
  .hero{ padding: 72px 0; }
  .quote{ margin-inline: 0; }
}
/* ========== HEADER (desktop) ========== */
.site-header{
  position: sticky; top:0; z-index: 1000;
  background:#fff; border-bottom:1px solid #eee;
}
.header__bar{
  display:flex; align-items:center; justify-content:space-between;
  min-height:72px; gap:24px; padding:10px 0;
}
.logo img{ display:block; height:70px; width:auto; }

/* nav reset + horizontal layout */
.site-nav .menu,
.site-nav .submenu{ margin:0; padding:0; list-style:none; }

.site-nav .menu{
  display:flex; align-items:center; gap:28px;
}
.site-nav a, .site-nav .menu-parent{
  font-weight:600; color:#0b1b2b; text-decoration:none;
  padding:10px 0; display:inline-flex; align-items:center; gap:6px;
}
.site-nav a:hover, .site-nav .menu-parent:hover{ color:#266bb3; }

/* Services dropdown */
.has-sub{ position:relative; }
.menu-parent{
  background:none; border:0; cursor:pointer; font:inherit;
}
.submenu{
  position:absolute; left:0; top:calc(100% + 14px);
  min-width:240px; background:#fff; border:1px solid #e8ecf1;
  border-radius:12px; box-shadow:0 14px 30px rgba(0,0,0,.08);
  display:none; padding:10px;
}
.submenu li a{
  display:block; padding:10px 12px; border-radius:8px; color:#263445;
}
.submenu li a:hover{ background:#f5f7fb; color:#266bb3; }

/* show submenu when parent is expanded (JS toggles aria-expanded) */
.has-sub .menu-parent[aria-expanded="true"] + .submenu{ display:block; }

/* Contact CTA */
.menu-cta .btn{ padding:10px 16px; border-radius:10px; }
.btn{ display:inline-flex; align-items:center; justify-content:center; font-weight:700; }
.btn--primary{ background:#f5a018; color:#fff; box-shadow:0 6px 16px rgba(0,0,0,.12); }
.btn--primary:hover{ filter:brightness(.96); }
@media (min-width: 993px) {
  /* animate the submenu in/out */
  .submenu{
    display:block;           /* allow transition with visibility */
    opacity:0;
    visibility:hidden;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 999;            /* ensure it sits above hero/form */
  }

  /* open on hover of the parent <li> */
  .has-sub:hover > .submenu{
    opacity:1;
    visibility:visible;
    transform: translateY(0);
  }

  /* optional: highlight the Services trigger while open */
  .has-sub:hover > .menu-parent{
    color:#266bb3;
  }
}
/* ========== Mobile ========== */
.nav-toggle{
  display:none; background:none; border:0; cursor:pointer;
  width:42px; height:42px; position:relative;
}
.nav-toggle__bar{
  position:absolute; left:9px; right:9px; height:2px; background:#233140;
}
.nav-toggle__bar:nth-child(1){ top:12px; }
.nav-toggle__bar:nth-child(2){ top:20px; }
.nav-toggle__bar:nth-child(3){ top:28px; }
.sr-only{ position:absolute; clip:rect(1px,1px,1px,1px); padding:0; border:0; height:1px; width:1px; overflow:hidden; }

@media (max-width: 992px){
  .nav-toggle{ display:block; }

  /* make the mobile panel cover the screen and sit on top */
  .site-header{ --header-h:85px; } /* header height variable */
  .site-nav{
    position: fixed;
    top: var(--header-h,85px);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h,72px));
    overflow-y: auto;
    background:#fff;
    border-top:1px solid #eee;
    transform: translateY(-110%);
    transition: .25s transform;
    box-shadow: 0 14px 30px rgba(0,0,0,.08);
    z-index: 1200;               /* <-- ensures it overlays hero/form */
  }
  .site-nav.is-open{ transform: translateY(0); }

  .site-nav .menu{
    flex-direction:column; align-items:flex-start; gap:0; padding:10px 18px;
  }
  .site-nav .menu > li{ width:100%; }
  .site-nav .menu > li > a,
  .menu-parent{ width:100%; padding:14px 6px; }

  .submenu{
    position: static; display:none; box-shadow:none; border:0; padding:0 0 10px;
  }
  .has-sub .menu-parent[aria-expanded="true"] + .submenu{ display:block; }

  /* prevent page from scrolling behind the open menu */
  body.no-scroll{ overflow:hidden; }
}
@media (max-width: 992px) {
  /* Align Services (menu-parent) with other nav items */
  .menu-parent {
    padding-left: 6px !important; 
    text-align: left;
  }

  /* Optional: keep submenu items slightly indented but clean */
  .submenu li a {
    padding-left: 28px; 
  }
}



/* About Section */
.about {
  background: #ffffff;          /* plain white */
  padding: 80px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.about__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.about__content {
  color: #0b1b2b;
}

.about__title {
  font-size: clamp(28px, 4vw, 35px);
  font-weight: 800;
  margin-bottom: 18px;
  color: #0b1b2b;
}

.about__content p {
  color: #0b1b2b;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__image {
    order: -1; /* show image on top on mobile */
  }
}
/* CTA Banner */
.cta-banner {
  background-color: #266bb3;   /* blue background */
  color: #ffffff;
  padding: 15px 0;
}

.cta-banner__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__text {
  flex: 1;
  min-width: 280px;
}

.cta-banner__text h2 {
  font-size: clamp(24px, 3vw, 35px);
  font-weight: 800;
  color: #e8eef5;
  margin-bottom: 10px;
}

.cta-banner__text p {
  font-size: 18px;
  line-height: 1.6;
  color: #e8eef5;
}

.cta-banner__text strong {
  color: #ffffff;
}

.cta-banner__btn .btn {
  background-color: #f5a018;
  color: #fff;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: background 0.2s ease;
}

.cta-banner__btn .btn:hover {
  background-color: #f5a018;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner__btn {
    margin-top: 20px;
  }
}
/* Services section */
.eyebrow {
  color:#f5a018;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin:6px 0 8px;
  justify-content:center;   /* centers content horizontally */
  width:100%;               /* make sure it spans full width */
  text-align:center;         /* ensure text itself centers */
}
.eyebrow::before{ content:"▸"; }

.section-title{
  font-size: clamp(28px, 4vw, 35px);
  font-weight: 800;
  color:#0b1b2b;
  margin: 6px 0 28px;
  text-align:center;
}

.services{ background: linear-gradient(180deg,#ffffff 0%, #ffffff 100%); padding:64px 0; }

.cards-3x2{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 26px;
}

.svc-card{
  background:#f7fbff;
  border:1px solid #d9e4ef;
  border-radius:14px;
  box-shadow: 0 10px 28px rgba(9,30,66,.08);
  overflow:hidden;
  display:flex; flex-direction:column;
}
.svc-card__img{
  width:100%; height:190px; object-fit:cover; display:block;
}
.svc-card__body{ padding:18px 18px 20px; display:grid; gap:10px; }
.svc-card__title{ margin:0; color:#0b1b2b; font-weight:800; font-size:20px; }
.svc-card__text{ margin:0; color:#0b1b2b; line-height:1.6; }
.svc-card__link{
  margin-top:8px; display:inline-flex; align-items:center; gap:8px;
  color:#f5a018; font-weight:800; text-decoration:none;
}
.svc-card__link:hover{ filter: brightness(.95); }

/* hover lift */
.svc-card{ transition:.2s transform, .2s box-shadow; }
.svc-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(9,30,66,.12);
}

/* Responsive */
@media (max-width: 1024px){
  .cards-3x2{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .cards-3x2{ grid-template-columns: 1fr; }
}
/* WHY CHOOSE US SECTION */
.why {
  background: #eaf3ff;
  padding: 60px 0;
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT SIDE */
.why__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.why__title {
  font-size: clamp(28px, 4vw, 45px);
  font-weight: 800;
  color: #0b1b2b;
  line-height: 1.3;
  margin: 0;
}

.why__media img {
  width: 100%;
  border-radius: 10px;
  display: block;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* RIGHT SIDE FEATURES */
.why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
}

.why__item {
  background: #fff;
  border: 1px solid #e6ebf1;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 8px 20px rgba(9, 30, 66, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(9, 30, 66, 0.1);
}

.why__item h3 {
  font-size: 20px;
  font-weight: 800;
  color: #0b1b2b;
  margin-bottom: 8px;
}

.why__item p {
  color: #0b1b2b;
  line-height: 1.7;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .why__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why__left {
    align-items: center;
    text-align: center;
  }

  .why__features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .why__features {
    grid-template-columns: 1fr;
  }
}
/* FAQs */
.faqs { background:#fff; padding:72px 0; }
.faqs__title{
  text-align:center; margin:0 0 8px;
  font-size:clamp(28px,4vw,35px); font-weight:800; color:#0b1b2b;
}
.faqs__subtitle{
  text-align:center; color:#0b1b2b; margin:0 0 22px;
}

/* List */
.faq-list{ max-width:980px; margin:0 auto; display:grid; gap:14px; }

/* Item */
.faq{
  background:#eaf3ff;           /* light blue like screenshot */
  border-radius:8px;
  padding:0; overflow:hidden; border:1px solid #d8e6fb;
}

/* Summary row */
.faq > summary{
  list-style:none; cursor:pointer;
  padding:18px 22px;
  font-size:18px;
  font-weight:800; color:#0b1b2b;
  position:relative; display:flex; align-items:center; gap:12px;
}
.faq > summary::-webkit-details-marker{ display:none; }

/* Plus / minus icon */
.faq > summary::before{
  content:"+"; flex:0 0 auto;
  width:22px; height:22px; display:inline-flex; align-items:center; justify-content:center;
  font-weight:900; font-size:18px;
  color:#f5a018; background:#fff; border-radius:4px; margin-right:10px;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
}
.faq[open] > summary::before{ content:"–"; }

/* Panel text */
.faq__panel{
  padding:16px 22px 20px;
  font-size:18px;
  color:#0b1b2b; line-height:1.7;
  border-top:1px solid #d8e6fb;
}

/* Focus / hover states for accessibility */
.faq > summary:focus-visible{
  outline:3px solid rgba(10,108,241,.35);
  outline-offset:4px;
}
.faq > summary:hover{ background:#e3eeff; }

/* Spacing like screenshot */
.faq-list .faq:first-child{ margin-top:6px; }

/* Testimonials */
.testimonials{
  background: #eaf3ff;               /* soft light-blue */
  padding: 72px 0;
  position: relative;
}
.testi__title{
  text-align:center;
  font-size: clamp(28px, 4vw, 35px);
  font-weight: 800;
  color:#0b1b2b;
  margin: 6px 0 26px;
}

.testi__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testi__card{
  background:#fff;
  border:1px solid #e7edf6;
  border-radius:14px;
  box-shadow: 0 14px 32px rgba(9,30,66,.08);
  padding: 24px 24px 18px;
  position: relative;
  overflow:hidden;
}

.testi__quote{
  margin:0 0 20px;
  color:#0b1b2b;
  line-height:1.8;
  font-size: 18px;
  position: relative;
}

.testi__person{
  display:flex; align-items:center; gap:12px;
  margin-top: 6px;
}
.testi__avatar{
  width:54px; height:54px; border-radius:50%; object-fit:cover;
  box-shadow:0 4px 10px rgba(0,0,0,.08);
}
.testi__name{ font-weight:800; color:#0b1b2b; }
.testi__role{ color:#5b6c80; font-size:14px; }

/* Responsive */
@media (max-width: 1024px){
  .testi__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .testi__grid{ grid-template-columns: 1fr; }
}
/* ---- CTA block (dark card) ---- */
.cta-block { background:#fff; padding: 40px 0 64px; }

.cta-card{
  background:#286DB6;           /* deep navy */
  color:#fff;
  border-radius:28px;
  padding: 48px 32px;
  max-width: 1100px;
  margin: 0 auto;
  text-align:center;
  box-shadow: 0 16px 40px rgba(9,30,66,.12);
}

.cta-title{
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
  font-weight: 800;
  color:#ffffff;
  margin: 0 0 16px;
}

.cta-accent{
  color:#f5a018;                 /* green highlight like screenshot */
  white-space: nowrap;
}

.cta-sub{
  color: #d9e6f3;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.7;
  font-size: 17px;
}

.btn-cta{
  display:inline-block;
  background:#f5a018;            /* orange button */
  color:#fff;
  font-weight: 800;
  text-decoration:none;
  padding: 14px 24px;
  border-radius: 12px;
  transition: transform .15s ease, filter .15s ease;
}
.btn-cta:hover{
  transform: translateY(-2px);
  filter: brightness(.95);
}

/* spacing on small screens */
@media (max-width: 640px){
  .cta-card{ padding: 36px 18px; border-radius:22px; }
}

/* ===== About Page Banner ===== */
.page-banner{
  position: relative;
  isolation:isolate;              /* keep the overlay contained */
  min-height: 280px;              /* adjust for your design */
  display:flex; align-items:center;
  color:#fff;
}

.page-banner__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(7,30,63,.65), rgba(7,30,63,.65)),  /* dark overlay */
    var(--banner) center/cover no-repeat;
  z-index:-1;
}

/* inner container */
.page-banner__inner{
  width:min(1100px,92%); margin-inline:auto;
  text-align:center;
}

.page-banner__title{
  font-family: "Poppins", system-ui, Arial, sans-serif;
  font-weight:800;
  font-size: clamp(28px, 4.6vw, 48px);
  color:#fff;
  line-height:1.1;
  margin: 0 0 10px;
}

.page-banner__lead{
  font-family: "Nunito Sans", system-ui, Arial, sans-serif;
  font-size: clamp(13px, 1.6vw, 16px);
  letter-spacing:.02em;
  margin:0;
  text-transform:uppercase;
  opacity:.95;
}

/* taller banner on larger screens */
@media (min-width: 992px){
  .page-banner{ min-height: 360px; }
}

/* ---------- Commitment Section ---------- */
.commitment-section {
  background: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.commitment-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.commitment-title {
  font-size: 35px;
  font-weight: 800;
  color: #0b1b2b;
  margin-bottom: 10px;
}

.commitment-subtitle {
  color: #0b1b2b;
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---------- Cards ---------- */
.commitment-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.commitment-card {
  background: #EAF3FF;
  border: 1px solid #dce3ee;
  border-radius: 12px;
  width: 100%;
  max-width: 340px;
  padding: 40px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  background-image: radial-gradient(circle at 90% 10%, rgba(0, 102, 255, 0.05) 0%, transparent 60%);
}

.commitment-label {
  font-size: 16px;
  font-weight: 700;
  color: #f5a018;
  margin-bottom: 10px;
  letter-spacing: 0.6px;
}

.commitment-heading {
  font-size: 35px;
  font-weight: 800;
  color: #0b1b2b;
  margin-bottom: 10px;
  line-height: 1.3;
}

.commitment-card hr {
  width: 60%;
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 12px auto 18px;
}

.commitment-text {
  font-size: 18px;
  color: #0b1b2b;
  line-height: 1.6;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .commitment-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Contact CTA (namespaced) ===== */
.contact-cta { padding: 60px 20px; background:#fff; }
.contact-cta__container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 40px;
}

/* Left column */
.contact-cta__title { font-size: 32px; font-weight: 800; color:#0b1b2b; margin:0 0 10px; }
.contact-cta__lead { font-size: 18px; color:#0b1b2b; margin:0 0 24px; line-height:1.7; max-width:560px; }

.contact-cta__list { list-style:none; padding:0; margin:0 0 22px; display:grid; gap:18px; }
.contact-cta__item { display:flex; align-items:center; gap:16px; }

.contact-cta__icon {
  width:74px; height:74px;
  display:inline-flex; align-items:center; justify-content:center;
  background:#f5a018; color:#fff; border-radius:6px; flex:0 0 74px;
}

.contact-cta__label { font-size:1.05rem; font-weight:800; color:#0b1f3a; margin:0 0 4px; }
.contact-cta__value { color:#2d3748; text-decoration:none; display:inline-block; }
.contact-cta__value:hover { text-decoration:underline; }

/* Social */
.contact-cta__social { margin-top:12px; }
.contact-cta__social-row { display:flex; gap:16px; margin-top:10px; }
.contact-cta__social-link {
  width:36px; height:36px; border-radius:6px;
  display:inline-flex; align-items:center; justify-content:center;
  background:#0b1f3a; color:#fff; text-decoration:none;
}

/* Right column (form card) */
.contact-cta__form {
  background:#2973c9; color:#fff; border-radius:8px;
  padding:28px; align-self:start; box-shadow:0 10px 24px rgba(2,10,32,.18);
}
.contact-cta__form-title { color:#ffffff; margin:0 0 16px; font-size:24px; font-weight:800; line-height:1.4; }
.contact-cta__input {
  width:100%; background:#fff; color:#0b1f3a;
  border:0; border-radius:6px; padding:14px 14px; margin:10px 0;
  outline:none;
}
.contact-cta__input::placeholder { color:#7a869a; }

.contact-cta__button {
  width:100%; margin-top:14px;
  background:#f59e0b; color:#fff; border:0; border-radius:6px; font-size:16px;
  padding:14px 18px; font-weight:800; cursor:pointer;
}
.contact-cta__button:hover { background:#ffad33; }

/* Responsive */
@media (max-width: 990px){
  .contact-cta__container { grid-template-columns: 1fr; }
  .contact-cta__form { order: 2; }
}

/* Roofers Newcastle — Privacy styles (namespaced) */
.rn-privacy { padding: 60px 20px; background: #fff; color: #0b1b2b; }
.rn-privacy__container { width: min(980px, 92%); margin: 0 auto; line-height: 1.7; }
.rn-privacy__header h1 { font-size: 2.2rem; margin: 0 0 6px; font-weight: 800; }
.rn-privacy__updated { color: #637088; margin: 0 0 18px; }
.rn-privacy h2 { font-size: 1.6rem; margin: 28px 0 10px; font-weight: 800; }
.rn-privacy h3 { font-size: 1.1rem; margin: 18px 0 8px; font-weight: 800; color: #0b1b2b; }
.rn-privacy p { margin: 0 0 14px; color: #0b1b2b; }
.rn-privacy a { color: #f5a018; text-decoration: none; }
.rn-privacy a:hover { text-decoration: underline; }
.rn-privacy__list { margin: 8px 0 16px 18px; }
.rn-privacy__list li { margin: 6px 0; color: #0b1b2b; }
.rn-privacy__rule { border: 0; border-top: 1px solid #e5e7eb; margin: 18px 0 24px; }

/* Small screens */
@media (max-width: 640px){
  .rn-privacy__header h1 { font-size: 1.8rem; }
  .rn-privacy h2 { font-size: 1.35rem; }
}

/* Roofers Newcastle — Terms styles (namespaced) */
.rn-terms { padding: 60px 20px; background: #fff; color: #0b1b2b; }
.rn-terms__container { width: min(980px, 92%); margin: 0 auto; line-height: 1.7; }
.rn-terms__header h1 { font-size: 2.2rem; margin: 0 0 6px; font-weight: 800; }
.rn-terms__updated { color: #637088; margin: 0 0 18px; }
.rn-terms h2 { font-size: 1.6rem; margin: 28px 0 10px; font-weight: 800; }
.rn-terms h3 { font-size: 1.1rem; margin: 18px 0 8px; font-weight: 800; color: #0b1b2b; }
.rn-terms p { margin: 0 0 14px; color: #0b1b2b; }
.rn-terms a { color: #f5a018; text-decoration: none; }
.rn-terms a:hover { text-decoration: underline; }
.rn-terms__list { margin: 8px 0 16px 18px; }
.rn-terms__list li { margin: 6px 0; color: #0b1b2b; }
.rn-terms__rule { border: 0; border-top: 1px solid #e5e7eb; margin: 18px 0 24px; }

@media (max-width: 640px){
  .rn-terms__header h1 { font-size: 1.8rem; }
  .rn-terms h2 { font-size: 1.35rem; }
}

/* ===== Blog Section ===== */
.roof-blog {
  background: #ffffff;
  padding: 80px 20px;
}

.roof-blog__container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.roof-blog__title {
  text-align: center;
  font-size: 35px;
  font-weight: 800;
  color: #0b1b2b;
  margin-bottom: 40px;
}

.roof-blog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.roof-blog__card {
  background: #E3EEFF;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.roof-blog__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.roof-blog__thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.roof-blog__content {
  padding: 24px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.roof-blog__card-title a {
  color: #0b1b2b;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
}

.roof-blog__card-title a:hover {
  color: #f5a018;
}

.roof-blog__meta {
  font-size: 16px;
  color: #0b1b2b;
  margin: 5px 0 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.roof-blog__excerpt {
  flex: 1;
  font-size: 18px;
  color: #0b1b2b;
  margin-bottom: 10px;
  line-height: 1.6;
}

.roof-blog__btn {
  align-self: flex-start;
  padding: 10px 22px;
  border: 2px solid #0b1b2b;
  color: #0b1b2b;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.roof-blog__btn:hover {
  background: #f5a018;
  color: #fff;
}

/* Roof Repair Section */
.roof-repair-section {
  background-color: #ffffff;
  padding: 40px 20px;
  font-family: "Poppins", sans-serif;
}

.roof-repair-container {
  max-width: 1200px;
  margin: 0 auto;
}

.roof-repair-heading {
  font-size: 35px;
  font-weight: 800;
  color: #0b1b2b;
  text-align: center;
  margin-bottom: 10px;
}

.roof-repair-heading span {
  color: #f5a018; /* orange accent */
}

.roof-repair-subtext {
  text-align: center;
  color: #0b1b2b;
  font-size: 18px;
  margin-bottom: 20px;
}

.roof-repair-highlight {
  font-size: 24px;
  font-weight: 600;
  color: #0b1b2b;
  margin-bottom: 50px;
  text-align: center;
}

.roof-repair-highlight i {
  color: #f5a018;
  margin-right: 8px;
}

.roof-repair-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.roof-repair-image {
  flex: 1 1 45%;
  text-align: center;
}

.roof-repair-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.roof-repair-text {
  flex: 1 1 50%;
  font-size: 18px;
  color: #0b1b2b;
  line-height: 1.7;
}

.roof-repair-text p {
  margin-bottom: 16px;
}

.roof-repair-features {
  list-style: none;
  padding: 0;
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.roof-repair-features li {
  color: #0b1b2b;
  font-weight: 400;
}

.roof-repair-features i {
  color: #f5a018;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .roof-repair-content {
    flex-direction: column;
  }

  .roof-repair-heading {
    font-size: 1.7rem;
  }

  .roof-repair-highlight {
    font-size: 1.1rem;
  }
}

/* Roof Repair Info Section */
.roof-repair-info {
  background-color: #EAF3FF;
  padding: 50px 20px;
  font-family: "Poppins", sans-serif;
  color: #0b1b2b;
}

.roof-repair-container {
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.roof-repair-heading {
  font-size: 35px;
  font-weight: 800;
  color: #0b1b2b;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}

.roof-repair-content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: -25px;
  color: #0b1b2b;
}

@media (max-width: 768px) {
  .roof-repair-heading {
    font-size: 1.6rem;
  }

  .roof-repair-content p {
    font-size: 0.95rem;
  }
}

/* ===== Footer ===== */
.site-footer{
  background:#fff;
  padding-top: 32px;
}

.footer__grid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding: 24px 0 16px;
  position: relative;
  text-align:left;
}

/* vertical divider */
.footer__grid::before{
  content:"";
  position:absolute;
  left: 33%;
  top: 0; bottom: 0;
  width:1px; background:#e3ebf5;
}

.footer__col{ min-width: 220px; }
.footer__heading{
  margin: 0 0 10px;
  color:#0b1b2b;
  font-weight:800;
  font-size:16px;
}
.footer__list{ list-style:none; margin:0; padding:0; }
.footer__list li{ margin:10px 0; }
.footer__list a{
  color:#0b1b2b; text-decoration:none;
}
.footer__list a:hover{ text-decoration:underline; }

/* Support column (aligned left) */
.footer__support .footer__link{
  display:block; margin:12px 0; color:#0b1b2b; font-weight:700; text-decoration:none;
}
.footer__support .footer__link:hover{ text-decoration:underline; }

.footer__email{
  display:block; margin:16px 0 14px; color:#0b1b2b; text-decoration:none;
}
.footer__email:hover{ text-decoration:underline; }

.footer__social{ display:flex; gap:10px; margin-top:10px; }
.icn{ width:28px; height:28px; display:inline-flex; align-items:center; justify-content:center; color:#0b1b2b; }
.icn svg{ fill: currentColor; width:20px; height:20px; opacity:.95; }
.icn:hover{ color:#f5a018; }

/* copyright center only */
.footer__copy{
  border-top:1px solid #e9eef6;
  text-align:center;
  color:#0b1b2b;
  font-size:14px;
  padding: 14px 0 24px;
}

/* responsive */
@media (max-width: 1024px){
  .footer__grid{
    grid-template-columns: 1fr 1fr;
  }
  .footer__grid::before{ display:none; }
}
@media (max-width: 640px){
  .footer__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

