.elementor-kit-9{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */:root {
  --primary: #0A2E5C;
  --primary-dark: #061B36;
  --red: #C62828;
  --red-dark: #A61E1E;
  --blue-light: #1E4D8B;
  --accent: #F4B400;
  --accent-dark: #C62828;
  --text: #222222;
  --muted: #666666;
  --light: #F7F9FC;
  --white: #ffffff;
  --border: #DCE3EE;
  --shadow: 0 18px 45px rgba(10, 46, 92, 0.16);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

/* Top bar + header */
.topbar {
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 14px;
  padding: 9px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.topbar strong {
  color: var(--accent);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 240px;
}

.logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-weight: 700;
  color: var(--primary);
  flex: 1;
}

.menu a {
  display: inline-block;
  padding: 8px 0;
  white-space: nowrap;
}

.menu a:hover,
.menu-quote {
  color: var(--red);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(10, 46, 92, 0.18);
  padding: 10px;
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: grid;
  gap: 4px;
}

.dropdown-menu a {
  padding: 10px 12px;
  color: var(--primary-dark);
  border-radius: 10px;
}

.dropdown-menu a:hover {
  background: var(--light);
  color: var(--red);
}

.submenu {
  display: grid;
  gap: 2px;
  padding-left: 16px;
}

.submenu a {
  font-size: 14px;
  color: var(--muted);
}

.nav-toggle {
  display: none;
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: 0.2s ease;
}

/* Shared buttons + forms */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--red-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.form-grid {
  display: grid;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 46, 92, 0.14);
}

.fineprint {
  text-align: center;
  color: var(--muted);
  font-size: 13px !important;
  margin: 12px 0 0 !important;
}

/* Hero */
.hero {
  background:
    linear-gradient(90deg, rgba(6, 27, 54, 0.96), rgba(10, 46, 92, 0.76)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/hero-bg-main.webp') center/cover;
  color: var(--white);
  padding: 92px 0 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.18);
  color: #FFD764;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0 0 16px;
}

.hero-title {
  max-width: 760px;
  margin-bottom: 22px;
}

.hero-title span {
  display: block;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 0.96;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero-title small {
  display: block;
  margin-top: 14px;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-haag-subheadline {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  max-width: 760px;
  margin: 0 0 26px;
  padding: 18px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.hero-haag-subheadline img {
  width: 150px;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent !important;
}

.hero-haag-subheadline strong {
  display: block;
  color: #FFD764;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-haag-subheadline span {
  display: block;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
  margin-top: 6px;
}

.hero-copy {
  max-width: 690px;
  color: #F2F6FB;
  font-size: 18px !important;
  line-height: 1.65;
  font-weight: 600;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 14px;
  font-weight: 800;
}

.hero-form-side {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quote-card {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  background: var(--white);
  color: var(--text);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-card h3 {
  color: var(--primary);
  font-size: 28px;
}

.quote-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.quote-card .ff-el-group,
.area-form-card .ff-el-group {
  margin-bottom: 12px;
}

.quote-card input,
.quote-card select,
.quote-card textarea,
.area-form-card input,
.area-form-card select,
.area-form-card textarea {
  border-radius: 12px !important;
}

.quote-card .ff-btn-submit,
.area-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.quote-card .ff-btn-submit:hover,
.area-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}

.hero-cert-truck-wrap {
  width: 100%;
  max-width: 520px;
  margin: 20px auto 0;
}

.hero-truck-image {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.hero-truck-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.35));
}

/* Logo carousel */
.logo-scroll-section {
  background: #ffffff;
  padding: 58px 0;
  overflow: hidden;
}

.logo-scroll-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-scroll-wrap::before,
.logo-scroll-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-scroll-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #ffffff, transparent);
}

.logo-scroll-wrap::after {
  right: 0;
  background: linear-gradient(270deg, #ffffff, transparent);
}

.logo-scroll-track {
  display: flex;
  align-items: center;
  gap: 42px;
  width: max-content;
  animation: logoScroll 24s linear infinite;
}

.logo-scroll-wrap:hover .logo-scroll-track {
  animation-play-state: paused;
}

.logo-card {
  flex: 0 0 220px;
  height: 110px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: grid;
  place-items: center;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(10, 46, 92, 0.07);
  transition: 0.25s ease;
}

.logo-card:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 18px 38px rgba(10, 46, 92, 0.16);
  border-bottom: 3px solid var(--primary);
}

.logo-card img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}

.logo-scroll-dots {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.logo-scroll-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfcfcf;
  display: block;
}

.logo-scroll-dots span.active {
  width: 46px;
  height: 8px;
  border-radius: 999px;
  background: #000000;
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-262px * 4)); }
}

/* Storm damage */
.storm-section {
  background: var(--red);
  color: #ffffff;
  padding: 86px 0;
}

.storm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}

.storm-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
  clip-path: polygon(12% 0, 100% 0, 100% 82%, 88% 100%, 0 100%, 0 18%);
}

.storm-content .label,
.warranties-content .label,
.area-info-card .label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 13px;
  margin-bottom: 12px;
}

.storm-content .label {
  color: #ffffff;
}

.storm-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 22px;
}

.storm-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 28px;
}

.storm-btn,
.warranty-btn,
.insight-btn,
.mission-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  text-transform: uppercase;
  transition: 0.2s ease;
}

.storm-btn {
  min-width: 250px;
  padding: 15px 32px;
  background: #ffffff;
  color: #000000;
  font-size: 14px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.storm-btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
}

/* Services carousel */
section {
  padding: 86px 0;
}

.services {
  background: var(--light);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head .label {
  color: var(--accent-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.3px;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--primary-dark);
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

/* Carousel wrapper */
.services-carousel-wrap {
  position: relative;
  width: 100%;
  padding: 0 58px;
}

/* Scroll container */
.services-carousel {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 0 28px;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

/* Fade edges */
.services-carousel::before,
.services-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.services-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--light), transparent);
}

.services-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--light), transparent);
}

/* Track */
.services-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: none;
  transform: none;
}

/* Cards */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(10, 46, 92, 0.07);
  overflow: hidden;
}

.services-track .service-card {
  flex: 0 0 310px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
}

.image-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  color: var(--primary);
  font-size: 21px;
}

.service-card p {
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.learn-more {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 18px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s ease;
}

.learn-more:hover {
  background: var(--red);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Arrows */
.services-arrow {
  position: absolute;
  top: 48%;
  z-index: 20;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(6, 27, 54, 0.24);
  transform: translateY(-50%);
  transition: 0.25s ease;
}

.services-arrow::before {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin-top: -2px;
}

.services-prev::before {
  content: "‹";
}

.services-next::before {
  content: "›";
}

.services-arrow:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.06);
}

.services-prev {
  left: 4px;
}

.services-next {
  right: 4px;
}

/* Manual navigation mode after user clicks/drags */
.services-carousel.is-manual {
  scroll-snap-type: x mandatory;
}

.services-carousel.is-manual .service-card {
  scroll-snap-align: start;
}

/* Responsive */
@media (max-width: 980px) {
  .services-carousel-wrap {
    padding: 0 48px;
  }

  .services-track .service-card {
    flex-basis: 310px;
    max-width: 310px;
  }

  .services-arrow {
    width: 40px;
    height: 40px;
  }

  .services-arrow::before {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .services-carousel-wrap {
    padding: 0;
  }

  .services-carousel {
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 58px;
  }

  .services-track {
    gap: 18px;
  }

  .services-track .service-card {
    flex-basis: 285px;
    max-width: 285px;
  }

  .services-arrow {
    top: auto;
    bottom: 4px;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .services-arrow:hover {
    transform: scale(1.06);
  }

  .services-prev {
    left: calc(50% - 48px);
  }

  .services-next {
    right: calc(50% - 48px);
  }
}

/* What to expect */
.expect-section {
  position: relative;
  padding: 0;
  background:
    linear-gradient(rgba(6, 27, 54, 0.72), rgba(6, 27, 54, 0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/expect-bg.png') center/cover;
  overflow: visible;
}

.expect-overlay {
  padding: 92px 0 100px;
}

.expect-head {
  max-width: 850px;
  margin: 0 auto 86px;
  text-align: center;
  color: #ffffff;
}

.expect-head h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 22px;
}

.expect-head p {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
  font-weight: 600;
}

.expect-card-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  padding-top: 54px;
}

.expect-card {
  position: relative;
  min-height: 360px;
  height: auto;
  background: #ffffff;
  color: #000000;
  padding: 88px 28px 36px;
  box-shadow: 0 22px 36px rgba(10, 46, 92, 0.16);
  transition: 0.25s ease;
  overflow: visible;
}

.expect-icon {
  position: absolute;
  top: -43px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(10, 46, 92, 0.18);
  transition: 0.25s ease;
}

.expect-card h3 {
  color: #000000;
  font-size: 23px;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 22px;
  transition: 0.25s ease;
}

.expect-card p {
  color: #000000;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  transition: 0.25s ease;
}

.expect-card:hover {
  background: var(--red);
  color: #ffffff;
  transform: translateY(-8px);
}

.expect-card:hover h3,
.expect-card:hover p {
  color: #ffffff;
}

.expect-card:hover .expect-icon {
  background: #000000;
  color: #ffffff;
}

/* Helpful insights */
.insights-carousel-section {
  background: #ffffff;
  padding: 78px 0 0;
  overflow: hidden;
}

.insights-head {
  max-width: 780px;
  margin: 0 auto 52px;
  text-align: center;
}

.insights-head h2 {
  color: #000000;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 900;
}

.insights-head p {
  color: #222222;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.insights-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.insights-track {
  display: flex;
  width: 200%;
  animation: insightsAutoSlideTwo 14s infinite ease-in-out;
}

.insights-carousel:hover .insights-track {
  animation-play-state: paused;
}

.insight-slide {
  width: 50%;
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 66px 72px;
  background: #ffffff;
  color: #000000;
}

.insight-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border: 5px solid var(--red);
  background: #ffffff;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
  clip-path: polygon(13% 0, 100% 0, 100% 82%, 87% 100%, 0 100%, 0 18%);
}

.insight-content h3 {
  color: #000000;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 0.98;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 22px;
}

.insight-content p,
.insight-content li {
  color: #000000;
  font-size: 16px;
  line-height: 1.65;
}

.insight-content p {
  margin-bottom: 16px;
}

.insight-content ul {
  margin: 0 0 24px;
  padding-left: 22px;
  display: grid;
  gap: 5px;
}

.insight-content li {
  font-size: 15px;
  line-height: 1.45;
}

.insight-btn {
  min-width: 170px;
  padding: 13px 28px;
  background: var(--red);
  color: #ffffff;
  font-size: 13px;
  transform: skewX(-12deg);
}

.insight-btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
}

@keyframes insightsAutoSlideTwo {
  0%, 42% { transform: translateX(0); }
  50%, 92% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Full-width blue CTA */
.standalone-cta-section {
  background: linear-gradient(135deg, var(--primary), #1E4D8B);
  padding: 86px 0;
  margin: 0;
}

.standalone-cta-band {
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 26px;
}

.standalone-cta-band h2 {
  color: var(--white);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.12;
  margin: 0;
  max-width: 900px;
}

.standalone-cta-band p {
  color: #EAF1FA;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  max-width: 820px;
}

.standalone-cta-band .btn {
  white-space: nowrap;
  margin-top: 6px;
}

/* Warranties */
.warranties-section {
  background: #ffffff;
  padding: 90px 0;
  overflow: hidden;
}

.warranties-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 60px;
  align-items: center;
}

.warranties-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(10, 46, 92, 0.16);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 16%);
}

.warranties-content {
  color: var(--primary-dark);
}

.warranties-content h2 {
  color: #000000;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.warranty-list {
  margin: 0 0 32px;
  padding-left: 24px;
  display: grid;
  gap: 16px;
}

.warranty-list li {
  color: #222222;
  font-size: 18px;
  line-height: 1.6;
}

.warranty-btn {
  min-width: 280px;
  padding: 15px 32px;
  background: var(--red);
  color: #ffffff;
  font-size: 15px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.warranty-btn:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mission */
.mission-section {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: #ffffff;
  overflow: hidden;
}

.mission-left {
  background: var(--red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 90px 0;
}

.mission-content {
  width: min(590px, calc(100% - 48px));
  margin-right: 70px;
  position: relative;
  z-index: 2;
}

.mission-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
}

.mission-line {
  width: 90px;
  height: 3px;
  background: #ffffff;
  margin-bottom: 22px;
}

.mission-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  margin: 0 0 32px;
}

.mission-actions {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}

.mission-btn {
  min-width: 235px;
  padding: 15px 34px;
  font-size: 15px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
}

.mission-btn.dark {
  background: #000000;
  color: #ffffff;
}

.mission-btn:hover {
  transform: translateY(-2px);
}

.mission-right {
  background:
    linear-gradient(rgba(6, 27, 54, 0.08), rgba(6, 27, 54, 0.08)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/about-us-house.png') center/cover;
  min-height: 620px;
}

.mission-truck {
  position: absolute;
  left: 48%;
  bottom: 36px;
  width: min(520px, 38vw);
  z-index: 4;
}

.mission-truck img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.24));
}

/* Why choose us */
.why-bg-section {
  position: relative;
  padding: 96px 0;
  background: #061B36;
  overflow: hidden;
}

.why-bg-overlay {
  position: relative;
  z-index: 1;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 46px;
  align-items: stretch;
}

/* Left image column */

.why-left-images {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 22px;
  width: 100%;
  max-width: 430px;
  height: 100%;
  justify-self: end;
  align-self: stretch;
}

.why-service-image-card {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.why-service-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-service-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 27, 54, 0.04),
    rgba(6, 27, 54, 0.68)
  );
  pointer-events: none;
}

.why-image-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

/* Right content card */

.why-bg-content {
  max-width: 720px;
  margin: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 26px;
  padding: 48px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
  align-self: stretch;
}

.why-bg-content .label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 10px;
}

/* Heading + HAAG image */

.why-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 105px;
  gap: 18px;
  align-items: start;
}

.why-title-text {
  min-width: 0;
}

.why-bg-content h2 {
  color: #000000;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.why-haag-heading {
  justify-self: end;
  align-self: start;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.why-haag-heading img {
  width: 100px;
  max-width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}

.title-line {
  width: 88px;
  height: 3px;
  background: #000000;
  margin-bottom: 20px;
}

.why-intro {
  color: #111111;
  font-size: 21px;
  line-height: 1.45;
  max-width: 560px;
  margin: 0 0 32px;
}

/* Feature rows */

.why-feature-list {
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  padding-top: 28px;
  display: grid;
  gap: 26px;
}

.why-feature {
  display: grid;
  grid-template-columns: 56px 220px 1fr;
  gap: 18px;
  align-items: center;
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(10, 46, 92, 0.12);
  display: grid;
  place-items: center;
  font-size: 25px;
  font-weight: 900;
}

.why-feature-title {
  color: #000000;
  font-size: 20px;
  line-height: 1.12;
  text-transform: uppercase;
  font-weight: 900;
}

.why-feature p {
  color: #111111;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}

/* Hide old single image card if it still exists */

.why-image-card {
  display: none;
}

/* Responsive */

@media (max-width: 980px) {
  .why-layout {
    grid-template-columns: 1fr;
  }

  .why-left-images {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    max-width: 100%;
    min-height: 260px;
    justify-self: stretch;
  }

  .why-service-image-card {
    min-height: 250px;
  }

  .why-title-row {
    grid-template-columns: minmax(0, 1fr) 95px;
  }

  .why-haag-heading img {
    width: 90px;
    max-width: 90px;
  }

  .why-feature {
    grid-template-columns: 56px 1fr;
    align-items: flex-start;
  }

  .why-feature p {
    grid-column: 2;
  }
}

@media (max-width: 600px) {
  .why-bg-section {
    padding: 68px 0;
  }

  .why-left-images {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: auto;
  }

  .why-service-image-card {
    height: 240px;
    min-height: 240px;
  }

  .why-bg-content {
    padding: 30px;
    border-radius: 24px;
  }

  .why-title-row {
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 12px;
  }

  .why-haag-heading img {
    width: 78px;
    max-width: 78px;
  }

  .why-bg-content h2 {
    font-size: 34px;
  }

  .why-intro {
    font-size: 18px;
  }

  .why-feature {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .why-feature-icon {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }

  .why-feature-title {
    font-size: 18px;
  }

  .why-feature p {
    grid-column: 1 / -1;
  }

  .why-image-label {
    font-size: 19px;
  }
}

/* Service area CTA form */
.area-form-cta {
  background: var(--light);
  padding: 90px 0;
}

.area-form-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.area-info-card,
.area-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.area-info-card h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  margin-bottom: 20px;
}

.area-info-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.area-inline-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.area-inline-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--primary-dark);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(10, 46, 92, 0.06);
}

.area-form-card h3 {
  color: var(--primary);
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.area-form-card > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.area-form-card .fineprint {
  margin-top: 14px !important;
}

/* Footer */
footer {
  background: #061B36;
  color: #DDE8F5;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

footer h4 {
  color: var(--white);
  margin: 0 0 12px;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-logo img {
  max-width: 320px;
  height: auto;
  margin-bottom: 14px;
}

.footer-about-text {
  text-align: justify;
  max-width: 430px;
}

.footer-services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 10px;
}

.footer-services-list a:hover {
  color: var(--accent);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 28px;
  padding-top: 20px;
  font-size: 14px;
  color: #AFC2D8;
}

/* Responsive */
@media (max-width: 1100px) {
  .menu {
    gap: 14px;
    font-size: 14px;
  }

  .logo {
    max-width: 210px;
  }

  .logo img {
    height: 56px;
  }

  .expect-card-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 74px;
  }

  .expect-card {
    min-height: 320px;
  }
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .container {
    width: min(100% - 24px, var(--max));
  }

  .nav {
    min-height: 72px;
    gap: 12px;
  }

  .logo {
    max-width: 210px;
  }

  .logo img {
    height: 48px;
  }

  .hamburger {
    display: inline-flex;
    margin-left: auto;
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .header-call {
    display: none;
  }

  .menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(10, 46, 92, 0.18);
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .menu a {
    padding: 15px 14px;
    border-bottom: 1px solid var(--border);
    color: var(--primary-dark);
  }

  .menu a:last-child {
    border-bottom: 0;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: grid;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
    background: transparent;
    min-width: 0;
  }

  .dropdown-menu a {
    border-bottom: 0;
    padding: 10px 14px;
  }

  .submenu {
    padding-left: 18px;
  }

  .nav-toggle:checked ~ .menu {
    display: flex;
  }

  .nav-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 64px 0;
  }

  .hero-grid,
  .storm-grid,
  .insight-slide,
  .warranties-grid,
  .mission-section,
  .why-layout,
  .area-form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-side,
  .quote-card {
    max-width: 100%;
    margin-left: 0;
  }

  .hero-title span {
    font-size: clamp(38px, 10vw, 56px);
  }

  .hero-title small {
    font-size: clamp(22px, 6vw, 34px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .storm-image img {
    height: 320px;
  }

  section {
    padding: 64px 0;
  }

  .expect-overlay {
    padding-bottom: 90px;
  }

  .insight-slide {
    width: 50%;
    gap: 34px;
    padding: 52px 28px 76px;
    min-height: auto;
  }

  .insight-image img {
    height: 300px;
  }

  .warranties-image img {
    height: 360px;
  }

  .mission-left {
    justify-content: center;
    padding: 72px 0 170px;
  }

  .mission-content {
    width: min(100% - 36px, 720px);
    margin-right: 0;
  }

  .mission-right {
    min-height: 360px;
  }

  .mission-truck {
    left: 50%;
    bottom: 300px;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 48px));
  }

  .why-image-card {
    justify-self: center;
  }

  .why-bg-content {
    max-width: 100%;
  }

  .why-feature {
    grid-template-columns: 54px 1fr;
  }

  .why-feature p {
    grid-column: 2;
  }

  .area-info-card,
  .area-form-card {
    padding: 32px;
  }
}

@media (max-width: 700px) {
  .expect-overlay {
    padding: 68px 0 86px;
  }

  .expect-head {
    margin-bottom: 76px;
  }

  .expect-head p {
    font-size: 17px;
  }

  .expect-card-row {
    grid-template-columns: 1fr;
    gap: 74px;
    padding-top: 48px;
  }

  .expect-card {
    min-height: auto;
    padding: 82px 24px 36px;
  }
}

@media (max-width: 600px) {
  .logo-scroll-section {
    padding: 42px 0;
  }

  .logo-scroll-wrap::before,
  .logo-scroll-wrap::after {
    width: 45px;
  }

  .logo-scroll-track {
    gap: 22px;
    animation-duration: 20s;
  }

  .logo-card {
    flex-basis: 180px;
    height: 95px;
  }

  @keyframes logoScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-202px * 4)); }
  }

  .hero-title span {
    font-size: 38px;
    letter-spacing: -1.4px;
  }

  .hero-title small {
    font-size: 23px;
    line-height: 1.15;
  }

  .hero-haag-subheadline {
    width: 100%;
    gap: 14px;
    padding: 14px;
  }

  .hero-haag-subheadline img {
    width: 105px;
    max-height: 105px;
  }

  .hero-haag-subheadline strong {
    font-size: 18px;
  }

  .hero-haag-subheadline span {
    font-size: 14px;
  }

  .hero-copy {
    font-size: 17px !important;
    line-height: 1.7;
  }

  .trust-row,
  .area-inline-list {
    grid-template-columns: 1fr;
  }

  .services-carousel::before,
  .services-carousel::after {
    width: 35px;
  }

  .services-track {
    gap: 16px;
    animation-duration: 34s;
  }

  .services-track .service-card {
    flex-basis: 285px;
  }

  .image-card img {
    height: 210px;
  }

  @keyframes servicesScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-301px * 8)); }
  }

  .storm-section,
  .warranties-section,
  .area-form-cta {
    padding: 64px 0;
  }

  .storm-image img,
  .insight-image img,
  .warranties-image img {
    height: 240px;
  }

  .storm-content p,
  .warranty-list li {
    font-size: 16px;
  }

  .storm-btn,
  .warranty-btn,
  .standalone-cta-band .btn,
  .mission-btn {
    width: 100%;
    min-width: 0;
  }

  .insights-carousel-section {
    padding-top: 62px;
  }

  .insights-head {
    margin-bottom: 34px;
  }

  .insight-slide {
    padding: 42px 20px 72px;
  }

  .insight-content h3 {
    font-size: 30px;
  }

  .insight-content p,
  .insight-content li {
    font-size: 15px;
  }

  .standalone-cta-section {
    padding: 64px 0;
  }

  .mission-left {
    padding: 62px 0 150px;
  }

  .mission-content p {
    font-size: 16px;
    line-height: 1.65;
  }

  .mission-right {
    min-height: 300px;
  }

  .mission-truck {
    bottom: 255px;
  }

  .why-bg-section {
    padding: 64px 0;
  }

  .why-bg-content,
  .area-info-card,
  .area-form-card {
    padding: 26px;
    border-radius: 22px;
  }

  .why-feature {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .why-feature p {
    grid-column: auto;
  }

  .why-feature-title {
    font-size: 19px;
  }

  .area-form-card h3 {
    font-size: 28px;
  }

  .footer-about-text {
    text-align: left;
  }

  .footer-services-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .logo {
    max-width: 190px;
  }

  .logo img {
    height: 42px;
  }

  .hamburger {
    width: 44px;
    height: 44px;
  }
}


/* ===============================
   ABOUT US PAGE
   Professional Roofers
================================ */

.about-page {
  background: #ffffff;
}

.about-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.about-section-head {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.about-section-head h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}


/* Hero */

.about-hero {
  background:
    linear-gradient(90deg, rgba(6,27,54,0.94), rgba(10,46,92,0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/propertyowner.png') center/cover;
  color: #ffffff;
  padding: 96px 0;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.about-hero-content h1 {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.about-hero-content p {
  color: #F2F6FB;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  max-width: 760px;
  margin: 0 0 30px;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-outline-dark {
  border-color: rgba(255,255,255,0.42);
  color: #ffffff;
}

.about-hero-visual {
  position: relative;
}

.about-hero-visual img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.18);
}

.about-exp-badge {
  position: absolute;
  left: -24px;
  bottom: 28px;
  background: var(--red);
  color: #ffffff;
  padding: 22px 28px;
  border-radius: 20px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.28);
}

.about-exp-badge strong {
  display: block;
  font-size: 46px;
  line-height: 0.95;
  font-weight: 900;
}

.about-exp-badge span {
  display: block;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 6px;
}


/* Trust Stats */

.about-trust-strip {
  background: var(--light);
  padding: 42px 0;
}

.about-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-trust-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
}

.about-trust-card strong {
  display: block;
  color: var(--primary);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  font-weight: 900;
}

.about-trust-card span {
  display: block;
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  margin-top: 8px;
}


/* Exterior Partner */

.about-partner-section {
  background: #ffffff;
  padding: 96px 0;
}

.about-partner-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.about-partner-image {
  background: var(--primary-dark);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.about-partner-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 24px rgba(0,0,0,0.28));
}

.about-partner-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.about-partner-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.about-check-grid div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.about-check-grid div::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  margin-right: 8px;
}


/* Values */

.about-values-section {
  background: var(--light);
  padding: 96px 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-value-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.about-value-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(198,40,40,0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
}

.about-value-card h3 {
  color: var(--primary);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.about-value-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Services Summary */

.about-services-section {
  background: #ffffff;
  padding: 96px 0;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-service-card {
  display: block;
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  min-height: 245px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  border-top: 5px solid var(--red);
}

.about-service-card:hover {
  background: var(--red);
  transform: translateY(-6px);
  color: #ffffff;
}

.about-service-card h3 {
  color: #ffffff;
  font-size: 23px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.about-service-card p {
  color: #EAF1FA;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Process */

.about-process-section {
  background:
    linear-gradient(rgba(6,27,54,0.88), rgba(6,27,54,0.88)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/expect-bg.png') center/cover;
  padding: 96px 0;
}

.about-process-panel {
  background: rgba(255,255,255,0.96);
  border-radius: 30px;
  padding: 48px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.22);
}

.about-process-panel h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-process-panel > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 820px;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.about-process-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
}

.about-process-card span {
  display: block;
  color: rgba(10,46,92,0.28);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.about-process-card h3 {
  color: var(--primary);
  font-size: 21px;
  margin-bottom: 10px;
}

.about-process-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}


/* Team / HAAG */

.about-team-section {
  background: var(--light);
  padding: 96px 0;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 46px;
  align-items: center;
}

.about-team-content {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.about-team-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-team-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.about-list li {
  color: var(--primary-dark);
  font-weight: 900;
}

.about-list li::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}

.about-haag-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-haag-card img {
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px;
}

.about-haag-card h3 {
  color: var(--primary-dark);
  font-size: 25px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-haag-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}


/* CTA Form */

.about-cta-section {
  background: linear-gradient(135deg, var(--primary), #1E4D8B);
  padding: 96px 0;
}

.about-cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.about-cta-content {
  color: #ffffff;
}

.about-cta-content .about-label {
  color: #FFD764;
}

.about-cta-content h2 {
  color: #ffffff;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-cta-content p {
  color: #EAF1FA;
  font-size: 19px;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 24px;
}

.about-cta-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-cta-contact a {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  font-weight: 900;
}

.about-form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.22);
}

.about-form-card h3 {
  color: var(--primary);
  font-size: 31px;
  line-height: 1.12;
  margin-bottom: 20px;
}

.about-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.about-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Responsive */

@media (max-width: 980px) {
  .about-hero-grid,
  .about-partner-grid,
  .about-team-grid,
  .about-cta-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-visual img {
    height: 360px;
  }

  .about-exp-badge {
    left: 22px;
  }

  .about-trust-grid,
  .about-values-grid,
  .about-service-grid,
  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-process-panel,
  .about-team-content,
  .about-form-card {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .about-hero,
  .about-partner-section,
  .about-values-section,
  .about-services-section,
  .about-process-section,
  .about-team-section,
  .about-cta-section {
    padding: 64px 0;
  }

  .about-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .about-hero-content p {
    font-size: 17px;
  }

  .about-hero-actions .btn {
    width: 100%;
  }

  .about-hero-visual img {
    height: 280px;
  }

  .about-trust-grid,
  .about-values-grid,
  .about-service-grid,
  .about-process-grid,
  .about-check-grid,
  .about-list {
    grid-template-columns: 1fr;
  }

  .about-partner-image {
    padding: 22px;
  }

  .about-process-panel,
  .about-team-content,
  .about-form-card {
    padding: 26px;
    border-radius: 22px;
  }

  .about-cta-contact a {
    width: 100%;
    justify-content: center;
  }
}

/* ===============================
   CONTACT PAGE
   Professional Roofers
================================ */

.contact-page {
  background: #ffffff;
}

.contact-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}


/* Hero */

.contact-hero {
  background:
    linear-gradient(90deg, rgba(6,27,54,0.96), rgba(10,46,92,0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/propertyowner.png') center/cover;
  color: #ffffff;
  padding: 96px 0;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 54px;
  align-items: center;
}

.contact-hero-content h1 {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-hero-content p {
  color: #F2F6FB;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  max-width: 760px;
  margin: 0 0 30px;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-hours-card {
  display: inline-grid;
  gap: 4px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 18px 38px rgba(0,0,0,0.16);
  backdrop-filter: blur(8px);
}

.contact-hours-card strong {
  color: #FFD764;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.contact-hours-card span {
  color: #ffffff;
  font-weight: 800;
}

.contact-hours-card em {
  color: #EAF1FA;
  font-size: 14px;
  font-style: normal;
}


/* Form Card */

.contact-form-card {
  background: #ffffff;
  color: var(--text);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.contact-form-top span {
  display: inline-flex;
  color: #ffffff;
  background: var(--red);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-form-top h2 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.contact-form-top p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 22px;
}

.contact-form-card .ff-el-group {
  margin-bottom: 12px;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  border-radius: 12px !important;
}

.contact-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.contact-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Merged Services + Service Area */

.contact-services-area-section {
  background: var(--light);
  padding: 96px 0;
}

.contact-services-area-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: stretch;
}

.contact-services-content,
.contact-area-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.contact-services-content h2,
.contact-area-card h2 {
  color: var(--primary-dark);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.contact-services-content p,
.contact-area-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.contact-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-service-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 15px;
}

.contact-service-list div::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
  margin-right: 8px;
}

.contact-area-card {
  display: flex;
  flex-direction: column;
}

.contact-area-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.contact-area-pills span {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--primary-dark);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(10,46,92,0.05);
}

.contact-area-card .btn {
  margin-top: auto;
  width: fit-content;
}


/* Emergency CTA */

.contact-emergency-section {
  background: #ffffff;
  padding: 90px 0;
}

.contact-emergency-band {
  background: linear-gradient(135deg, var(--primary), #1E4D8B);
  color: #ffffff;
  border-radius: 30px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
}

.contact-emergency-band .contact-label {
  color: #FFD764;
}

.contact-emergency-band h2 {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.contact-emergency-band p {
  color: #EAF1FA;
  font-size: 17px;
  line-height: 1.65;
  max-width: 760px;
  margin: 0;
}

.contact-emergency-band .btn {
  white-space: nowrap;
}


/* Responsive */

@media (max-width: 980px) {
  .contact-hero-grid,
  .contact-services-area-grid,
  .contact-emergency-band {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-services-content,
  .contact-area-card {
    padding: 30px;
  }

  .contact-emergency-band .btn,
  .contact-area-card .btn {
    width: fit-content;
  }
}

@media (max-width: 600px) {
  .contact-hero,
  .contact-services-area-section,
  .contact-emergency-section {
    padding: 64px 0;
  }

  .contact-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .contact-hero-content p {
    font-size: 17px;
  }

  .contact-hero-actions .btn {
    width: 100%;
  }

  .contact-form-card,
  .contact-services-content,
  .contact-area-card,
  .contact-emergency-band {
    padding: 26px;
    border-radius: 22px;
  }

  .contact-service-list,
  .contact-area-pills {
    grid-template-columns: 1fr;
  }

  .contact-emergency-band .btn,
  .contact-area-card .btn {
    width: 100%;
  }
}

/* ===============================
   SERVICE AREA PAGE
   Professional Roofers
================================ */

.service-area-page {
  background: #ffffff;
}

.sa-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.sa-section-head {
  max-width: 840px;
  margin: 0 auto 46px;
  text-align: center;
}

.sa-section-head h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sa-section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}


/* Hero */

.sa-hero {
  background:
    linear-gradient(90deg, rgba(6,27,54,0.96), rgba(10,46,92,0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/propertyowner.png') center/cover;
  color: #ffffff;
  padding: 96px 0;
}

.sa-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 54px;
  align-items: center;
}

.sa-hero-content h1 {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sa-hero-content p {
  color: #F2F6FB;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  max-width: 780px;
  margin: 0 0 30px;
}

.sa-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.sa-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
}

.sa-trust-row div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  font-weight: 900;
}

.sa-hero-visual {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
  backdrop-filter: blur(7px);
}

.sa-hero-visual img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 22px;
}


/* Where We Serve */

.sa-where-section {
  background: var(--light);
  padding: 96px 0;
}

.sa-where-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: center;
}

.sa-where-content {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.sa-where-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sa-where-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.sa-mini-cta {
  margin-top: 26px;
  background: linear-gradient(135deg, var(--primary), #1E4D8B);
  border-radius: 18px;
  padding: 20px;
  color: #ffffff;
}

.sa-mini-cta strong {
  display: block;
  color: #FFD764;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 14px;
  margin-bottom: 4px;
}

.sa-mini-cta span,
.sa-mini-cta a {
  color: #ffffff;
  font-weight: 800;
}

.sa-city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sa-city-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
  color: var(--primary-dark);
}

.sa-city-card:hover {
  transform: translateY(-6px);
  border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
  color: var(--primary-dark);
}

.sa-city-card span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(198,40,40,0.1);
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
}

.sa-city-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}


/* Services */

.sa-services-section {
  background: #ffffff;
  padding: 96px 0;
}

.sa-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sa-service-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
  min-height: 245px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
  color: var(--text);
}

.sa-service-card:hover {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.sa-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(198,40,40,0.1);
  color: var(--red);
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 20px;
  transition: 0.25s ease;
}

.sa-service-card:hover .sa-service-icon {
  background: var(--red);
  color: #ffffff;
}

.sa-service-card h3 {
  color: var(--primary);
  font-size: 23px;
  line-height: 1.1;
  margin-bottom: 14px;
  transition: 0.25s ease;
}

.sa-service-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  transition: 0.25s ease;
}

.sa-service-card:hover h3,
.sa-service-card:hover p {
  color: #ffffff;
}


/* Form CTA */

.sa-form-section {
  background:
    linear-gradient(rgba(6,27,54,0.91), rgba(6,27,54,0.91)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/maps.png') center/cover;
  padding: 96px 0;
}

.sa-form-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: center;
}

.sa-form-content {
  color: #ffffff;
}

.sa-form-content .sa-label {
  color: #FFD764;
}

.sa-form-content h2 {
  color: #ffffff;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sa-form-content p {
  color: #EAF1FA;
  font-size: 19px;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 26px;
}

.sa-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  max-width: 620px;
}

.sa-check-list li {
  color: #ffffff;
  font-weight: 900;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 14px 16px;
}

.sa-check-list li::before {
  content: "✓";
  color: #FFD764;
  margin-right: 8px;
}

.sa-form-card {
  background: #ffffff;
  color: var(--text);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.sa-form-card h3 {
  color: var(--primary);
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 20px;
}

.sa-form-card .ff-el-group {
  margin-bottom: 12px;
}

.sa-form-card input,
.sa-form-card select,
.sa-form-card textarea {
  border-radius: 12px !important;
}

.sa-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.sa-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Final CTA */

.sa-final-cta-section {
  background: #ffffff;
  padding: 90px 0;
}

.sa-final-cta {
  background: linear-gradient(135deg, var(--primary), #1E4D8B);
  color: #ffffff;
  border-radius: 30px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow);
}

.sa-final-cta .sa-label {
  color: #FFD764;
}

.sa-final-cta h2 {
  color: #ffffff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.sa-final-cta p {
  color: #EAF1FA;
  font-size: 17px;
  line-height: 1.65;
  max-width: 760px;
  margin: 0;
}

.sa-final-cta .btn {
  white-space: nowrap;
}


/* Responsive */

@media (max-width: 980px) {
  .sa-hero-grid,
  .sa-where-grid,
  .sa-form-grid,
  .sa-final-cta {
    grid-template-columns: 1fr;
  }

  .sa-city-grid,
  .sa-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sa-hero-visual img {
    height: 330px;
  }

  .sa-where-content,
  .sa-form-card {
    padding: 32px;
  }

  .sa-final-cta .btn {
    width: fit-content;
  }
}

@media (max-width: 600px) {
  .sa-hero,
  .sa-where-section,
  .sa-services-section,
  .sa-form-section,
  .sa-final-cta-section {
    padding: 64px 0;
  }

  .sa-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .sa-hero-content p,
  .sa-form-content p {
    font-size: 17px;
  }

  .sa-hero-actions .btn,
  .sa-final-cta .btn {
    width: 100%;
  }

  .sa-trust-row,
  .sa-city-grid,
  .sa-service-grid {
    grid-template-columns: 1fr;
  }

  .sa-hero-visual img {
    height: 260px;
  }

  .sa-where-content,
  .sa-form-card,
  .sa-final-cta {
    padding: 26px;
    border-radius: 22px;
  }
}

/* ===============================
   RESIDENTIAL ROOFING PAGE
   Professional Roofers
================================ */

.res-page {
  background: #ffffff;
}

.res-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.res-section-head {
  max-width: 860px;
  margin: 0 auto 46px;
  text-align: center;
}

.res-section-head h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.res-section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}


/* Hero */

.res-hero {
  background:
    linear-gradient(90deg, rgba(6,27,54,0.96), rgba(10,46,92,0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/res-roofing.png') center/cover;
  color: #ffffff;
  padding: 96px 0;
}

.res-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 54px;
  align-items: center;
}

.res-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.res-rating-pill span {
  color: #FFD764;
  letter-spacing: 1px;
  font-size: 14px;
}

.res-rating-pill strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.res-hero-content h1 {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.res-hero-content p {
  color: #F2F6FB;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  max-width: 780px;
  margin: 0 0 30px;
}

.res-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.res-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
}

.res-trust-row div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  font-weight: 900;
}

.res-hero-form {
  background: #ffffff;
  color: var(--text);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.res-hero-form h3 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.res-hero-form > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.res-hero-form .ff-el-group {
  margin-bottom: 12px;
}

.res-hero-form input,
.res-hero-form select,
.res-hero-form textarea {
  border-radius: 12px !important;
}

.res-hero-form .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.res-hero-form .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* System Section */

.res-system-section {
  background: #ffffff;
  padding: 96px 0;
}

.res-system-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.res-system-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 16%);
}

.res-system-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.res-system-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.res-system-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.res-system-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.res-system-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Inspection */

.res-inspection-section {
  background: var(--light);
  padding: 96px 0;
}

.res-inspection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.res-inspection-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
}

.res-inspection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.res-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(198,40,40,0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.res-inspection-card h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.res-inspection-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Details */

.res-details-section {
  background: #ffffff;
  padding: 96px 0;
}

.res-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.res-detail-card {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  min-height: 240px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  border-top: 5px solid var(--red);
}

.res-detail-card:hover {
  background: var(--red);
  transform: translateY(-6px);
}

.res-detail-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.res-detail-card p {
  color: #EAF1FA;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Storm */

.res-storm-section {
  background: var(--red);
  color: #ffffff;
  padding: 96px 0;
}

.res-storm-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.res-storm-content .res-label {
  color: #FFD764;
}

.res-storm-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.res-storm-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.res-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  gap: 12px;
}

.res-check-list li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 15px 18px;
  color: #ffffff;
  line-height: 1.55;
}

.res-check-list strong {
  color: #FFD764;
}

.res-storm-image img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 22px 40px rgba(0,0,0,0.22);
  clip-path: polygon(12% 0, 100% 0, 100% 82%, 88% 100%, 0 100%, 0 18%);
}


/* Process */

.res-process-section {
  background: var(--light);
  padding: 96px 0;
}

.res-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.res-process-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
}

.res-process-card span {
  display: block;
  color: rgba(10,46,92,0.28);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.res-process-card h3 {
  color: var(--primary);
  font-size: 21px;
  margin-bottom: 10px;
}

.res-process-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}


/* Why */

.res-why-section {
  background: #ffffff;
  padding: 96px 0;
}

.res-why-grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 46px;
  align-items: center;
}

.res-why-content {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.res-why-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.res-why-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.res-why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.res-why-list div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.res-why-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}

.res-haag-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.res-haag-card img {
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px;
}

.res-haag-card h3 {
  color: var(--primary-dark);
  font-size: 25px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.res-haag-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}


/* Service Area + Form */

.res-service-area-section {
  background: var(--light);
  padding: 96px 0;
}

.res-service-area-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.res-service-area-card,
.res-area-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.res-service-area-card h2 {
  color: var(--primary-dark);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.res-service-area-card p,
.res-area-form-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.res-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.res-area-list span {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.res-area-form-card h3 {
  color: var(--primary);
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.res-area-form-card .ff-el-group {
  margin-bottom: 12px;
}

.res-area-form-card input,
.res-area-form-card select,
.res-area-form-card textarea {
  border-radius: 12px !important;
}

.res-area-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.res-area-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Responsive */

@media (max-width: 1100px) {
  .res-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .res-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .res-hero-grid,
  .res-system-grid,
  .res-storm-grid,
  .res-why-grid,
  .res-service-area-grid {
    grid-template-columns: 1fr;
  }

  .res-inspection-grid,
  .res-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .res-system-image img,
  .res-storm-image img {
    height: 340px;
  }

  .res-hero-form,
  .res-why-content,
  .res-haag-card,
  .res-service-area-card,
  .res-area-form-card {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .res-hero,
  .res-system-section,
  .res-inspection-section,
  .res-details-section,
  .res-storm-section,
  .res-process-section,
  .res-why-section,
  .res-service-area-section {
    padding: 64px 0;
  }

  .res-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .res-hero-content p,
  .res-system-content p,
  .res-storm-content p {
    font-size: 17px;
  }

  .res-hero-actions .btn {
    width: 100%;
  }

  .res-trust-row,
  .res-system-list,
  .res-inspection-grid,
  .res-detail-grid,
  .res-process-grid,
  .res-why-list,
  .res-area-list {
    grid-template-columns: 1fr;
  }

  .res-system-image img,
  .res-storm-image img {
    height: 260px;
  }

  .res-hero-form,
  .res-why-content,
  .res-haag-card,
  .res-service-area-card,
  .res-area-form-card {
    padding: 26px;
    border-radius: 22px;
  }
}

/* ===============================
   COMMERCIAL ROOFING PAGE
   Professional Roofers
================================ */

.com-page {
  background: #ffffff;
}

.com-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.com-section-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.com-section-head h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.com-section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}


/* Hero */

.com-hero {
  background:
    linear-gradient(90deg, rgba(6,27,54,0.96), rgba(10,46,92,0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/comroof.png') center/cover;
  color: #ffffff;
  padding: 96px 0;
}

.com-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 54px;
  align-items: center;
}

.com-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.com-rating-pill span {
  color: #FFD764;
  letter-spacing: 1px;
  font-size: 14px;
}

.com-rating-pill strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.com-hero-content h1 {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.com-hero-content p {
  color: #F2F6FB;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  max-width: 780px;
  margin: 0 0 30px;
}

.com-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.com-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
}

.com-trust-row div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  font-weight: 900;
}

.com-hero-form {
  background: #ffffff;
  color: var(--text);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.com-hero-form h3 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.com-hero-form > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.com-hero-form .ff-el-group {
  margin-bottom: 12px;
}

.com-hero-form input,
.com-hero-form select,
.com-hero-form textarea {
  border-radius: 12px !important;
}

.com-hero-form .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.com-hero-form .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Built to Drain */

.com-system-section {
  background: #ffffff;
  padding: 96px 0;
}

.com-system-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.com-system-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 16%);
}

.com-system-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.com-system-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.com-system-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.com-system-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.com-system-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Services */

.com-service-section {
  background: var(--light);
  padding: 96px 0;
}

.com-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.com-service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
}

.com-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.com-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(198,40,40,0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.com-service-card h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.com-service-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Details */

.com-details-section {
  background: #ffffff;
  padding: 96px 0;
}

.com-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.com-detail-card {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  min-height: 240px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  border-top: 5px solid var(--red);
}

.com-detail-card:hover {
  background: var(--red);
  transform: translateY(-6px);
}

.com-detail-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.com-detail-card p {
  color: #EAF1FA;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Emergency */

.com-emergency-section {
  background: var(--red);
  color: #ffffff;
  padding: 96px 0;
}

.com-emergency-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.com-emergency-content .com-label {
  color: #FFD764;
}

.com-emergency-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.com-emergency-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.com-check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 30px;
  display: grid;
  gap: 12px;
}

.com-check-list li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 15px 18px;
  color: #ffffff;
  line-height: 1.55;
}

.com-check-list strong {
  color: #FFD764;
}

/* Blue emergency button */
.com-emergency-content .btn,
.com-emergency-content .btn-primary,
.com-emergency-content a.btn {
  background: var(--primary-dark);
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 14px 30px rgba(6, 27, 54, 0.28);
}

.com-emergency-content .btn:hover,
.com-emergency-content .btn-primary:hover,
.com-emergency-content a.btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.com-emergency-image img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 22px 40px rgba(0,0,0,0.22);
  clip-path: polygon(12% 0, 100% 0, 100% 82%, 88% 100%, 0 100%, 0 18%);
}


/* Process */

.com-process-section {
  background: var(--light);
  padding: 96px 0;
}

.com-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.com-process-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
}

.com-process-card span {
  display: block;
  color: rgba(10,46,92,0.28);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.com-process-card h3 {
  color: var(--primary);
  font-size: 21px;
  margin-bottom: 10px;
}

.com-process-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}


/* Why */

.com-why-section {
  background: #ffffff;
  padding: 96px 0;
}

.com-why-grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 46px;
  align-items: center;
}

.com-why-content {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.com-why-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.com-why-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.com-why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.com-why-list div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.com-why-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}

.com-why-card {
  background: var(--primary-dark);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
  color: #ffffff;
}

.com-why-card img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 20px 20px rgba(0,0,0,0.35));
}

.com-why-card h3 {
  color: #ffffff;
  font-size: 25px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.com-why-card p {
  color: #EAF1FA;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}


/* Service Area + Form */

.com-service-area-section {
  background: var(--light);
  padding: 96px 0;
}

.com-service-area-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.com-service-area-card,
.com-area-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.com-service-area-card h2 {
  color: var(--primary-dark);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.com-service-area-card p,
.com-area-form-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.com-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.com-area-list span {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.com-area-form-card h3 {
  color: var(--primary);
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.com-area-form-card .ff-el-group {
  margin-bottom: 12px;
}

.com-area-form-card input,
.com-area-form-card select,
.com-area-form-card textarea {
  border-radius: 12px !important;
}

.com-area-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.com-area-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Responsive */

@media (max-width: 1100px) {
  .com-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .com-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .com-hero-grid,
  .com-system-grid,
  .com-emergency-grid,
  .com-why-grid,
  .com-service-area-grid {
    grid-template-columns: 1fr;
  }

  .com-service-grid,
  .com-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .com-system-image img,
  .com-emergency-image img {
    height: 340px;
  }

  .com-hero-form,
  .com-why-content,
  .com-why-card,
  .com-service-area-card,
  .com-area-form-card {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .com-hero,
  .com-system-section,
  .com-service-section,
  .com-details-section,
  .com-emergency-section,
  .com-process-section,
  .com-why-section,
  .com-service-area-section {
    padding: 64px 0;
  }

  .com-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .com-hero-content p,
  .com-system-content p,
  .com-emergency-content p {
    font-size: 17px;
  }

  .com-hero-actions .btn {
    width: 100%;
  }

  .com-trust-row,
  .com-system-list,
  .com-service-grid,
  .com-detail-grid,
  .com-process-grid,
  .com-why-list,
  .com-area-list {
    grid-template-columns: 1fr;
  }

  .com-system-image img,
  .com-emergency-image img {
    height: 260px;
  }

  .com-hero-form,
  .com-why-content,
  .com-why-card,
  .com-service-area-card,
  .com-area-form-card {
    padding: 26px;
    border-radius: 22px;
  }
}

/* ===============================
   SIDING WINDOWS PAGE
   Professional Roofers
================================ */

.sw-page {
  background: #ffffff;
}

.sw-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.sw-section-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.sw-section-head h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sw-section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}


/* Hero */

.sw-hero {
  background:
    linear-gradient(90deg, rgba(6,27,54,0.96), rgba(10,46,92,0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/siding-windows.png') center/cover;
  color: #ffffff;
  padding: 96px 0;
}

.sw-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 54px;
  align-items: center;
}

.sw-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.sw-rating-pill span {
  color: #FFD764;
  letter-spacing: 1px;
  font-size: 14px;
}

.sw-rating-pill strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.sw-hero-content h1 {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sw-hero-content p {
  color: #F2F6FB;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  max-width: 780px;
  margin: 0 0 30px;
}

.sw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.sw-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
}

.sw-trust-row div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  font-weight: 900;
}

.sw-hero-form {
  background: #ffffff;
  color: var(--text);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.sw-hero-form h3 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.sw-hero-form > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.sw-hero-form .ff-el-group {
  margin-bottom: 12px;
}

.sw-hero-form input,
.sw-hero-form select,
.sw-hero-form textarea {
  border-radius: 12px !important;
}

.sw-hero-form .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.sw-hero-form .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* System */

.sw-system-section {
  background: #ffffff;
  padding: 96px 0;
}

.sw-system-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.sw-system-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 16%);
}

.sw-system-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sw-system-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.sw-system-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.sw-system-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.sw-system-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Services */

.sw-services-section {
  background: var(--light);
  padding: 96px 0;
}

.sw-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sw-service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
}

.sw-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.sw-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(198,40,40,0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.sw-service-card h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sw-service-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Warning */

.sw-warning-section {
  background: var(--red);
  color: #ffffff;
  padding: 96px 0;
}

.sw-warning-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.sw-warning-content .sw-label {
  color: #FFD764;
}

.sw-warning-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.sw-warning-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.sw-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sw-check-list li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 14px 16px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 800;
}

.sw-check-list li::before {
  content: "✓";
  color: #FFD764;
  margin-right: 8px;
}

.sw-warning-image img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 22px 40px rgba(0,0,0,0.22);
  clip-path: polygon(12% 0, 100% 0, 100% 82%, 88% 100%, 0 100%, 0 18%);
}


/* Details */

.sw-details-section {
  background: #ffffff;
  padding: 96px 0;
}

.sw-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sw-detail-card {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  min-height: 240px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  border-top: 5px solid var(--red);
}

.sw-detail-card:hover {
  background: var(--red);
  transform: translateY(-6px);
}

.sw-detail-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sw-detail-card p {
  color: #EAF1FA;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Commercial */

.sw-commercial-section {
  background: var(--light);
  padding: 96px 0;
}

.sw-commercial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.sw-commercial-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.sw-commercial-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sw-commercial-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.sw-commercial-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.sw-commercial-list div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.sw-commercial-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Process */

.sw-process-section {
  background: #ffffff;
  padding: 96px 0;
}

.sw-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.sw-process-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
}

.sw-process-card span {
  display: block;
  color: rgba(10,46,92,0.28);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.sw-process-card h3 {
  color: var(--primary);
  font-size: 21px;
  margin-bottom: 10px;
}

.sw-process-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}


/* Service Area + Form */

.sw-service-area-section {
  background: var(--light);
  padding: 96px 0;
}

.sw-service-area-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.sw-service-area-card,
.sw-area-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.sw-service-area-card h2 {
  color: var(--primary-dark);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sw-service-area-card p,
.sw-area-form-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.sw-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sw-area-list span {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.sw-area-form-card h3 {
  color: var(--primary);
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.sw-area-form-card .ff-el-group {
  margin-bottom: 12px;
}

.sw-area-form-card input,
.sw-area-form-card select,
.sw-area-form-card textarea {
  border-radius: 12px !important;
}

.sw-area-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.sw-area-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Responsive */

@media (max-width: 1100px) {
  .sw-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sw-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .sw-hero-grid,
  .sw-system-grid,
  .sw-warning-grid,
  .sw-commercial-grid,
  .sw-service-area-grid {
    grid-template-columns: 1fr;
  }

  .sw-service-grid,
  .sw-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sw-system-image img,
  .sw-warning-image img,
  .sw-commercial-image img {
    height: 340px;
  }

  .sw-hero-form,
  .sw-service-area-card,
  .sw-area-form-card {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .sw-hero,
  .sw-system-section,
  .sw-services-section,
  .sw-warning-section,
  .sw-details-section,
  .sw-commercial-section,
  .sw-process-section,
  .sw-service-area-section {
    padding: 64px 0;
  }

  .sw-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .sw-hero-content p,
  .sw-system-content p,
  .sw-warning-content p,
  .sw-commercial-content p {
    font-size: 17px;
  }

  .sw-hero-actions .btn {
    width: 100%;
  }

  .sw-trust-row,
  .sw-system-list,
  .sw-service-grid,
  .sw-check-list,
  .sw-detail-grid,
  .sw-commercial-list,
  .sw-process-grid,
  .sw-area-list {
    grid-template-columns: 1fr;
  }

  .sw-system-image img,
  .sw-warning-image img,
  .sw-commercial-image img {
    height: 260px;
  }

  .sw-hero-form,
  .sw-service-area-card,
  .sw-area-form-card {
    padding: 26px;
    border-radius: 22px;
  }
}

/* ===============================
   STORM DAMAGE PAGE
   Professional Roofers
================================ */

.sd-page {
  background: #ffffff;
}

.sd-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.sd-section-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.sd-section-head h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sd-section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}


/* Hero */

.sd-hero {
  background:
    linear-gradient(90deg, rgba(6,27,54,0.96), rgba(10,46,92,0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/storm-damage-image.png') center/cover;
  color: #ffffff;
  padding: 96px 0;
}

.sd-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 54px;
  align-items: center;
}

.sd-emergency-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(198,40,40,0.88);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.sd-emergency-pill span {
  color: #FFD764;
  font-size: 16px;
}

.sd-emergency-pill strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.sd-hero-content h1 {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sd-hero-content p {
  color: #F2F6FB;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  max-width: 780px;
  margin: 0 0 30px;
}

.sd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.sd-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
}

.sd-trust-row div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  font-weight: 900;
}

.sd-hero-form {
  background: #ffffff;
  color: var(--text);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.sd-hero-form h3 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.sd-hero-form > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.sd-hero-form .ff-el-group {
  margin-bottom: 12px;
}

.sd-hero-form input,
.sd-hero-form select,
.sd-hero-form textarea {
  border-radius: 12px !important;
}

.sd-hero-form .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.sd-hero-form .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Alert Band */

.sd-alert-section {
  background: #ffffff;
  padding: 42px 0;
}

.sd-alert-band {
  background: var(--red);
  color: #ffffff;
  border-radius: 24px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow);
}

.sd-alert-band div {
  display: grid;
  gap: 6px;
}

.sd-alert-band span {
  color: #FFD764;
  font-size: 30px;
  line-height: 1;
}

.sd-alert-band strong {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.15;
  text-transform: uppercase;
}

.sd-alert-band p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}


/* Restoration */

.sd-restoration-section {
  background: var(--light);
  padding: 96px 0;
}

.sd-restoration-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.sd-restoration-content {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.sd-restoration-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sd-restoration-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.sd-highlight-card {
  background: linear-gradient(135deg, var(--primary), #1E4D8B);
  color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  margin-top: 26px;
}

.sd-highlight-card strong {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.45;
}

.sd-restoration-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 16%);
}


/* Services */

.sd-services-section {
  background: #ffffff;
  padding: 96px 0;
}

.sd-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sd-service-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
}

.sd-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
  background: #ffffff;
}

.sd-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(198,40,40,0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.sd-service-card h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sd-service-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Damage Signs */

.sd-damage-section {
  background: var(--red);
  color: #ffffff;
  padding: 96px 0;
}

.sd-damage-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 54px;
  align-items: center;
}

.sd-damage-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 22px 40px rgba(0,0,0,0.22);
  clip-path: polygon(12% 0, 100% 0, 100% 82%, 88% 100%, 0 100%, 0 18%);
}

.sd-damage-content .sd-label {
  color: #FFD764;
}

.sd-damage-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.sd-damage-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.sd-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sd-check-list li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 14px 16px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 800;
}

.sd-check-list li::before {
  content: "✓";
  color: #FFD764;
  margin-right: 8px;
}


/* Insurance */

.sd-insurance-section {
  background: var(--light);
  padding: 96px 0;
}

.sd-insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sd-insurance-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
}

.sd-insurance-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.sd-insurance-card span {
  display: block;
  color: rgba(10,46,92,0.28);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.sd-insurance-card h3 {
  color: var(--primary);
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sd-insurance-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Process */

.sd-process-section {
  background: #ffffff;
  padding: 96px 0;
}

.sd-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.sd-process-card {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.sd-process-card span {
  display: block;
  color: rgba(255,255,255,0.28);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.sd-process-card h3 {
  color: #ffffff;
  font-size: 21px;
  margin-bottom: 10px;
}

.sd-process-card p {
  color: #EAF1FA;
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}


/* HAAG */

.sd-haag-section {
  background: var(--light);
  padding: 96px 0;
}

.sd-haag-grid {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 46px;
  align-items: center;
}

.sd-haag-content {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.sd-haag-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sd-haag-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.sd-haag-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sd-haag-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.sd-haag-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}

.sd-haag-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadow);
}

.sd-haag-card img {
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 20px;
}

.sd-haag-card h3 {
  color: var(--primary-dark);
  font-size: 25px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sd-haag-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}


/* Final Service Area + Form */

.sd-final-section {
  background: #ffffff;
  padding: 96px 0;
}

.sd-final-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.sd-area-card,
.sd-final-form-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.sd-area-card h2 {
  color: var(--primary-dark);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sd-area-card p,
.sd-final-form-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.sd-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sd-area-list span {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.sd-final-form-card h3 {
  color: var(--primary);
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.sd-final-form-card .ff-el-group {
  margin-bottom: 12px;
}

.sd-final-form-card input,
.sd-final-form-card select,
.sd-final-form-card textarea {
  border-radius: 12px !important;
}

.sd-final-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.sd-final-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Responsive */

@media (max-width: 1100px) {
  .sd-insurance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sd-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .sd-hero-grid,
  .sd-alert-band,
  .sd-restoration-grid,
  .sd-damage-grid,
  .sd-haag-grid,
  .sd-final-grid {
    grid-template-columns: 1fr;
  }

  .sd-service-grid,
  .sd-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sd-restoration-image img,
  .sd-damage-image img {
    height: 340px;
  }

  .sd-hero-form,
  .sd-restoration-content,
  .sd-haag-content,
  .sd-haag-card,
  .sd-area-card,
  .sd-final-form-card {
    padding: 32px;
  }

  .sd-alert-band .btn {
    width: fit-content;
  }
}

@media (max-width: 600px) {
  .sd-hero,
  .sd-restoration-section,
  .sd-services-section,
  .sd-damage-section,
  .sd-insurance-section,
  .sd-process-section,
  .sd-haag-section,
  .sd-final-section {
    padding: 64px 0;
  }

  .sd-alert-section {
    padding: 32px 0;
  }

  .sd-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .sd-hero-content p,
  .sd-restoration-content p,
  .sd-damage-content p,
  .sd-haag-content p {
    font-size: 17px;
  }

  .sd-hero-actions .btn,
  .sd-alert-band .btn {
    width: 100%;
  }

  .sd-trust-row,
  .sd-service-grid,
  .sd-check-list,
  .sd-insurance-grid,
  .sd-process-grid,
  .sd-haag-list,
  .sd-area-list {
    grid-template-columns: 1fr;
  }

  .sd-restoration-image img,
  .sd-damage-image img {
    height: 260px;
  }

  .sd-hero-form,
  .sd-alert-band,
  .sd-restoration-content,
  .sd-haag-content,
  .sd-haag-card,
  .sd-area-card,
  .sd-final-form-card {
    padding: 26px;
    border-radius: 22px;
  }
}

/* ===============================
   PROPERTY DAMAGE RESTORATION PAGE
   Professional Roofers
================================ */

.pdr-page {
  background: #ffffff;
}

.pdr-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.pdr-section-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.pdr-section-head h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pdr-section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}


/* Hero */

.pdr-hero {
  background:
    linear-gradient(90deg, rgba(6,27,54,0.96), rgba(10,46,92,0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/property-restore.png') center/cover;
  color: #ffffff;
  padding: 96px 0;
}

.pdr-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 54px;
  align-items: center;
}

.pdr-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.pdr-rating-pill span {
  color: #FFD764;
  letter-spacing: 1px;
  font-size: 14px;
}

.pdr-rating-pill strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.pdr-hero-content h1 {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pdr-hero-content p {
  color: #F2F6FB;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  max-width: 780px;
  margin: 0 0 30px;
}

.pdr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.pdr-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
}

.pdr-trust-row div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  font-weight: 900;
}

.pdr-hero-form {
  background: #ffffff;
  color: var(--text);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.pdr-hero-form h3 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.pdr-hero-form > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.pdr-hero-form .ff-el-group {
  margin-bottom: 12px;
}

.pdr-hero-form input,
.pdr-hero-form select,
.pdr-hero-form textarea {
  border-radius: 12px !important;
}

.pdr-hero-form .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.pdr-hero-form .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Source Section */

.pdr-source-section {
  background: #ffffff;
  padding: 96px 0;
}

.pdr-source-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.pdr-source-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 16%);
}

.pdr-source-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pdr-source-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.pdr-source-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.pdr-source-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.pdr-source-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Coverage */

.pdr-coverage-section {
  background: var(--light);
  padding: 96px 0;
}

.pdr-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pdr-coverage-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
}

.pdr-coverage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.pdr-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(198,40,40,0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.pdr-coverage-card h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.pdr-coverage-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Emergency */

.pdr-emergency-section {
  background: var(--red);
  color: #ffffff;
  padding: 96px 0;
}

.pdr-emergency-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.pdr-emergency-content .pdr-label {
  color: #FFD764;
}

.pdr-emergency-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.pdr-emergency-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.pdr-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pdr-check-list li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 14px 16px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 800;
}

.pdr-check-list li::before {
  content: "✓";
  color: #FFD764;
  margin-right: 8px;
}

.pdr-emergency-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 22px 40px rgba(0,0,0,0.22);
  clip-path: polygon(12% 0, 100% 0, 100% 82%, 88% 100%, 0 100%, 0 18%);
}


/* Inspect Before We Sell */

.pdr-inspect-section {
  background: #ffffff;
  padding: 96px 0;
}

.pdr-inspect-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.pdr-inspect-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.pdr-inspect-card h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pdr-inspect-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.pdr-inspect-steps {
  display: grid;
  gap: 18px;
}

.pdr-inspect-step {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.pdr-inspect-step span {
  display: block;
  color: rgba(255,255,255,0.28);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.pdr-inspect-step h3 {
  color: #ffffff;
  font-size: 23px;
  margin-bottom: 10px;
}

.pdr-inspect-step p {
  color: #EAF1FA;
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}


/* Commercial */

.pdr-commercial-section {
  background: var(--light);
  padding: 96px 0;
}

.pdr-commercial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.pdr-commercial-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.pdr-commercial-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pdr-commercial-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.pdr-commercial-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.pdr-commercial-list div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.pdr-commercial-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Features */

.pdr-features-section {
  background: #ffffff;
  padding: 96px 0;
}

.pdr-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pdr-feature-card {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  min-height: 240px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  border-top: 5px solid var(--red);
}

.pdr-feature-card:hover {
  background: var(--red);
  transform: translateY(-6px);
}

.pdr-feature-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.pdr-feature-card p {
  color: #EAF1FA;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Process */

.pdr-process-section {
  background: var(--light);
  padding: 96px 0;
}

.pdr-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.pdr-process-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
}

.pdr-process-card span {
  display: block;
  color: rgba(10,46,92,0.28);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.pdr-process-card h3 {
  color: var(--primary);
  font-size: 21px;
  margin-bottom: 10px;
}

.pdr-process-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}


/* Final Service Area + Form */

.pdr-final-section {
  background: #ffffff;
  padding: 96px 0;
}

.pdr-final-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.pdr-area-card,
.pdr-final-form-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.pdr-area-card h2 {
  color: var(--primary-dark);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pdr-area-card p,
.pdr-final-form-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.pdr-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pdr-area-list span {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.pdr-final-form-card h3 {
  color: var(--primary);
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.pdr-final-form-card .ff-el-group {
  margin-bottom: 12px;
}

.pdr-final-form-card input,
.pdr-final-form-card select,
.pdr-final-form-card textarea {
  border-radius: 12px !important;
}

.pdr-final-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.pdr-final-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Responsive */

@media (max-width: 1100px) {
  .pdr-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pdr-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .pdr-hero-grid,
  .pdr-source-grid,
  .pdr-emergency-grid,
  .pdr-inspect-grid,
  .pdr-commercial-grid,
  .pdr-final-grid {
    grid-template-columns: 1fr;
  }

  .pdr-coverage-grid,
  .pdr-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pdr-source-image img,
  .pdr-emergency-image img,
  .pdr-commercial-image img {
    height: 340px;
  }

  .pdr-hero-form,
  .pdr-inspect-card,
  .pdr-area-card,
  .pdr-final-form-card {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .pdr-hero,
  .pdr-source-section,
  .pdr-coverage-section,
  .pdr-emergency-section,
  .pdr-inspect-section,
  .pdr-commercial-section,
  .pdr-features-section,
  .pdr-process-section,
  .pdr-final-section {
    padding: 64px 0;
  }

  .pdr-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .pdr-hero-content p,
  .pdr-source-content p,
  .pdr-emergency-content p,
  .pdr-commercial-content p {
    font-size: 17px;
  }

  .pdr-hero-actions .btn {
    width: 100%;
  }

  .pdr-trust-row,
  .pdr-source-list,
  .pdr-coverage-grid,
  .pdr-check-list,
  .pdr-commercial-list,
  .pdr-feature-grid,
  .pdr-process-grid,
  .pdr-area-list {
    grid-template-columns: 1fr;
  }

  .pdr-source-image img,
  .pdr-emergency-image img,
  .pdr-commercial-image img {
    height: 260px;
  }

  .pdr-hero-form,
  .pdr-inspect-card,
  .pdr-inspect-step,
  .pdr-area-card,
  .pdr-final-form-card {
    padding: 26px;
    border-radius: 22px;
  }
}

/* ===============================
   GUTTERS PAGE
   Professional Roofers
================================ */

.gut-page {
  background: #ffffff;
}

.gut-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.gut-section-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.gut-section-head h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gut-section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}


/* Hero */

.gut-hero {
  background:
    linear-gradient(90deg, rgba(6,27,54,0.96), rgba(10,46,92,0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/guttersbanner.png') center/cover;
  color: #ffffff;
  padding: 96px 0;
}

.gut-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 54px;
  align-items: center;
}

.gut-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.gut-rating-pill span {
  color: #FFD764;
  letter-spacing: 1px;
  font-size: 14px;
}

.gut-rating-pill strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.gut-hero-content h1 {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.gut-hero-content p {
  color: #F2F6FB;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  max-width: 780px;
  margin: 0 0 30px;
}

.gut-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.gut-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
}

.gut-trust-row div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  font-weight: 900;
}

.gut-hero-form {
  background: #ffffff;
  color: var(--text);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.gut-hero-form h3 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.gut-hero-form > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.gut-hero-form .ff-el-group {
  margin-bottom: 12px;
}

.gut-hero-form input,
.gut-hero-form select,
.gut-hero-form textarea {
  border-radius: 12px !important;
}

.gut-hero-form .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.gut-hero-form .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* System */

.gut-system-section {
  background: #ffffff;
  padding: 96px 0;
}

.gut-system-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.gut-system-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 16%);
}

.gut-system-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gut-system-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.gut-system-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.gut-system-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.gut-system-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Services */

.gut-services-section {
  background: var(--light);
  padding: 96px 0;
}

.gut-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gut-service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
}

.gut-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.gut-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(198,40,40,0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.gut-service-card h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.gut-service-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Warning */

.gut-warning-section {
  background: var(--red);
  color: #ffffff;
  padding: 96px 0;
}

.gut-warning-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.gut-warning-content .gut-label {
  color: #FFD764;
}

.gut-warning-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.gut-warning-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.gut-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gut-check-list li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 14px 16px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 800;
}

.gut-check-list li::before {
  content: "✓";
  color: #FFD764;
  margin-right: 8px;
}

.gut-warning-image img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 22px 40px rgba(0,0,0,0.22);
  clip-path: polygon(12% 0, 100% 0, 100% 82%, 88% 100%, 0 100%, 0 18%);
}


/* Repair vs Replace */

.gut-repair-section {
  background: #ffffff;
  padding: 96px 0;
}

.gut-repair-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gut-repair-card {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  min-height: 240px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  border-top: 5px solid var(--red);
}

.gut-repair-card:hover {
  background: var(--red);
  transform: translateY(-6px);
}

.gut-repair-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.gut-repair-card p {
  color: #EAF1FA;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Commercial */

.gut-commercial-section {
  background: var(--light);
  padding: 96px 0;
}

.gut-commercial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.gut-commercial-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gut-commercial-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.gut-commercial-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.gut-commercial-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.gut-commercial-list div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.gut-commercial-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Process */

.gut-process-section {
  background: #ffffff;
  padding: 96px 0;
}

.gut-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.gut-process-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
}

.gut-process-card span {
  display: block;
  color: rgba(10,46,92,0.28);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.gut-process-card h3 {
  color: var(--primary);
  font-size: 21px;
  margin-bottom: 10px;
}

.gut-process-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}


/* Service Area + Form */

.gut-service-area-section {
  background: var(--light);
  padding: 96px 0;
}

.gut-service-area-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.gut-service-area-card,
.gut-area-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.gut-service-area-card h2 {
  color: var(--primary-dark);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.gut-service-area-card p,
.gut-area-form-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.gut-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gut-area-list span {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.gut-area-form-card h3 {
  color: var(--primary);
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.gut-area-form-card .ff-el-group {
  margin-bottom: 12px;
}

.gut-area-form-card input,
.gut-area-form-card select,
.gut-area-form-card textarea {
  border-radius: 12px !important;
}

.gut-area-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.gut-area-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Responsive */

@media (max-width: 1100px) {
  .gut-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gut-repair-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .gut-hero-grid,
  .gut-system-grid,
  .gut-warning-grid,
  .gut-commercial-grid,
  .gut-service-area-grid {
    grid-template-columns: 1fr;
  }

  .gut-service-grid,
  .gut-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gut-system-image img,
  .gut-warning-image img,
  .gut-commercial-image img {
    height: 340px;
  }

  .gut-hero-form,
  .gut-service-area-card,
  .gut-area-form-card {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .gut-hero,
  .gut-system-section,
  .gut-services-section,
  .gut-warning-section,
  .gut-repair-section,
  .gut-commercial-section,
  .gut-process-section,
  .gut-service-area-section {
    padding: 64px 0;
  }

  .gut-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .gut-hero-content p,
  .gut-system-content p,
  .gut-warning-content p,
  .gut-commercial-content p {
    font-size: 17px;
  }

  .gut-hero-actions .btn {
    width: 100%;
  }

  .gut-trust-row,
  .gut-system-list,
  .gut-service-grid,
  .gut-check-list,
  .gut-repair-grid,
  .gut-commercial-list,
  .gut-process-grid,
  .gut-area-list {
    grid-template-columns: 1fr;
  }

  .gut-system-image img,
  .gut-warning-image img,
  .gut-commercial-image img {
    height: 260px;
  }

  .gut-hero-form,
  .gut-service-area-card,
  .gut-area-form-card {
    padding: 26px;
    border-radius: 22px;
  }
}

/* ===============================
   MASONRY & CHIMNEYS PAGE
   Professional Roofers
================================ */

.mc-page {
  background: #ffffff;
}

.mc-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.mc-section-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.mc-section-head h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mc-section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}


/* Hero */

.mc-hero {
  background:
    linear-gradient(90deg, rgba(6,27,54,0.96), rgba(10,46,92,0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/masonry.png') center/cover;
  color: #ffffff;
  padding: 96px 0;
}

.mc-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 54px;
  align-items: center;
}

.mc-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.mc-rating-pill span {
  color: #FFD764;
  letter-spacing: 1px;
  font-size: 14px;
}

.mc-rating-pill strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.mc-hero-content h1 {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mc-hero-content p {
  color: #F2F6FB;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  max-width: 780px;
  margin: 0 0 30px;
}

.mc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.mc-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
}

.mc-trust-row div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  font-weight: 900;
}

.mc-hero-form {
  background: #ffffff;
  color: var(--text);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.mc-hero-form h3 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.mc-hero-form > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.mc-hero-form .ff-el-group {
  margin-bottom: 12px;
}

.mc-hero-form input,
.mc-hero-form select,
.mc-hero-form textarea {
  border-radius: 12px !important;
}

.mc-hero-form .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.mc-hero-form .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* System */

.mc-system-section {
  background: #ffffff;
  padding: 96px 0;
}

.mc-system-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.mc-system-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 16%);
}

.mc-system-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mc-system-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.mc-system-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.mc-system-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.mc-system-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Services */

.mc-services-section {
  background: var(--light);
  padding: 96px 0;
}

.mc-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mc-service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
}

.mc-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.mc-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(198,40,40,0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.mc-service-card h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.mc-service-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Warning */

.mc-warning-section {
  background: var(--red);
  color: #ffffff;
  padding: 96px 0;
}

.mc-warning-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.mc-warning-content .mc-label {
  color: #FFD764;
}

.mc-warning-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.mc-warning-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.mc-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mc-check-list li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 14px 16px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 800;
}

.mc-check-list li::before {
  content: "✓";
  color: #FFD764;
  margin-right: 8px;
}

.mc-warning-image img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 22px 40px rgba(0,0,0,0.22);
  clip-path: polygon(12% 0, 100% 0, 100% 82%, 88% 100%, 0 100%, 0 18%);
}


/* Repair Cards */

.mc-repair-section {
  background: #ffffff;
  padding: 96px 0;
}

.mc-repair-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mc-repair-card {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  min-height: 240px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  border-top: 5px solid var(--red);
}

.mc-repair-card:hover {
  background: var(--red);
  transform: translateY(-6px);
}

.mc-repair-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.mc-repair-card p {
  color: #EAF1FA;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Commercial */

.mc-commercial-section {
  background: var(--light);
  padding: 96px 0;
}

.mc-commercial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.mc-commercial-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.mc-commercial-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mc-commercial-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.mc-commercial-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.mc-commercial-list div {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.mc-commercial-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Process */

.mc-process-section {
  background: #ffffff;
  padding: 96px 0;
}

.mc-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.mc-process-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
}

.mc-process-card span {
  display: block;
  color: rgba(10,46,92,0.28);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.mc-process-card h3 {
  color: var(--primary);
  font-size: 21px;
  margin-bottom: 10px;
}

.mc-process-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}


/* Service Area + Form */

.mc-service-area-section {
  background: var(--light);
  padding: 96px 0;
}

.mc-service-area-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.mc-service-area-card,
.mc-area-form-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.mc-service-area-card h2 {
  color: var(--primary-dark);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.mc-service-area-card p,
.mc-area-form-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.mc-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.mc-area-list span {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.mc-area-form-card h3 {
  color: var(--primary);
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.mc-area-form-card .ff-el-group {
  margin-bottom: 12px;
}

.mc-area-form-card input,
.mc-area-form-card select,
.mc-area-form-card textarea {
  border-radius: 12px !important;
}

.mc-area-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.mc-area-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Responsive */

@media (max-width: 1100px) {
  .mc-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mc-repair-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .mc-hero-grid,
  .mc-system-grid,
  .mc-warning-grid,
  .mc-commercial-grid,
  .mc-service-area-grid {
    grid-template-columns: 1fr;
  }

  .mc-service-grid,
  .mc-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mc-system-image img,
  .mc-warning-image img,
  .mc-commercial-image img {
    height: 340px;
  }

  .mc-hero-form,
  .mc-service-area-card,
  .mc-area-form-card {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .mc-hero,
  .mc-system-section,
  .mc-services-section,
  .mc-warning-section,
  .mc-repair-section,
  .mc-commercial-section,
  .mc-process-section,
  .mc-service-area-section {
    padding: 64px 0;
  }

  .mc-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .mc-hero-content p,
  .mc-system-content p,
  .mc-warning-content p,
  .mc-commercial-content p {
    font-size: 17px;
  }

  .mc-hero-actions .btn {
    width: 100%;
  }

  .mc-trust-row,
  .mc-system-list,
  .mc-service-grid,
  .mc-check-list,
  .mc-repair-grid,
  .mc-commercial-list,
  .mc-process-grid,
  .mc-area-list {
    grid-template-columns: 1fr;
  }

  .mc-system-image img,
  .mc-warning-image img,
  .mc-commercial-image img {
    height: 260px;
  }

  .mc-hero-form,
  .mc-service-area-card,
  .mc-area-form-card {
    padding: 26px;
    border-radius: 22px;
  }
}

/* ===============================
   SIDING PAGE
   Professional Roofers
================================ */

.sid-page {
  background: #ffffff;
}

.sid-label {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 13px;
  margin-bottom: 12px;
}

.sid-section-head {
  max-width: 880px;
  margin: 0 auto 46px;
  text-align: center;
}

.sid-section-head h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sid-section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}


/* Hero */

.sid-hero {
  background:
    linear-gradient(90deg, rgba(6,27,54,0.96), rgba(10,46,92,0.72)),
    url('https://professionalroofersnearme.co/wp-content/uploads/2026/07/siding-inspection.png') center/cover;
  color: #ffffff;
  padding: 96px 0;
}

.sid-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  gap: 54px;
  align-items: center;
}

.sid-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
}

.sid-rating-pill span {
  color: #FFD764;
  letter-spacing: 1px;
  font-size: 14px;
}

.sid-rating-pill strong {
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.sid-hero-content h1 {
  color: #ffffff;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.sid-hero-content p {
  color: #F2F6FB;
  font-size: 19px;
  line-height: 1.7;
  font-weight: 600;
  max-width: 780px;
  margin: 0 0 30px;
}

.sid-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.sid-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
}

.sid-trust-row div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 14px;
  color: #ffffff;
  font-weight: 900;
}

.sid-hero-form {
  background: #ffffff;
  color: var(--text);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 24px 55px rgba(0,0,0,0.24);
}

.sid-hero-form h3 {
  color: var(--primary);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.sid-hero-form > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 22px;
}

.sid-hero-form .ff-el-group {
  margin-bottom: 12px;
}

.sid-hero-form input,
.sid-hero-form select,
.sid-hero-form textarea {
  border-radius: 12px !important;
}

.sid-hero-form .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.sid-hero-form .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* System */

.sid-system-section {
  background: #ffffff;
  padding: 96px 0;
}

.sid-system-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.sid-system-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
  clip-path: polygon(10% 0, 100% 0, 100% 84%, 88% 100%, 0 100%, 0 16%);
}

.sid-system-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sid-system-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.sid-system-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.sid-system-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.sid-system-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Services */

.sid-services-section {
  background: var(--light);
  padding: 96px 0;
}

.sid-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sid-service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
  transition: 0.25s ease;
}

.sid-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--red);
}

.sid-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(198,40,40,0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.sid-service-card h3 {
  color: var(--primary);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sid-service-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Warning */

.sid-warning-section {
  background: var(--red);
  color: #ffffff;
  padding: 96px 0;
}

.sid-warning-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 54px;
  align-items: center;
}

.sid-warning-content .sid-label {
  color: #FFD764;
}

.sid-warning-content h2 {
  color: #ffffff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.03;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.sid-warning-content p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.sid-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sid-check-list li {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  padding: 14px 16px;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 800;
}

.sid-check-list li::before {
  content: "✓";
  color: #FFD764;
  margin-right: 8px;
}

.sid-warning-image img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 22px 40px rgba(0,0,0,0.22);
  clip-path: polygon(12% 0, 100% 0, 100% 82%, 88% 100%, 0 100%, 0 18%);
}


/* Weather Barrier */

.sid-barrier-section {
  background: #ffffff;
  padding: 96px 0;
}

.sid-barrier-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.sid-barrier-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.sid-barrier-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sid-barrier-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.sid-barrier-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.sid-barrier-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.sid-barrier-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Repair Cards */

.sid-repair-section {
  background: var(--light);
  padding: 96px 0;
}

.sid-repair-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sid-repair-card {
  background: var(--primary-dark);
  color: #ffffff;
  border-radius: 22px;
  padding: 28px;
  min-height: 240px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  border-top: 5px solid var(--red);
}

.sid-repair-card:hover {
  background: var(--red);
  transform: translateY(-6px);
}

.sid-repair-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.sid-repair-card p {
  color: #EAF1FA;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}


/* Commercial */

.sid-commercial-section {
  background: #ffffff;
  padding: 96px 0;
}

.sid-commercial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}

.sid-commercial-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.sid-commercial-content h2 {
  color: var(--primary-dark);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sid-commercial-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.sid-commercial-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.sid-commercial-list div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.sid-commercial-list div::before {
  content: "✓";
  color: var(--red);
  margin-right: 8px;
}


/* Process */

.sid-process-section {
  background: var(--light);
  padding: 96px 0;
}

.sid-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.sid-process-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(10,46,92,0.07);
}

.sid-process-card span {
  display: block;
  color: rgba(10,46,92,0.28);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}

.sid-process-card h3 {
  color: var(--primary);
  font-size: 21px;
  margin-bottom: 10px;
}

.sid-process-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}


/* Service Area + Form */

.sid-service-area-section {
  background: #ffffff;
  padding: 96px 0;
}

.sid-service-area-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: stretch;
}

.sid-service-area-card,
.sid-area-form-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.sid-service-area-card h2 {
  color: var(--primary-dark);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sid-service-area-card p,
.sid-area-form-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.sid-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.sid-area-list span {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 15px;
  color: var(--primary-dark);
  font-weight: 900;
}

.sid-area-form-card h3 {
  color: var(--primary);
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 12px;
}

.sid-area-form-card .ff-el-group {
  margin-bottom: 12px;
}

.sid-area-form-card input,
.sid-area-form-card select,
.sid-area-form-card textarea {
  border-radius: 12px !important;
}

.sid-area-form-card .ff-btn-submit {
  width: 100%;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: #ffffff !important;
  font-weight: 900 !important;
  padding: 14px 22px !important;
  border: 0 !important;
}

.sid-area-form-card .ff-btn-submit:hover {
  background: var(--red-dark) !important;
}


/* Responsive */

@media (max-width: 1100px) {
  .sid-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sid-repair-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .sid-hero-grid,
  .sid-system-grid,
  .sid-warning-grid,
  .sid-barrier-grid,
  .sid-commercial-grid,
  .sid-service-area-grid {
    grid-template-columns: 1fr;
  }

  .sid-service-grid,
  .sid-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sid-system-image img,
  .sid-warning-image img,
  .sid-barrier-image img,
  .sid-commercial-image img {
    height: 340px;
  }

  .sid-hero-form,
  .sid-service-area-card,
  .sid-area-form-card {
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .sid-hero,
  .sid-system-section,
  .sid-services-section,
  .sid-warning-section,
  .sid-barrier-section,
  .sid-repair-section,
  .sid-commercial-section,
  .sid-process-section,
  .sid-service-area-section {
    padding: 64px 0;
  }

  .sid-hero-content h1 {
    font-size: 42px;
    letter-spacing: -1.2px;
  }

  .sid-hero-content p,
  .sid-system-content p,
  .sid-warning-content p,
  .sid-barrier-content p,
  .sid-commercial-content p {
    font-size: 17px;
  }

  .sid-hero-actions .btn {
    width: 100%;
  }

  .sid-trust-row,
  .sid-system-list,
  .sid-service-grid,
  .sid-check-list,
  .sid-barrier-list,
  .sid-repair-grid,
  .sid-commercial-list,
  .sid-process-grid,
  .sid-area-list {
    grid-template-columns: 1fr;
  }

  .sid-system-image img,
  .sid-warning-image img,
  .sid-barrier-image img,
  .sid-commercial-image img {
    height: 260px;
  }

  .sid-hero-form,
  .sid-service-area-card,
  .sid-area-form-card {
    padding: 26px;
    border-radius: 22px;
  }
}


/* Bigger header logo - stronger override */
header .container.nav {
  min-height: 94px;
  align-items: center;
}

header .logo {
  width: 220px;
  max-width: 220px;
  flex: 0 0 220px;
  display: flex;
  align-items: center;
}

header .logo img {
  width: 300px !important;
  max-width: 300px !important;
  max-height: 134px !important;
  height: auto !important;
  object-fit: contain;
  display: block;
}

/* Keep menu spacing clean */
header .menu {
  align-items: center;
}

/* Tablet */
@media (max-width: 980px) {
  header .container.nav {
    min-height: 84px;
  }

  header .logo {
    width: 180px;
    max-width: 180px;
    flex: 0 0 180px;
  }

  header .logo img {
    width: 180px !important;
    max-width: 180px !important;
    max-height: 70px !important;
  }
}

/* Mobile */
@media (max-width: 600px) {
  header .container.nav {
    min-height: 76px;
  }

  header .logo {
    width: 150px;
    max-width: 150px;
    flex: 0 0 150px;
  }

  header .logo img {
    width: 150px !important;
    max-width: 150px !important;
    max-height: 62px !important;
  }
}


/* ===============================
   SERVICES CAROUSEL ARROWS + MANUAL NAV
================================ */

.services-carousel-wrap {
  position: relative;
  width: 100%;
  padding: 0 58px;
}

.services-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 4px 26px;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

.services-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: none;
  transform: none;
  will-change: scroll-position;
}

.services-track .service-card {
  flex: 0 0 335px;
  max-width: 335px;
}

/* Arrows */
.services-arrow {
  position: absolute;
  top: 48%;
  z-index: 20;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.85);
  border-radius: 999px;
  background: var(--primary-dark);
  color: #ffffff;
  font-size: 0;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(6, 27, 54, 0.24);
  transform: translateY(-50%);
  transition: 0.25s ease;
}

.services-arrow::before {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  margin-top: -2px;
}

.services-prev::before {
  content: "‹";
}

.services-next::before {
  content: "›";
}

.services-arrow:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.06);
}

.services-prev {
  left: 4px;
}

.services-next {
  right: 4px;
}

/* Do not force manual mode to stop auto-scroll */
.services-carousel.is-paused {
  scroll-snap-type: none;
}

@media (max-width: 980px) {
  .services-carousel-wrap {
    padding: 0 48px;
  }

  .services-track .service-card {
    flex-basis: 310px;
    max-width: 310px;
  }

  .services-arrow {
    width: 40px;
    height: 40px;
  }

  .services-arrow::before {
    font-size: 22px;
  }
}

@media (max-width: 600px) {
  .services-carousel-wrap {
    padding: 0;
  }

  .services-carousel {
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 58px;
  }

  .services-track {
    gap: 18px;
  }

  .services-track .service-card {
    flex-basis: 285px;
    max-width: 285px;
  }

  .services-arrow {
    top: auto;
    bottom: 4px;
    width: 38px;
    height: 38px;
    transform: none;
  }

  .services-arrow:hover {
    transform: scale(1.06);
  }

  .services-prev {
    left: calc(50% - 48px);
  }

  .services-next {
    right: calc(50% - 48px);
  }
}


/* =========================================================
   PROPERTY OWNERS - WHY CHOOSE US SECTION
   ========================================================= */

.pr-owner-choice-section {
  width: 100%;
  background: #061f3b;
  padding: 90px 24px;
}

.pr-owner-choice-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.pr-owner-choice-card {
  background: #f7f7f7;
  border-radius: 28px;
  padding: 58px 64px 54px;
  box-sizing: border-box;
}


/* HEADER
========================================================= */

.pr-owner-choice-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.pr-owner-choice-eyebrow {
  display: block;
  margin-bottom: 16px;

  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #e2231a;
}

.pr-owner-choice-title {
  margin: 0;

  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -2px;
  color: #080808;
}

.pr-owner-choice-line {
  width: 78px;
  height: 4px;
  background: #111;
  margin: 28px auto 22px;
}

.pr-owner-choice-intro {
  max-width: 590px;
  margin: 0 auto;

  font-size: 19px;
  line-height: 1.55;
  color: #111;
}


/* DIVIDER
========================================================= */

.pr-owner-choice-divider {
  width: 100%;
  height: 1px;
  background: #d1d1d1;
  margin: 38px 0 8px;
}


/* FEATURES
========================================================= */

.pr-owner-choice-list {
  width: 100%;
}

.pr-owner-choice-item {
  display: grid;
  grid-template-columns: 56px 220px 1fr;
  align-items: center;
  gap: 22px;

  padding: 28px 0;
}

.pr-owner-choice-item + .pr-owner-choice-item {
  border-top: 1px solid #dddddd;
}


/* ICON */

.pr-owner-choice-icon {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #dce4ed;

  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.08);

  color: #06396d;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}


/* FEATURE TITLE */

.pr-owner-choice-item-title {
  margin: 0;

  font-size: 18px;
  line-height: 1.05;
  font-weight: 900;
  color: #050505;
}


/* FEATURE DESCRIPTION */

.pr-owner-choice-item-text {
  margin: 0;

  font-size: 16px;
  line-height: 1.55;
  color: #111;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 768px) {

  .pr-owner-choice-section {
    padding: 60px 20px;
  }

  .pr-owner-choice-card {
    padding: 45px 35px;
    border-radius: 22px;
  }

  .pr-owner-choice-title {
    font-size: 44px;
  }

  .pr-owner-choice-intro {
    font-size: 17px;
  }

  .pr-owner-choice-item {
    grid-template-columns: 52px 180px 1fr;
    gap: 16px;
  }

  .pr-owner-choice-item-title {
    font-size: 16px;
  }

  .pr-owner-choice-item-text {
    font-size: 15px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .pr-owner-choice-section {
    padding: 45px 16px;
  }

  .pr-owner-choice-card {
    padding: 38px 24px;
    border-radius: 18px;
  }

  .pr-owner-choice-eyebrow {
    font-size: 12px;
  }

  .pr-owner-choice-title {
    font-size: 37px;
    line-height: 1;
    letter-spacing: -1px;
  }

  .pr-owner-choice-line {
    margin-top: 23px;
    margin-bottom: 20px;
  }

  .pr-owner-choice-intro {
    font-size: 16px;
    line-height: 1.5;
  }

  .pr-owner-choice-divider {
    margin-top: 30px;
  }

  .pr-owner-choice-item {
    grid-template-columns: 48px 1fr;
    gap: 12px 16px;

    padding: 26px 0;
  }

  .pr-owner-choice-icon {
    width: 46px;
    height: 46px;
    grid-row: 1;
  }

  .pr-owner-choice-item-title {
    grid-column: 2;
    font-size: 17px;
  }

  .pr-owner-choice-item-text {
    grid-column: 1 / -1;

    padding-left: 64px;

    font-size: 15px;
    line-height: 1.55;
  }
}

/* =========================================================
   PROFESSIONAL ROOFERS
   SERVICE AREA + MAP SPLIT SECTION
   ========================================================= */

.pr-sa-split-section {
  width: 100%;
  padding: 85px 24px;
  background: #f4f7fb;
  box-sizing: border-box;
}


/* MAIN 2-COLUMN CONTAINER */

.pr-sa-split-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 0.9fr 1.25fr;
  gap: 28px;

  align-items: stretch;
}


/* =========================================================
   LEFT SERVICE AREA CARD
   ========================================================= */

.pr-sa-split-content {
  background: #ffffff;

  border: 1px solid #dce4ee;
  border-radius: 26px;

  padding: 50px 46px;

  box-shadow:
    0 18px 45px rgba(6, 31, 59, 0.09);

  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* EYEBROW */

.pr-sa-split-eyebrow {
  display: block;

  margin-bottom: 13px;

  color: #df2018;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 1.4px;

  text-transform: uppercase;
}


/* TITLE */

.pr-sa-split-title {
  margin: 0 0 18px;

  color: #061f3b;

  font-size: clamp(38px, 4vw, 52px);
  font-weight: 500;

  line-height: 1.05;

  letter-spacing: -1.3px;
}


/* DESCRIPTION */

.pr-sa-split-description {
  margin: 0 0 32px;

  max-width: 510px;

  color: #536171;

  font-size: 16px;
  line-height: 1.65;
}


/* =========================================================
   LOCATION GRID
   ========================================================= */

.pr-sa-split-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 11px;
}


.pr-sa-split-location {
  min-height: 54px;

  padding: 12px 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f7f9fc;

  border: 1px solid #d5dfeb;
  border-radius: 11px;

  color: #061f3b;

  font-size: 15px;
  font-weight: 800;

  text-align: center;

  box-sizing: border-box;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}


.pr-sa-split-location:hover {
  transform: translateY(-2px);

  border-color: #b8c8da;

  box-shadow:
    0 7px 16px rgba(6, 31, 59, 0.07);
}


/* =========================================================
   RIGHT MAP COLUMN
   ========================================================= */

.pr-sa-split-map {
  width: 100%;

  min-height: 500px;

  overflow: hidden;

  border: 1px solid #dce4ee;
  border-radius: 26px;

  background: #ffffff;

  box-shadow:
    0 18px 45px rgba(6, 31, 59, 0.09);
}


.pr-sa-split-map iframe {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 500px;

  border: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 950px) {

  .pr-sa-split-container {
    grid-template-columns: 1fr;
    max-width: 800px;
  }

  .pr-sa-split-content {
    padding: 48px 42px;
  }

  .pr-sa-split-map,
  .pr-sa-split-map iframe {
    min-height: 480px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .pr-sa-split-section {
    padding: 45px 16px;
  }


  .pr-sa-split-container {
    gap: 20px;
  }


  .pr-sa-split-content {
    padding: 36px 22px;

    border-radius: 18px;
  }


  .pr-sa-split-eyebrow {
    font-size: 12px;
  }


  .pr-sa-split-title {
    font-size: 37px;

    letter-spacing: -0.7px;
  }


  .pr-sa-split-description {
    margin-bottom: 26px;

    font-size: 15px;
    line-height: 1.6;
  }


  .pr-sa-split-grid {
    grid-template-columns: 1fr 1fr;

    gap: 9px;
  }


  .pr-sa-split-location {
    min-height: 50px;

    padding: 10px 7px;

    font-size: 13px;
  }


  .pr-sa-split-map {
    min-height: 400px;

    border-radius: 18px;
  }


  .pr-sa-split-map iframe {
    min-height: 400px;
  }

}


/* VERY SMALL MOBILE */

@media (max-width: 390px) {

  .pr-sa-split-grid {
    grid-template-columns: 1fr;
  }

}/* End custom CSS */