* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: white;
  color: #111;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  background: white;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 100px;
}

.nav-links a {
  margin: 0 14px;
  text-decoration: none;
  color: #444;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #1a1aff;
}

/* BUTTONS */
.btn-primary {
  background: #1a1aff;
  color: white;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 2px solid #1a1aff;
  color: #1a1aff;
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  margin-left: 12px;
}

.btn-primary,
.btn-outline {
  transition: all 0.2s ease-in-out;
}

.btn-primary:hover,
.btn-outline:hover {
  background: #ff00aa;
  border-color: #ff00aa;
  color: white;
  transform: scale(1.05);
}

/* STICKY CALL BUTTON */
.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1a1aff;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.2s ease;
}

.sticky-call:hover {
  background: #ff00aa;
  transform: scale(1.1);
}


/* HERO SECTION */
.hero {
  height: 85vh;
  background: url("/images/roofing_hero_image.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2));
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.hero-content {
  color: white;
  max-width: 650px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
}

.hero-content p {
  font-size: 20px;
  margin: 20px 0 30px;
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-btn {
  padding: 15px 28px;
  font-weight: 800;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-btn.primary {
  background: #1a1aff;
  color: white;
}

.hero-btn.secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.hero-btn:hover {
  transform: scale(1.05);
}

.hero-btn.primary:hover {
  background: #ff00aa;
}

/* STATS BAR */
.stats {
  background: #111;
  color: white;
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  text-align: center;
}

.stat h2 {
  font-size: 42px;
  color: white;
}

.stat p {
  font-size: 14px;
  color: #bbb;
  margin-top: 8px;
}

/* WHO WE ARE SECTION */
.about-section {
  padding: 80px 60px;
  background: #ffffff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.about-text h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111;
}

.about-text p {
  font-size: 17px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.6;
}

/* Waterfall overlap effect */
.about-image {
  position: relative;
  z-index: 2;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

/* SERVICES SECTION */
.services-section {
  margin-top: -60px;
  padding-top: 120px;
  background: #ffffff;
  text-align: center;
}

.services-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #f8f9fb;
  padding: 35px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #1a1aff;
}

.service-card p {
  color: #555;
  font-size: 15px;
}

/* SERVICES SECTION HEADER */
.services-header {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-subtitle {
  color: #1a1aff;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-align: center;
}

.services-desc {
  max-width: 600px;
  color: #555;
  margin: 10px auto 0;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.service-card-img {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.service-card-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover animation */
.service-card-img:hover img {
  transform: scale(1.05);
}

.service-card-img:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Text content */
.service-content {
  padding: 25px 28px;
}

.service-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  font-weight: 700;
}

.service-content h3 {
  font-size: 26px;
  margin: 8px 0;
}

.service-content p {
  color: #555;
  font-size: 15px;
  margin-bottom: 20px;
}

/* Button */
.service-btn {
  background: #1a1aff;
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
}

.service-btn:hover {
  background: #ff00aa;
  transform: scale(1.05);
}

/* FINANCING SECTION */
.finance-badges {
  padding: 70px 60px;
  margin-top: 30px;
  background: linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.2)), 
              url('/images/finance_hero.jpg') no-repeat center center;
    background-size: cover;
}



.finance-badge-container {
  max-width: max-content;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  
}

.finance-badge-text h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 10px;
  color: white;
}

.finance-badge-text p {
  font-size: 16px;
  color: white;
  margin-bottom: 20px;
}

.finance-calc-btn {
  display: inline-block;
  background: #1a1aff;
  color: white;
  padding: 14px 26px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.finance-calc-btn:hover {
  background: #ff00aa;
  transform: scale(1.05);
}

.finance-logos {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.finance-logos img {
  height: 70px;
  filter: grayscale(100%);
  opacity: 1;
  transition: all 0.2s ease;
}

.finance-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* REVIEWS */
.reviews-section {
  padding: 80px 60px;
  background: #111;
  color: white;
  text-align: center;
}

.reviews-section h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.review-slider {
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.review-card {
  display: none;
  font-size: 18px;
  line-height: 1.6;
}

.review-card span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  text-decoration: none;
  color: white;
}

.google-review-link {
  display: inline-block;
  margin-bottom: 30px;
  background: white;
  color: #111;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.google-review-link:hover {
  background: #ff00aa;
  color: white;
  transform: scale(1.05);
}

.site-footer {
  background: #111;
  color: white;
  padding: 70px 60px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  height: 80px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ff00aa;
}

.footer-finance-btn {
  display: inline-block;
  margin-top: 10px;
  background: #1a1aff;
  padding: 10px 18px;
  border-radius: 4px;
  color: white !important;
  font-weight: 700;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  margin-top: 50px;
  padding-top: 15px;
  font-size: 13px;
  color: #777;
}

/* HAMBURGER ICON */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  font-weight: 900;
}

/* INTRO */
.about-intro {
  padding: 140px 20px 80px;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.about-intro-container {
  max-width: 900px;
  margin: auto;
}

.about-intro h1 {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.about-intro h1 span {
  color: #2563eb;
}

.about-intro p {
  font-size: 20px;
  color: #475569;
  max-width: 750px;
  line-height: 1.7;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: #2563eb;
  margin-top: 30px;
  border-radius: 10px;
}

/* MAIN GRID */
.about-main {
  padding: 100px 20px;
}

.about-main-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-main-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
  position: relative;
}

.about-main-text h2::after {
  content: "";
  width: 250px;
  height: 4px;
  background: #2563eb;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.about-main-text p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  margin-top: 25px;
}

.about-main-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

/* STATS */
.about-stats {
  background: linear-gradient(135deg, #111827, #000000);
  padding: 100px 20px;
}

.about-stats-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.about-stat {
  flex: 1;
}

.about-stat h3 {
  font-size: 56px;
  font-weight: 900;
  text-shadow: 0 0 25px rgba(37,99,235,0.4);
  color: #ffffff;
}

.about-stat p {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9ca3af;
}

/* VALUES */
.about-values {
  background: #f8f9fb;
  padding: 80px 60px;
}

.about-values-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-value-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.about-value-card h3 {
  color: #1a1aff;
  margin-bottom: 10px;
}

/* CTA STRIP */
.about-strip-cta {
  background: #1a1aff;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.about-strip-content h2 {
  font-size: 36px;
  margin-bottom: 35px;
}

.about-strip-btn {
  background: white;
  color: #1a1aff;
  padding: 14px 26px;
  font-weight: 800;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.about-strip-btn:hover {
  background: #ff00aa;
  color: white;
  transform: scale(1.05);
}

/* INTRO */
.services-intro {
  padding: 100px 60px 40px;
}

.services-intro-container {
  max-width: 900px;
  margin: auto;
}

.services-intro h1 {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 10px;
}

.services-intro p {
  font-size: 20px;
  color: #555;
}

/* SERVICE BLOCKS */
.service-block {
  padding: 80px 60px;
}

.service-block.alt {
  background: #f8f9fb;
}

.service-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.service-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-text ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.service-text li {
  margin-bottom: 6px;
}

.service-btn {
  display: inline-block;
  background: #1a1aff;
  color: white;
  padding: 12px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s ease;
}

.service-btn:hover {
  background: #ff00aa;
  transform: scale(1.05);
}

/* PROCESS */
.services-process {
  background: #111;
  color: white;
  padding: 80px 40px;
  text-align: center;
}

.services-process h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.process-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-step h3 {
  margin-bottom: 10px;
  color: white;
}

.process-step p {
  color: #bbb;
  font-size: 14px;
}

/* CTA */
.services-cta {
  background: #1a1aff;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.services-cta h2 {
  font-size: 36px;
  margin-bottom: 35px;
}

.services-cta-btn {
  background: white;
  color: #1a1aff;
  padding: 14px 26px;
  border-radius: 5px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.services-cta-btn:hover {
  background: #ff00aa;
  color: white;
  transform: scale(1.05);
}

/* Page Header */

.page-header {
  padding: 140px 24px 100px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #db2777;
  border-radius: 50%;
  top: -150px;
  right: -150px;
  opacity: 0.06;
  filter: blur(120px);
}

.page-header-inner {
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.page-badge {
  display: inline-block;
  background: #eef2ff;
  color: #2563eb;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.page-header h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.page-header p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
}

/* OVERVIEW SECTION */
.areas-overview {
  padding: 120px 24px;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.overview-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: #eef2ff;
  color: #2563eb;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 20px;
}

.overview-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
}

.overview-text p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}

.overview-image {
  position: relative;
}

.overview-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.overview-image img:hover {
  transform: scale(1.03);
}

.image-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #db2777;
  border-radius: 24px;
  top: 25px;
  left: 25px;
  z-index: 1;
  opacity: 0.15;
}


/* CITIES SECTION */
.cities-section {
  padding: 100px 24px;
  background: #f8fafc;
  text-align: center;
}

.cities-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cities-section p {
  max-width: 600px;
  margin: 0 auto 50px;
  color: #6b7280;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1000px;
  margin: auto;
  gap: 20px;
}

.city-card {
  background: white;
  padding: 26px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  cursor: default;
}

.city-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: #db2777; /* magenta accent */
}

/* MAP SECTION */
.map-section {
  padding: 100px 24px;
  text-align: center;
  background-color: white;
}

.map-container {
  max-width: 1000px;
  margin: auto;
  padding-top: 30px;
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* CTA SECTION */
.areas-cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-content {
  max-width: 700px;
  margin: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.areas-cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.areas-cta p {
  color: #6b7280;
  margin-bottom: 30px;
}

.contact-section {
  padding: 120px 24px;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  text-align: center;
}

.contact-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contact-intro {
  margin-bottom: 60px;
}

.contact-intro h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 20px;
}

.contact-intro p {
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.contact-details p {
  margin-bottom: 6px;
  font-weight: 500;
}

/* Form Card */

.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
}

#hearth-lead-capture-widget {
  width: 100%;
  min-height: 650px;
  border: none;
  border-radius: 16px;
}


/* MOBILE */
@media (max-width: 900px) {
  .hero {
    height: 70vh;
  }

  .hero-overlay {
    padding: 0 25px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .about-image img {
    transform: translateY(0);
  }

  .services-section {
    margin-top: 0;
    padding-top: 80px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .about-main-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-intro h1 {
    font-size: 36px;
  }

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

  .services-intro h1 {
    font-size: 36px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .contact-left h1 {
    font-size: 34px;
  }
}

