/* ===== CSS VARIABLES ===== */
:root {
  --red: #c0392b;
  --blue: #135bcd;
  --red-dark: #96281b;
  --red-light: #e74c3c;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --gray: #555;
  --gray-light: #888;
  --silver: #f4f4f4;
  --white: #ffffff;
  --accent: #c0392b;
  --text: #222;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.18);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-location {
  color: #aaa;
}
.topbar-phone {
  color: var(--red-light);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.topbar-phone:hover {
  color: var(--white);
}

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
}
.logo-icon {
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1;
}
.logo:hover .logo-icon {
  color: var(--red-dark);
}

/* ===== NAV ===== */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark2);
  padding: 8px 14px;
  border-radius: 4px;
  transition:
    color var(--transition),
    background var(--transition);
  position: relative;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--red);
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 4px !important;
  padding: 10px 18px !important;
}
.nav-cta::after {
  display: none !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--red);
  min-width: 180px;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  flex-direction: column;
  gap: 0;
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}
.has-dropdown:hover .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.dropdown li a {
  display: block;
  padding: 12px 20px !important;
  border-radius: 0 !important;
  font-size: 0.88rem !important;
  border-bottom: 1px solid #f0f0f0;
}
.dropdown li a::after {
  display: none !important;
}
.dropdown li a:hover {
  background: var(--silver);
  color: var(--red) !important;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--red);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark2);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(192, 57, 43, 0.6) 100%),
    url("https://static.wixstatic.com/media/7092fc_acba05fb12cf4e5a83fcc5f202e5c105~mv2.jpg/v1/fill/w_1440,h_900,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/quality-roofing-service.jpg") center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255, 255, 255, 0.015) 2px, rgba(255, 255, 255, 0.015) 4px);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--red-light);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red-light);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero h1 span {
  color: var(--red-light);
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badge {
  position: absolute;
  right: 80px;
  bottom: -30px;
  z-index: 3;
  background: var(--red);
  color: var(--white);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 32px rgba(192, 57, 43, 0.5);
  border: 4px solid var(--white);
}
.hero-badge strong {
  font-size: 1.6rem;
  display: block;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue) 60%, var(--red-dark) 100%);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-top: 16px;
  position: relative;
}
.breadcrumb {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}
.breadcrumb a {
  color: var(--red-light);
}
.breadcrumb a:hover {
  color: var(--white);
}

/* ===== SECTION STYLES ===== */
section {
  padding: 80px 0;
}
.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-title-light {
  color: var(--white);
}
.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== PARTNER LOGOS ===== */
.partners-strip {
  background: var(--silver);
  padding: 32px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.partners-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.partners-inner img {
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all var(--transition);
}
.partners-inner img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  background: var(--white);
}
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-right: 1px solid #e8e8e8;
  transition: transform var(--transition);
}
.service-card:last-child {
  border-right: none;
}
.service-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img {
  transform: scale(1.05);
}
.service-card-body {
  padding: 28px 28px 32px;
}
.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--white);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card a.link-arrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.service-card a.link-arrow:hover {
  gap: 14px;
}
.service-card a.link-arrow::after {
  content: "→";
}

/* ===== STATS ===== */
.stats-section {
  background: var(--dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255, 255, 255, 0.02) 79px, rgba(255, 255, 255, 0.02) 80px);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--red-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--silver);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 3px solid var(--red);
  border-radius: 6px;
  z-index: 0;
}
.about-image-wrap img {
  position: relative;
  z-index: 1;
}

/* ===== CERTIFICATIONS ===== */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.cert-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.cert-card img {
  height: 70px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}
.cert-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--dark);
}
.cert-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== SERVICES LIST (full page) ===== */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.service-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-section.reverse {
  direction: rtl;
}
.service-section.reverse > * {
  direction: ltr;
}
.service-section img {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 380px;
}
.service-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.service-item {
  background: var(--silver);
  border-radius: 6px;
  padding: 24px 20px;
  border-left: 3px solid var(--red);
  transition: background var(--transition);
}
.service-item:hover {
  background: #ebebeb;
}
.service-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--dark);
}
.service-item p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== INSURANCE PAGE ===== */
.insurance-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.step-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
}
.step-number {
  width: 64px;
  height: 64px;
  background: var(--red);
  border-radius: 50%;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.step-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.area-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 20px 20px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
}
.area-card:hover {
  border-color: var(--red);
  background: #fff5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.12);
}
.area-card .area-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.area-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
}

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.project-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  background: var(--dark);
}
.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    opacity 0.3s;
}
.project-card:hover img {
  transform: scale(1.05);
  opacity: 0.7;
}
.project-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 26, 26, 0.92));
  padding: 32px 24px 24px;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition);
}
.project-card:hover .project-card-overlay {
  transform: translateY(0);
  opacity: 1;
}
.project-card-overlay h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.project-card-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}
.project-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 4px;
}
.contact-detail-text p,
.contact-detail-text a {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.5;
}
.contact-detail-text a:hover {
  color: var(--red);
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: var(--dark);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.form-group select {
  appearance: none;
  cursor: pointer;
}
.success-banner {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://static.wixstatic.com/media/7092fc_228a9611d5ea457ca36da1256dce43c8~mv2.jpg/v1/fill/w_1440,h_600,al_c,q_85,enc_avif,quality_auto/services-bg.jpg") center/cover no-repeat;
  opacity: 0.15;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 28px;
}
.cta-eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--red-light);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red-light);
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.cta-financing {
  text-align: center;
}
.cta-financing img {
  margin: 0 auto 24px;
  max-width: 220px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--silver);
  padding: 80px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--red);
  opacity: 0.2;
  line-height: 1;
}
.stars {
  color: #f39c12;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card strong {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--red-light);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.9rem;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--white);
  transition: background var(--transition);
}
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== SPLIT SECTION ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split-panel {
  padding: 80px 60px;
}
.split-panel-dark {
  background: var(--dark);
  color: var(--white);
}
.split-panel-dark .section-title {
  color: var(--white);
}
.split-panel-dark p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}
.split-panel-img {
  padding: 0;
  overflow: hidden;
}
.split-panel-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
}

/* ===== INFO BOXES ===== */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.info-box {
  background: var(--silver);
  border-radius: 6px;
  padding: 28px 24px;
  border-left: 4px solid var(--red);
}
.info-box h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 10px;
}
.info-box p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image-wrap {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) {
    border-right: none;
  }
  .stat-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .service-section {
    grid-template-columns: 1fr;
  }
  .service-section.reverse {
    direction: ltr;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 16px 0;
    border-top: 2px solid var(--red);
  }
  .main-nav.open {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav a {
    display: block;
    padding: 14px 24px;
    border-radius: 0;
  }
  .main-nav a::after {
    display: none;
  }
  .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--red);
    margin-left: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition:
      opacity var(--transition),
      visibility var(--transition),
      max-height 0.3s ease;
  }
  .has-dropdown.open .dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    max-height: 200px;
  }
  .hero {
    height: auto;
    min-height: 500px;
    padding: 80px 0 60px;
  }
  .hero-badge {
    display: none;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-items {
    grid-template-columns: 1fr;
  }
  .split-panel {
    padding: 48px 24px;
  }
  .insurance-steps {
    grid-template-columns: 1fr 1fr;
  }
  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-btns {
    flex-direction: column;
  }
  .cta-buttons {
    width: 100%;
  }
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
  .insurance-steps {
    grid-template-columns: 1fr;
  }
}
