/* ══════════════════════════════════════════
   Carranza Roofing & Remodeling — style.css
   ══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #333;
  background: #fdf8f2;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS Variables ── */
:root {
  --navy:   #1e3a5f;
  --orange: #E8631A;
  --white:  #ffffff;
  --gray:   #f5f7fa;
  --hero-bg: #1e3a5f;
  --section-blue: #f5ede0;
  --trust-bg: #fdf8f2;
  --dark-footer: #1e3a5f;
  --text: #333;
  --text-muted: #6b7280;
  --shadow: 0 4px 24px rgba(30,58,95,0.10);
  --shadow-lg: 0 8px 40px rgba(30,58,95,0.15);
}

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-orange { color: var(--orange); }
.text-navy   { color: var(--navy); }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.text-block-section .section-title { margin-bottom: 20px; }
.text-block-section .rich-text { font-size: 1rem; line-height: 1.75; color: #374151; }
.text-block-section .rich-text p { margin: 0 0 14px; }
.text-block-section .rich-text p:last-child { margin-bottom: 0; }
.section-title--white { color: #fff; }

/* ── Per-section title color overrides ── */
/* Light sections: explicitly navy so each can be tuned independently */
.services .section-title       { color: var(--navy); }
.about .section-title          { color: var(--navy); }
.certifications .section-title { color: var(--navy); }
/* Dark navy sections: white title */
.why-choose .section-title     { color: #ffffff; }
.service-areas .section-title  { color: #ffffff; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--orange { background: var(--orange); color: #fff; box-shadow: 0 4px 18px rgba(232,99,26,0.3); }
.btn--navy   { background: var(--navy);   color: #fff; box-shadow: 0 4px 18px rgba(30,58,95,0.25); }
.btn--outline {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover { background: #f0f4f8; }
.btn--lg { padding: 16px 40px; font-size: 0.875rem; }

/* ── Sticky Phone Bar ── */
.phone-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: #fdf8f2;
  border-top: 1px solid #ede5d9;
  box-shadow: 0 -4px 20px rgba(30,58,95,0.10);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.phone-bar--visible {
  transform: translateY(0);
  pointer-events: auto;
}
.phone-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.phone-bar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.phone-bar__icon { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }
.phone-bar__number { font-weight: 700; font-size: 1.125rem; color: var(--navy); }
.phone-bar__label  { font-size: 0.8125rem; font-weight: 600; color: #555; }
.phone-bar__cta {
  background: var(--orange);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(232,99,26,0.3);
  transition: opacity 0.2s;
}
.phone-bar__cta:hover { opacity: 0.9; }

/* ── Floating Estimate Button ── */
.floating-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 800;
  background: var(--orange);
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(232,99,26,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
}
.floating-btn svg { width: 18px; height: 18px; }
.floating-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 10px 32px rgba(232,99,26,0.50);
}

/* ── Navigation ── */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fdf8f2;
  border-bottom: 1px solid #ede5d9;
  box-shadow: 0 2px 12px rgba(30,58,95,0.06);
  overflow: visible;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  overflow: visible;
}
.nav__logo {
  position: relative;
  z-index: 1100;
}
.nav__logo img {
  height: 120px;
  width: auto;
  transform: translateY(34px);
  filter: drop-shadow(0 8px 20px rgba(26,39,68,0.18));
  transition: transform 0.2s, filter 0.2s;
}
.nav__logo img:hover {
  transform: translateY(32px);
  filter: drop-shadow(0 12px 28px rgba(26,39,68,0.25));
}
.nav__links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav__link:hover, .nav__link--active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}
.nav__phone svg { width: 16px; height: 16px; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  background: #fdf8f2;
  border-top: 1px solid #ede5d9;
  padding: 16px 24px 20px;
}
.nav__mobile--open { display: block; }
.nav__mobile ul { margin-bottom: 16px; }
.nav__mobile ul li a {
  display: block;
  padding: 10px 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid #ede5d9;
}
.mobile-call-btn {
  display: block;
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9375rem;
}

/* ── Dropdown Nav ── */
.nav__links li { position: relative; list-style: none; }
.nav__links li.has-dropdown > .nav__link { padding-right: 4px; }
.nav__chevron { vertical-align: middle; margin-left: 3px; transition: transform .2s; }
.nav__links li.has-dropdown:hover > .nav__link .nav__chevron,
.nav__links li.has-dropdown:focus-within > .nav__link .nav__chevron { transform: rotate(180deg); }

.nav__dropdown {
  /* Use opacity/visibility (not display:none) so we can transition + bridge the hover gap */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear .15s;
  position: absolute;
  top: 100%;            /* sit flush against the parent */
  left: 0;
  margin-top: 10px;     /* preserves the visual gap between trigger and panel */
  min-width: 200px;
  background: #fdf8f2;
  border: 1px solid #ede5d9;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(30,58,95,0.12);
  padding: 6px 0;
  z-index: 500;
  list-style: none;
}

/* Invisible "bridge" that fills the visual gap so the cursor never leaves
   the hover area when traveling from the trigger down into the panel. */
.nav__dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

.nav__links li.has-dropdown:hover .nav__dropdown,
.nav__links li.has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity .15s ease, transform .15s ease, visibility 0s linear 0s;
}

.nav__dropdown li { list-style: none; }
.nav__dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy, #1A2744);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav__dropdown li a:hover {
  background: #f5ede0;
  color: var(--orange, #E8631A);
}

/* Mobile child items (shown indented in mobile menu) */
.nav__mobile-child a {
  padding-left: 24px !important;
  font-size: 0.875rem !important;
  color: var(--text-muted, #6b7280) !important;
}

/* ── Hero Section ── */
.hero {
  background: var(--hero-bg);
  min-height: 620px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Slideshow layers */
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: transform, opacity;
}
.hero__slide--active { opacity: 1; }

@keyframes kb-zoom-in {
  from { transform: scale(1.00); }
  to   { transform: scale(1.12); }
}
@keyframes kb-zoom-out {
  from { transform: scale(1.12); }
  to   { transform: scale(1.00); }
}
.hero__slide--kb-in  { animation: kb-zoom-in  7s linear forwards; }
.hero__slide--kb-out { animation: kb-zoom-out 7s linear forwards; }

/* Dark gradient overlay keeps text legible */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(30,58,95,0.88) 0%,
    rgba(30,58,95,0.72) 50%,
    rgba(30,58,95,0.38) 100%
  );
}

/* Content sits above slides + overlay */
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 110px 24px 100px;
}
.hero__text { max-width: 700px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.hero__badge svg { width: 12px; height: 12px; fill: #ffffff; }
.hero__title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.hero__title span { color: var(--orange); }
.hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}
.hero__trust-item svg { width: 14px; height: 14px; color: var(--orange); }

/* Slide-count dots indicator */
.hero__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.5);
  transition: background 0.4s, transform 0.4s;
}
.hero__dot--active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.25);
}

/* ── Stats Card ── */
.stats-card {
  max-width: 860px;
  margin: -40px auto 0;
  position: relative;
  z-index: 10;
  padding: 0 24px;
}
.stats-card__inner {
  background: #fdf8f2;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(30,58,95,0.14);
  border: 1px solid #ede5d9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}
.stats-card__item {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid #ede5d9;
}
.stats-card__item:last-child { border-right: none; }
.stats-card__value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stats-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--trust-bg);
  border-top: 1px solid #ede5d9;
  border-bottom: 1px solid #ede5d9;
  padding: 14px 0;
  margin-top: 0;
  position: relative;
  z-index: 5;
}
.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
}
.trust-bar__item svg { width: 14px; height: 14px; color: var(--orange); }
.trust-bar__dot { color: #d1d5db; font-size: 1rem; }

/* ── Services Section ── */
.services {
  background: #fdf8f2;
  padding: 96px 0;
}
.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 16px;
  flex-wrap: wrap;
}
.services__subtitle { font-size: 0.875rem; color: #9ca3af; max-width: 280px; line-height: 1.6; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid #ede5d9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  box-shadow: 0 16px 48px rgba(30,58,95,0.14);
  transform: translateY(-4px);
}

/* ── Photo area ── */
.service-card__photo {
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #ede5d9 0%, #d9cfc4 100%);
}
.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card__photo img { transform: scale(1.05); }
.service-card__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card__photo-placeholder svg { width: 52px; height: 52px; opacity: 0.28; color: var(--navy); }

/* ── White panel (overlaps photo) ── */
.service-card__panel {
  background: #fff;
  margin-top: -24px;
  border-radius: 14px 14px 0 0;
  padding: 52px 22px 22px;
  position: relative;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ── Circular icon badge at seam ── */
.service-card__icon-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  flex-shrink: 0;
}
.service-card__icon-badge svg { width: 22px; height: 22px; color: #fff; }
.service-card__icon-badge img { width: 24px; height: 24px; object-fit: contain; display: block; }

.service-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--orange);
  transition: gap 0.2s;
}
.service-card:hover .service-card__link { gap: 10px; }
.service-card__link svg { width: 16px; height: 16px; }

/* ── Why Choose Section ── */
.why-choose {
  background: var(--why-choose-bg, var(--section-blue));
  padding: 80px 0 60px;
  position: relative;
  z-index: 2;
}
.why-choose__header {
  text-align: center;
  margin-bottom: 56px;
}
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 20px;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.why-card:hover { background: rgba(255,255,255,0.13); }
.why-card__icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-card__icon svg { width: 20px; height: 20px; color: #fff; }
.why-card__text { font-size: 0.875rem; color: rgba(255,255,255,0.70); line-height: 1.6; padding-top: 4px; }

/* ── About Section ── */
.about {
  background: #fff9f4;
  padding: 96px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__img-wrap { position: relative; }
.about__img-box {
  background: #d0d0d0;
  border-radius: 16px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about__img-box img { width: 100%; height: 100%; object-fit: cover; }
.about__img-placeholder { text-align: center; color: #999; }
.about__img-placeholder svg { width: 56px; height: 56px; margin: 0 auto 8px; opacity: 0.3; }
.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  border-radius: 16px;
  width: 120px; height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(232,99,26,0.35);
}
.about__badge strong { color: #fff; font-size: 2rem; font-weight: 800; line-height: 1; }
.about__badge span   { color: rgba(255,255,255,0.8); font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.about__title { font-size: 2.25rem; font-weight: 800; color: var(--navy); margin-bottom: 24px; line-height: 1.2; }
.about__text { font-size: 0.9375rem; color: #4b5563; line-height: 1.75; margin-bottom: 16px; }
.about__text strong { color: var(--orange); font-weight: 600; }
.about__license {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #ede5d9;
  border-radius: 12px;
  padding: 16px;
  margin-top: 28px;
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}
.about__license svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }

/* ── Testimonials ── */
/* ── TESTIMONIALS — Light Warm Peach ── */
.testimonials {
  background: #f5ede0;
  padding: 80px 0;
  margin-top: 0;
  position: relative;
  z-index: 3;
  scroll-margin-top: 80px;
}
.testimonials .section-label { color: var(--orange); }
.testimonials .section-title { color: var(--navy); }
.testimonials__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}
.review-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 2px solid;
  transition: opacity 0.2s;
}
.review-btn:hover { opacity: 0.85; }
.review-btn--google { border-color: #1a73e8; color: #1a73e8; background: #e8f0fe; }
.review-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* Card base */
.testimonial-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #ede5d9;
  border-radius: 16px;
  padding: 28px 28px 24px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
  box-shadow: 0 4px 18px rgba(30,58,95,0.07);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, #f5a04a 100%);
  border-radius: 16px 16px 0 0;
}
.testimonial-card::after {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(232,99,26,0.10);
  pointer-events: none;
  font-weight: 700;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(30,58,95,0.16);
  border-color: rgba(232,99,26,0.35);
}
/* Featured (center) card */
.testimonial-card--featured {
  background: linear-gradient(135deg, #E8631A 0%, #c9511a 100%);
  border: none;
  box-shadow: 0 14px 36px rgba(232,99,26,0.30);
  transform: translateY(-6px);
}
.testimonial-card--featured::before {
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.5) 100%);
}
.testimonial-card--featured::after {
  color: rgba(255,255,255,0.18);
}
.testimonial-card--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 56px rgba(232,99,26,0.40);
}
/* Top row: stars + source */
.testimonial-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}
.testimonial-card__source {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9ca3af;
  text-transform: uppercase;
}
.testimonial-card__source svg { width: 18px; height: 18px; }
.testimonial-card--featured .testimonial-card__source { color: rgba(255,255,255,0.85); }
.source--google { background: transparent; }
.source--angi   { background: transparent; color: #9ca3af; }
/* Review text */
.testimonial-card__text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
  /* Hanging-indent the opening quote */
  font-style: normal;
}
.testimonial-card--featured .testimonial-card__text {
  color: rgba(255,255,255,0.96);
}
/* Footer (avatar + name + location) */
.testimonial-card__footer {
  padding: 18px 0 0;
  border-top: 1px solid #ede5d9;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.testimonial-card--featured .testimonial-card__footer {
  border-top-color: rgba(255,255,255,0.25);
}
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #2d4a73 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(30,58,95,0.20);
}
.testimonial-card--featured .testimonial-card__avatar {
  background: rgba(255,255,255,0.22);
  box-shadow: none;
}
.testimonial-card__name { font-weight: 700; font-size: 0.9375rem; color: var(--navy); margin: 0; }
.testimonial-card--featured .testimonial-card__name { color: #fff; }
.testimonial-card__location {
  font-size: 0.75rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 2px 0 0;
}
.testimonial-card--featured .testimonial-card__location { color: rgba(255,255,255,0.80); }
.testimonial-card__location svg { width: 12px; height: 12px; }
/* Stars sized up on review cards */
.testimonial-card .stars .star-icon { width: 18px; height: 18px; }
.testimonial-card--featured .stars .star-icon { fill: #fff; }

/* ── Reviews page hero stats row ───────────────────────── */
.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 32px auto 0;
  padding: 24px 28px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  max-width: 720px;
  backdrop-filter: blur(6px);
}
.reviews-stats__item { text-align: center; }
.reviews-stats__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.reviews-stats__num .stars-inline { color: var(--orange); }
.reviews-stats__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Stars */
.stars { display: flex; gap: 2px; }
.star-icon { width: 16px; height: 16px; fill: var(--orange); }

/* ── Service Areas ── */
.service-areas {
  background: var(--service-areas-bg, var(--section-blue));
  padding: 80px 0;
  margin-top: 0;
  text-align: center;
  position: relative;
  z-index: 4;
}
.service-areas__title { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.service-areas__sub   { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.service-areas__rows  { margin-bottom: 40px; }
.service-areas__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.area-btn {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}
.area-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(30,58,95,0.22);
}

/* ── Certifications ── */
.certifications {
  background: #fdf8f2;
  padding: 64px 0;
  position: relative;
  z-index: 3;
}
.certifications__header { text-align: center; margin-bottom: 48px; }

/* ── Logo Track (scrolling rows) ── */
@keyframes logo-scroll        { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes logo-scroll-reverse{ from { transform: translateX(-50%); } to { transform: translateX(0); } }

.logo-track-wrap {
  padding: 8px 0 20px;
}
.logo-track-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 16px;
}
.logo-track {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logo-track__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: logo-scroll 28s linear infinite;
}
.logo-track--reverse .logo-track__inner {
  animation: logo-scroll-reverse 28s linear infinite;
}
.logo-track:hover .logo-track__inner { animation-play-state: paused; }

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 140px;
}
.logo-item img {
  max-height: 90px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  opacity: 0.9;
  transition: opacity 0.2s, filter 0.2s;
  border-radius: 8px;
}
.logo-item img:hover { opacity: 1; filter: grayscale(0%); }
.logo-placeholder {
  width: 130px;
  height: 80px;
  background: #f5ede0;
  border: 1.5px dashed #ede5d9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.logo-placeholder span {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #9ca3af;
  text-align: center;
  line-height: 1.3;
}
.logo-track-divider {
  padding: 8px 0 16px;
}
.logo-track-divider hr {
  border: none;
  border-top: 1px solid #ede5d9;
  margin: 0;
}

/* ── Inner Page Header (Contact, About, Reviews, etc.) ── */
.page-header {
  position: relative;
  background: var(--page-header-bg, var(--navy, #1A2744));
  padding: 56px 0 52px;
  overflow: hidden;
}
.page-header--has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--page-header-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
.page-header__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.page-header__label {
  display: inline-block;
  color: var(--orange, #E8631A);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-header__title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.875rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}
.page-header__subtitle {
  color: #ffffffb8;
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.65;
}

/* ── CTA Section ── */
.cta-section {
  background: #f5ede0;
  padding: 96px 0;
}
.cta-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(30,58,95,0.30);
}
.cta-card__circle-1 {
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: #c4a899;
  opacity: 0.15;
}
.cta-card__circle-2 {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: #c4a899;
  opacity: 0.15;
}
.cta-card__content { position: relative; }
.cta-card__title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-card__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}
.cta-card__financing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  padding: 6px 18px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 32px;
}
.cta-card__financing svg { width: 14px; height: 14px; }
.cta-card__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn--white {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn--white:hover { opacity: 0.95; }
.btn--ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--ghost-white:hover { background: rgba(255,255,255,0.1); opacity: 1; }

/* ── Footer ── */
.footer {
  background: var(--dark-footer);
  padding: 56px 0 24px;
}
.footer__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__logo { height: 100px; width: auto; margin-bottom: 16px; }
.footer__desc { font-size: 0.875rem; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 16px; max-width: 320px; }
.footer__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 600;
}
.footer__heading {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer__list { display: flex; flex-direction: column; gap: 10px; }
.footer__list li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  transition: color 0.2s;
}
.footer__list li a:hover { color: #fff; }
.footer__list--plain li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
}
.footer__bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
}

/* ── Process Split section (text-left + image-right with bold step labels) ── */
.process-split .about__inner { gap: 60px; align-items: center; }
.process-split__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy, #1A2744);
  line-height: 1.1;
  margin: 8px 0 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.process-split__intro {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
}
.process-split__step {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 18px;
}
.process-split__step strong {
  color: var(--navy, #1A2744);
  font-weight: 700;
}
.process-split__img {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.35);
  aspect-ratio: 4 / 5;
  background: #f3f4f6;
}
.process-split__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 768px) {
  .process-split { padding: 56px 0 !important; }
  .process-split .about__inner { gap: 32px; }
  .process-split__title { font-size: 1.875rem; }
  .process-split__img { aspect-ratio: 16 / 10; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services__grid,
  .why-choose__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .hero { min-height: 520px; }
  .hero__inner { padding: 80px 24px 80px; }
  .hero__title { font-size: 2.25rem; }
  .why-choose { padding: 80px 0; margin-bottom: 0; }
  .testimonials { padding: 80px 0; }
  .service-areas { padding: 80px 0; margin-bottom: 0; }
  .about { padding: 80px 0; }
  .certifications { padding: 64px 0; }
  .services__grid,
  .why-choose__grid,
  .testimonials__grid { grid-template-columns: 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__badge { bottom: -16px; right: -12px; width: 90px; height: 90px; }
  .about__badge strong { font-size: 1.5rem; }
  .nav__links,
  .nav__phone,
  .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }
  .stats-card__inner { grid-template-columns: 1fr; }
  .stats-card__item { border-right: none; border-bottom: 1px solid #ede5d9; }
  .stats-card__item:last-child { border-bottom: none; }
  .cta-card { padding: 40px 24px; }
  .cta-card__title { font-size: 1.75rem; }
  .section-title { font-size: 1.75rem; }
  .testimonials__header { flex-direction: column; align-items: flex-start; }
  .footer__grid { grid-template-columns: 1fr; }
  .phone-bar__label { display: none; }
}

@media (max-width: 480px) {
  .hero { min-height: 460px; }
  .hero__title { font-size: 1.875rem; }
  .floating-btn { bottom: 16px; right: 16px; padding: 12px 16px; font-size: 0.75rem; }
}

/* ── PHOTO BANNER (service-page visual break) ── */
.photo-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.photo-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,42,74,0.92) 0%, rgba(26,42,74,0.45) 55%, rgba(26,42,74,0.10) 100%);
  z-index: 1;
}
.photo-banner__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1100px;
  margin: 0 auto;
  padding: 80px 1.5rem 3rem;
}
.photo-banner__label {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange, #E8631A);
  margin-bottom: 0.5rem;
}
.photo-banner__title {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  max-width: 680px;
}
.photo-banner__sub {
  font-size: 1rem;
  color: #e5e7eb;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 1.5rem;
}

/* ── SIGNS + WHY SPLIT ── */
.signs-why-split { background: #fff; padding: 80px 0; }
.signs-why-split__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 36px;
  align-items: start;
}
.signs-why-split__title {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--navy, #1e3a5f);
  line-height: 1.2;
  margin-bottom: 16px;
}
.signs-why-split__sub {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
}
.signs-why-split__list {
  list-style: none; padding: 0; margin: 0 0 32px;
}
.signs-why-split__item {
  display: flex; align-items: flex-start;
  gap: 12px; padding: 7px 0;
  font-size: 0.9375rem; color: #374151; line-height: 1.5;
}
.signs-why-split__icon {
  flex-shrink: 0; margin-top: 1px; color: var(--orange, #E8631A);
}
.signs-why-split__card {
  background: var(--navy, #1e3a5f);
  border-radius: 20px;
  padding: 28px;
}
.signs-why-split__card-title {
  font-size: 1.125rem; font-weight: 800;
  color: var(--orange, #E8631A);
  margin-bottom: 20px;
}
.signs-why-split__why-list { display: flex; flex-direction: column; gap: 16px; }
.signs-why-split__why-item { display: flex; gap: 14px; align-items: flex-start; }
.signs-why-split__why-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange, #E8631A);
}
.signs-why-split__why-title {
  font-size: 0.9375rem; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.signs-why-split__why-text {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .signs-why-split__inner { grid-template-columns: 1fr; gap: 36px; }
  .photo-banner { min-height: 380px; }
}

/* ── FEATURE CARDS (cards_grid style:'feature') ── */
.feature-cards__grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  gap: 24px;
}
.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border, #ede5d9);
  border-radius: 14px;
  padding: 32px 26px 26px;
  box-shadow: 0 1px 2px rgba(20,30,55,0.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange, #E8631A);
  border-radius: 14px 0 0 14px;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20,30,55,0.10);
  border-color: var(--orange, #E8631A);
}
.feature-card__num {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--orange, #E8631A);
  margin-bottom: 14px;
}
.feature-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--navy, #1e3a5f);
  line-height: 1.3;
  margin: 0 0 10px;
}
.feature-card__text {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 900px) {
  .feature-cards__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .feature-cards__grid { grid-template-columns: 1fr; }
}

/* ── FEATURE 3D CARDS (cards_grid style:'feature3d') ── */
.feature3d {
  position: relative;
  padding: 96px 0 104px;
  background: linear-gradient(135deg, #1a2a4a 0%, #1e3a5f 50%, #15233f 100%);
  overflow: hidden;
}
.feature3d__bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
  z-index: 1;
  pointer-events: none;
}
.feature3d__bg-shape--a {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #E8631A 0%, transparent 70%);
  top: -120px; left: -120px;
}
.feature3d__bg-shape--b {
  width: 560px; height: 560px;
  background: radial-gradient(circle, #2563eb 0%, transparent 70%);
  bottom: -180px; right: -160px;
}
.feature3d__grid {
  display: grid;
  grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
  gap: 28px;
  perspective: 1400px;
}
.feature3d__card {
  position: relative;
  border-radius: 18px;
  transform-style: preserve-3d;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
  /* layered depth shadow */
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 -2px 0 rgba(0,0,0,0.25) inset,
    0 12px 24px -8px rgba(0,0,0,0.55),
    0 30px 60px -20px rgba(0,0,0,0.45),
    0 50px 100px -30px rgba(232,99,26,0.18);
}
.feature3d__card:hover {
  transform: translateY(-10px) rotateX(4deg) rotateY(-3deg);
}
.feature3d__inner {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, #ffffff 0%, #f6efe4 100%);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 18px;
  padding: 36px 28px 32px;
  min-height: 220px;
  overflow: hidden;
}
.feature3d__inner::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, #E8631A 0%, #ff8c42 100%);
  border-radius: 18px 18px 0 0;
}
.feature3d__watermark {
  position: absolute;
  right: 18px; top: 4px;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(30,58,95,0.06);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.feature3d__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: linear-gradient(145deg, #E8631A 0%, #c95216 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: .04em;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow:
    0 4px 10px rgba(232,99,26,0.45),
    0 1px 0 rgba(255,255,255,0.4) inset;
}
.feature3d__title {
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--navy, #1e3a5f);
  line-height: 1.3;
  margin: 0 0 10px;
  position: relative;
  z-index: 2;
}
.feature3d__text {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .feature3d__grid { grid-template-columns: repeat(2, 1fr); }
  .feature3d__card:hover { transform: translateY(-6px); }
}
@media (max-width: 600px) {
  .feature3d__grid { grid-template-columns: 1fr; }
}

/* ── CARDS GRID — simple/fallback (light theme, hover lift) ── */
.cards-grid-simple { background: #f5ede0; }
.cards-grid-simple .why-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #e8e2d8;
  border-radius: 14px;
  padding: 28px 26px;
  backdrop-filter: none;
  box-shadow: 0 1px 2px rgba(20,30,55,0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: default;
}
.cards-grid-simple .why-card:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 18px 36px -10px rgba(20,30,55,0.18), 0 6px 12px -4px rgba(20,30,55,0.10);
  border-color: var(--orange, #E8631A);
}
.cards-grid-simple .why-card__icon {
  width: 44px; height: 44px;
  background: #fdece0;
  border-radius: 10px;
  color: var(--orange, #E8631A);
  flex-shrink: 0;
}
.cards-grid-simple .why-card__icon svg {
  width: 22px; height: 22px;
  color: var(--orange, #E8631A);
  stroke: var(--orange, #E8631A);
}
.cards-grid-simple .why-card__body { padding: 0; }
.cards-grid-simple .why-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy, #1a3a6e);
  margin: 0 0 8px 0;
  line-height: 1.3;
}
.cards-grid-simple .why-card__desc {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ── PHOTO SLIDER (auto-scroll marquee, hover-pause, click to enlarge) ── */
.photo-slider { overflow: hidden; }
.photo-slider__header { text-align: center; margin-bottom: 32px; }
.photo-slider__label {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--orange, #E8631A);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.photo-slider__title {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800; color: #fff; margin: 0 0 8px 0; line-height: 1.15;
}
.photo-slider__sub { color: rgba(255,255,255,0.75); font-size: 1rem; margin: 0 auto; max-width: 720px; }
.photo-slider__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
          mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
}
.photo-slider__track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 8px 0;
  animation: pgs-scroll var(--pgs-speed, 50s) linear infinite;
  will-change: transform;
}
@keyframes pgs-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.photo-slider__slide {
  position: relative;
  flex: 0 0 auto;
  height: var(--pgs-h, 340px);
  width: calc(var(--pgs-h, 340px) * 1.45);
  border: none;
  padding: 0;
  background: #1a2a4a;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.photo-slider__slide img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.photo-slider__slide:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -8px rgba(0,0,0,0.55); }
.photo-slider__slide:hover img { transform: scale(1.05); }
.photo-slider__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff; font-size: 0.9rem; font-weight: 600;
  text-align: left;
}
@media (max-width: 700px) {
  .photo-slider__slide { height: 230px; width: 320px; }
}

/* Lightbox */
.pgs-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,12,24,0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}
.pgs-lightbox[hidden] { display: none; }
.pgs-lightbox__img {
  max-width: 92vw; max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  cursor: default;
}
.pgs-lightbox__cap {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center; color: #fff; font-size: 1rem; font-weight: 600;
}
.pgs-lightbox__close {
  position: absolute; top: 18px; right: 22px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 28px; line-height: 1;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.pgs-lightbox__close:hover { background: rgba(255,255,255,0.22); }

/* ══════════════════════════════════════════════════
   AWARDS STRIP — Option D (light/cream palette)
══════════════════════════════════════════════════ */
.awards-strip {
  padding: 80px 0 88px;
  background: linear-gradient(180deg, #faf6ee 0%, #ffffff 100%);
}
.awards-strip__head { text-align: center; margin-bottom: 44px; }
.awards-strip__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(232,99,26,0.10); color: var(--orange, #E8631A);
  font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  margin-bottom: 14px;
}
.awards-strip__kicker svg { width: 14px; height: 14px; }
.awards-strip__title {
  font-size: clamp(2rem, 3.2vw, 2.875rem);
  font-weight: 800; color: var(--navy, #1e3a5f);
  margin: 0 0 12px; line-height: 1.15;
}
.awards-strip__lede {
  max-width: 640px; margin: 0 auto;
  color: #4b5563; font-size: 1rem; line-height: 1.6;
}
.awards-strip__lede p { margin: 0; }

/* Hero badge strip */
.awards-strip__hero { position: relative; margin-bottom: 56px; }
.awards-strip__hero-inner {
  background: #fff;
  border: 1px solid #ede5d9;
  border-radius: 18px;
  padding: 28px 32px 32px;
  box-shadow: 0 20px 50px -20px rgba(30,58,95,0.18), 0 2px 4px rgba(20,30,55,0.04);
}
.awards-strip__hero-kicker {
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange, #E8631A); margin-bottom: 22px;
}
/* Auto-scrolling badge marquee (5 visible, pauses on hover) */
@keyframes awards-strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.awards-strip__marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.awards-strip__track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: awards-strip-scroll 32s linear infinite;
  will-change: transform;
}
.awards-strip__marquee:hover .awards-strip__track,
.awards-strip__marquee:focus-within .awards-strip__track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .awards-strip__track { animation: none; }
}
.awards-strip__badge {
  flex: 0 0 auto;
  width: calc((100% - 4 * 36px) / 5);
  min-width: 150px;
  max-width: 200px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.awards-strip__badge:hover { transform: scale(1.05); }
.awards-strip__badge img {
  height: 110px; width: auto; max-width: 100%;
  object-fit: contain; display: block;
}
.awards-strip__hero-bar {
  position: absolute; left: 50%; bottom: -6px;
  transform: translateX(-50%);
  width: 128px; height: 4px; border-radius: 999px;
  background: var(--orange, #E8631A);
}

/* Detail cert cards */
.awards-strip__certs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.awards-strip__cert {
  position: relative;
  background: #fff;
  border: 1px solid #ede5d9;
  border-radius: 14px;
  padding: 24px 22px 22px;
  box-shadow: 0 1px 2px rgba(20,30,55,0.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.awards-strip__cert::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--orange, #E8631A);
  border-radius: 14px 0 0 14px;
}
.awards-strip__cert:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20,30,55,0.10);
  border-color: var(--orange, #E8631A);
}
.awards-strip__cert-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 16px;
  background: linear-gradient(135deg, #E8631A 0%, #c4490f 100%);
  box-shadow: 0 6px 14px rgba(232,99,26,0.30);
  transition: transform .25s ease;
}
.awards-strip__cert-icon svg { width: 24px; height: 24px; }
.awards-strip__cert:hover .awards-strip__cert-icon { transform: scale(1.08); }
.awards-strip__cert-title {
  font-size: 1rem; font-weight: 800;
  color: var(--navy, #1e3a5f);
  margin: 0 0 4px; line-height: 1.25;
}
.awards-strip__cert-sub {
  font-size: 11px; font-weight: 700;
  color: var(--orange, #E8631A);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 8px;
}
.awards-strip__cert-desc {
  font-size: 0.8125rem; color: #4b5563;
  line-height: 1.55; margin: 0;
}

@media (max-width: 980px) {
  .awards-strip__certs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .awards-strip__track { gap: 24px; }
  .awards-strip__badge { min-width: 120px; width: calc((100% - 2 * 24px) / 3); }
  .awards-strip__badge img { height: 80px; }
  .awards-strip__hero-inner { padding: 22px 18px 26px; }
}
@media (max-width: 560px) {
  .awards-strip__certs { grid-template-columns: 1fr; }
}
