/* =============================================================
   SOLARSHIELD — MAIN STYLESHEET
   style.css
   Layout, sections, page-level styles
   ============================================================= */

/* ─────────────────────────────────────────────
   1. BASE / RESET
   ───────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--solarshield-blue) #f4f4f4;
}

/* ─── Custom Webkit Scrollbar ─── */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f4f4f4;
}
::-webkit-scrollbar-thumb {
  background: var(--solarshield-blue);
  border-radius: 6px;
  border: 2px solid #f4f4f4;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--solarshield-blue-dark);
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  color: var(--solarshield-text-dark);
  background-color: var(--solarshield-bg-page);
  line-height: var(--lh-normal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: inherit;
}

/* ─────────────────────────────────────────────
   2. CONTAINER
   ───────────────────────────────────────────── */

.container-solarshield {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px-lg);
  padding-right: var(--container-px-lg);
}

/* ─────────────────────────────────────────────
   3. NAVBAR
   ───────────────────────────────────────────── */

.navbar-solarshield {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: var(--navbar-bg);
  z-index: var(--z-navbar);
  display: flex;
  align-items: center;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 30px;
  /* Navbar horizontal padding matching 30px from inspector */
  height: 100%;
  flex-wrap: nowrap;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav menu */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}

.navbar-menu>li {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Mega menu positioning context */
.navbar-solarshield .mega-menu-wrapper {
  position: absolute;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 3px solid var(--solarshield-blue);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-menu),
    visibility var(--transition-menu),
    transform var(--transition-menu);
  pointer-events: none;
}

.navbar-menu>li.active>.mega-menu-wrapper,
.navbar-menu>li:focus-within>.mega-menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.mega-menu-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 2rem var(--container-px-lg);
  display: flex;
  gap: 4rem;
}

.mega-col {
  flex: 1;
  min-width: 0;
}

.mega-col-divider {
  width: 1px;
  background: var(--solarshield-border-light);
  flex-shrink: 0;
}

/* Navbar right actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Search button */
.navbar-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--solarshield-text-dark);
  font-size: 1.1rem;
  transition: color var(--transition-fast);
  padding: 0;
}

.navbar-search-btn:hover {
  color: var(--solarshield-blue);
}

/* Mobile hamburger */
.navbar-hamburger {
  display: none;
  /* shown via @media query below */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: var(--z-mobile-menu);
}

@media (max-width: 1024px) {
  .navbar-hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .product-details-content {
    grid-template-columns: 1fr;
  }
}

/* Original SolarShield primary-nav desktop snippet */
@media (min-width: 1024px) {
  .primary-nav {
    height: 5.4375rem;
    position: relative;
    z-index: 10;
  }
}

.hamburger-line {
  width: 26px;
  height: 2px;
  background: var(--solarshield-text-dark);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  display: block;
}

.product-card {
  background: var(--solarshield-bg-card-light);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.navbar-hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-mobile-menu) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile drawer panel */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background: var(--solarshield-bg-white);
  z-index: var(--z-mobile-menu);
  transform: translateX(-100%);
  transition: transform var(--transition-menu);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--solarshield-border-light);
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}

.mobile-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--solarshield-text-dark);
  padding: 0.25rem;
  line-height: 1;
}

.mobile-nav-list {
  padding: 1rem 0;
  flex: 1;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--solarshield-border-light);
}

.mobile-nav-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--solarshield-text-dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mobile-nav-chevron {
  transition: transform var(--transition-fast);
  font-size: 0.75rem;
}

.mobile-nav-item.open > .mobile-nav-btn .mobile-nav-chevron {
  transform: rotate(180deg);
}

.mobile-sub-list {
  display: none;
  padding: 0 1.5rem 0 2.5rem;
  background: #f9f9f9;
}

.mobile-nav-item.open > .mobile-sub-list {
  display: block;
}

.mobile-sub-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--solarshield-text-body);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-sub-link:hover {
  color: var(--solarshield-blue);
}

.mobile-sub-link .dropdown-icon {
  width: 20px;
  margin-right: 12px;
  color: var(--solarshield-text-light);
  text-align: center;
}

.mobile-sub-link:hover .dropdown-icon {
  color: var(--solarshield-blue);
}

.mobile-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--solarshield-border-light);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-search-form {
  position: relative;
}

.mobile-search-input {
  width: 100%;
  height: 46px;
  padding: 0 3rem 0 1.25rem;
  border: 1.5px solid var(--solarshield-border-light);
  border-radius: 50px;
  font-size: 0.9rem;
  outline: none;
  font-family: var(--font-primary);
}

.mobile-search-submit {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--solarshield-blue);
  font-size: 1rem;
}

/* ─────────────────────────────────────────────
   4. HERO SECTION (AEM Structure)
   ───────────────────────────────────────────── */

.hero-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
  /* padding-top removed because primary-nav is now position: relative */
  min-height: 100vh;
  display: flex;
}

.glide {
  width: 100%;
  display: flex;
}

.glide__track,
.glide__slides,
.glide__slide,
.cmp-carousel__item,
.teaser,
.cmp-showCase {
  width: 100%;
  height: 100%;
  display: flex;
  flex: 1;
}

.cmp-showCase {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  min-height: 708px;
  padding: 0 0 0 104px;
  /* Left padding only */
  box-sizing: border-box;
}

/* Left — text content */
.cmp-showCase__content {
  flex: 0 0 574.35px;
  width: 574.35px;
  min-height: 708px;
  padding: 30px 0 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  position: relative;
  background: transparent;
}

.cmp-showCase__content-wrap {
  display: flex;
  flex-direction: column;
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cmp-showCase__title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  /* font-weight: 600; */
  line-height: 1.1;
  background: linear-gradient(90deg, var(--solarshield-blue-dark) 0%, #0074b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  letter-spacing: -3px;
  margin-bottom: 24px;
  overflow-wrap: normal;
  word-break: normal;
  -ms-hyphens: none;
  hyphens: none;
}

.cmp-showCase__subheading {
  font-family: var(--font-primary);
  font-size: 1.125rem;
  font-weight: 400;
  color: #4a5568;
  line-height: 1.6;
  margin-top: 0.625rem;
  overflow-wrap: normal;
  word-break: normal;
  max-width: 480px;
}

.cmp-teaser__action-container--carousel {
  display: flex;
  align-items: center;
  margin-top: 48px;
}

.solarshield-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--solarshield-blue), var(--solarshield-blue-dark));
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 77, 119, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.solarshield-hero-btn:hover {
  background: linear-gradient(90deg, var(--solarshield-blue-dark), var(--solarshield-blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 77, 119, 0.4);
}

/* Right — image overlay */
.cmp-teaser__image {
  flex: 1;
  min-height: 708px;
  position: relative;
  overflow: hidden;
  margin-left: -50px; /* Pull it closer to the text/button */
}

.cmp-teaser__image>div,
.cmp-teaser__image picture,
.cmp-teaser__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 80%;
  /* Shift focus lower to match original crop */
  display: block;
  /* Slanted edge that reaches closer to the text block */
  clip-path: polygon(100% 0%, 15% 0%, 0% 100%, 100% 100%);
  -webkit-clip-path: polygon(100% 0%, 15% 0%, 0% 100%, 100% 100%);
}

.cmp-teaser__image img {
  /* animation temporarily removed for screenshot capture */
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}



/* Remove the old pseudo-element approach */
.hero-accent-bar {
  display: none;
}

/* ─────────────────────────────────────────────
   5. OUR EXPERTISE SECTION
   ───────────────────────────────────────────── */

.expertise-section {
  width: 100%;
  background: #ffffff;
  padding: var(--section-py) 0;
}

.expertise-section-header {
  margin-bottom: 40px;
}

.expertise-heading {
  color: var(--solarshield-blue-dark);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -.0625rem;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .expertise-heading {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: -.125rem;
  }
}

/* ═══════════════════════════════════════════════
   5. OUR EXPERTISE — 2 ROWS × 2 CARDS (horizontal expand)
   ═══════════════════════════════════════════════ */

/* ── Outer wrapper: stacks the 2 rows ── */
.expertise-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Each row: 2 cards side-by-side, horizontal expand ── */
.expertise-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  height: 440px;
  overflow: hidden;
}

/* ── Card: starts equal-width (image only), expands on hover ── */
.expertise-card {
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  transition: flex 0.55s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  min-width: 0;
}

.expertise-card:hover {
  flex: 4.5;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16);
}

/* Shrink the sibling card in the same row */
.expertise-row:hover .expertise-card:not(:hover) {
  flex: 1;
}

/* ── Image wrapper: fills full card by default, fixed width on hover ── */
.expertise-img-wrap {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: width 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  min-width: 0;
}

.expertise-card:hover .expertise-img-wrap {
  width: 240px;
}

.expertise-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}

.expertise-card:hover .expertise-img-wrap img {
  transform: scale(1.06);
}

/* ── Subtle dark vignette on image ── */
.expertise-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Badge/Tab pill — icon + name, sits over image ── */
.expertise-badge-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  padding: 10px 20px;
  border-radius: 40px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  color: #1a2e55;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.expertise-badge-overlay img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Fade badge out when card expands */
.expertise-card:hover .expertise-badge-overlay {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
}

/* ── Content panel: 0-width by default, slides in on hover ── */
.expertise-card__content {
  flex-shrink: 0;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-width 0.55s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.3s ease;
}

.expertise-card:hover .expertise-card__content {
  max-width: 480px;
  opacity: 1;
  transition:
    max-width 0.55s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.3s ease 0.18s;
}

/* ── Inner wrapper: fixed width + padding, clipped by outer ── */
.expertise-card__content-inner {
  width: 420px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* ── Section label pill ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: #f0f3fb;
  padding: 6px 14px;
  border-radius: 30px;
  color: var(--solarshield-blue);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  white-space: nowrap;
}

.section-label img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.section-label-icon { margin-right: 5px; }
.mb-solarshield-sm  { margin-bottom: 14px; }

/* ── Card heading — Termina ── */
.expertise-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--solarshield-text-heading, #003859);
  line-height: 1.2;
  margin: 14px 0 10px;
  white-space: normal;
  letter-spacing: -0.02em;
}

/* ── Description — Sofia Pro ── */
.expertise-card__desc {
  font-family: var(--font-primary);
  color: var(--solarshield-text-body, #1a1818);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 12px;
  white-space: normal;
}

/* ── Highlights list — Sofia Pro ── */
.expertise-hover-features {
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.expertise-hover-features li {
  font-family: var(--font-primary);
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--solarshield-text-dark, #1a1818);
  font-weight: 600;
  font-size: 16px;
  white-space: normal;
}

.expertise-hover-features li i {
  font-size: 0.7rem;
  color: var(--solarshield-blue, #004D77);
  flex-shrink: 0;
}

.text-solarshield-blue { color: var(--solarshield-blue, #004D77); }

/* ── Actions / CTA ── */
.expertise-actions {
  margin-top: auto;
  padding-top: 10px;
}

.expertise-arrow { display: none; }

.expertise-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--solarshield-blue, #004D77);
  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-family: var(--font-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  transition: background-color 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.expertise-btn:hover {
  background-color: var(--solarshield-blue-dark, #003859);
  color: #fff;
  transform: translateX(3px);
}

.btn-arrow {
  margin-left: 3px;
  transition: transform 0.25s ease;
}

.expertise-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════ */

/* Large tablet (≤1024px): rows narrower */
@media (max-width: 1024px) {
  .expertise-row {
    height: 380px;
  }

  .expertise-card__content-inner {
    width: 300px;
    padding: 22px 18px;
  }

  .expertise-card:hover .expertise-card__content {
    max-width: 340px;
  }

  .expertise-card__title {
    font-size: 19px;
  }
}

/* Tablet (≤768px): rows stack vertically, content always visible */
@media (max-width: 768px) {
  .expertise-grid {
    gap: 16px;
  }

  .expertise-row {
    flex-direction: column;
    height: auto;
    gap: 16px;
    overflow: visible;
  }

  .expertise-card {
    flex: none !important;
    flex-direction: column;
    min-height: auto;
    transition: box-shadow 0.3s ease;
  }

  .expertise-card:hover {
    flex: none !important;
    transform: translateY(-4px);
  }

  .expertise-img-wrap {
    width: 100% !important;
    height: 220px;
    flex-shrink: 0;
    transition: none;
  }

  .expertise-card:hover .expertise-img-wrap {
    width: 100% !important;
  }

  .expertise-img-wrap::after {
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.15) 100%);
  }

  .expertise-badge-overlay {
    bottom: 14px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) !important;
    font-size: 12px;
    padding: 6px 12px;
  }

  .expertise-card__content {
    max-width: 100% !important;
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease, visibility 0.5s ease !important;
  }

  .expertise-card:hover .expertise-card__content {
    max-height: 800px !important; /* Expands to fit content */
    opacity: 1 !important;
    visibility: visible !important;
  }

  .expertise-card__content-inner {
    width: 100%;
    padding: 20px;
    height: auto;
    overflow: visible;
  }

  .expertise-card__title {
    font-size: 20px;
    margin: 10px 0 8px;
  }
}

/* Small mobile (≤480px) */
@media (max-width: 480px) {
  .expertise-img-wrap {
    height: 180px;
  }

  .expertise-card__content-inner {
    padding: 16px;
  }

  .expertise-card__title {
    font-size: 18px;
  }

  .expertise-badge-overlay {
    font-size: 12px;
    padding: 6px 12px;
    gap: 5px;
  }

  .expertise-badge-overlay img {
    width: 14px;
    height: 14px;
  }
}






/* ─────────────────────────────────────────────
   6. WHY SOLARSHIELD SECTION (DARK)
   ───────────────────────────────────────────── */

.why-solarshield-section {
  background: #fff;
  padding: var(--section-py) 0;
}

.why-solarshield-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-solarshield-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 400;
  /* Use thin variant like the original */
  text-transform: uppercase;
  color: #003859;
  line-height: 1.1;
  letter-spacing: -.175rem;
  margin-bottom: 2rem;
}

.why-solarshield-subheading {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--solarshield-text-white);
  margin-bottom: 0.5rem;
}

.why-solarshield-body {
  font-size: 1rem;
  color: #4A5568;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.why-icons-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-solarshield-images {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.why-solarshield-images img {
  max-width: 280px;
  height: auto;
  object-fit: contain;
  padding: 0;
  transition: transform 0.3s ease;
}

.why-solarshield-images img:hover {
  transform: scale(1.05);
}

.why-icons-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding: 1.5rem 0;
}

.icons-row-divider {
  border: none;
  height: 1px;
  background: var(--solarshield-blue);
  /* Solid red divider */
  margin: 0;
  width: 100%;
}

.why-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.why-icon-svg {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
}

.why-icon-label {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  font-weight: 700;
  /* Bold to match design */
  color: #ffffff;
  line-height: 1.3;
}

/* ─────────────────────────────────────────────
   7. AUTOMOTIVE PRODUCTS SECTION (2 cards)
   ───────────────────────────────────────────── */

.products-section {
  padding: var(--section-py) 0;
  background-color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.product-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 77, 119, 0.08);
  /* Subtle brand-tinted shadow */
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 77, 119, 0.12);
}

.product-card__title {
  font-family: var(--font-primary); font-weight: 500;
  font-size: 24px;
  font-weight: 500;
  color: var(--solarshield-blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product-card__title .title-arrow {
  color: var(--solarshield-blue);
  transition: transform 0.3s ease;
}

.product-card:hover .product-card__title .title-arrow {
  transform: translateX(4px);
}

.product-card__desc {
  font-family: var(--font-primary); font-weight: 300;
  font-size: 16px;
  color: #1B1919;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
}

.product-card__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.feature-list.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 1.25rem;
  column-gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list.grid-2-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: var(--font-primary); font-weight: 500;
  font-size: 16px;
  color: var(--solarshield-blue-dark);
  padding: 6px 0px;
}

.red-check {
  color: var(--solarshield-blue);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ─────────────────────────────────────────────
   8. SPLIT PROMO SECTIONS
   (FormulaOne, Architectural Film, Dealer)
   ───────────────────────────────────────────── */

.promo-section {
  padding: var(--section-py) 0;
  background: #FFFFFF;
  width: 100%;
}

.promo-section.dark-promo {
  background: var(--solarshield-bg-dark);
  /* #1a1818 */
  color: var(--solarshield-text-white);
}

.promo-section.dark-promo .promo-title {
  color: #ffffff;
}

.promo-section.dark-promo .promo-body {
  color: rgba(255, 255, 255, 0.9);
}

.bullet-list-white {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 0 2rem 0 !important;
}

.bullet-list-white li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
  font-family: var(--font-primary);
  color: #fff;
  font-size: 1.1rem;
}

.bullet-list-white li i {
  color: #fff;
  font-size: 1.1rem;
}

.promo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1520.8px;
  height: auto;
  margin: 0 auto;
}

.promo-inner.image-right .promo-media {
  order: 2;
}

.promo-inner.image-right .promo-content {
  order: 1;
}

.promo-media {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16/12;
}

.promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.promo-media:hover img {
  transform: scale(1.03);
}

.promo-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.promo-tag {
  font-family: var(--font-primary);
  font-size: var(--fs-eyebrow);
  /* 1rem (exact from eyebrow_text) */
  font-weight: var(--fw-regular);
  /* 400 (exact) */
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  /* 0.0875rem (exact) */
  color: var(--solarshield-text-heading);
  /* var(--solarshield-blue-dark) (exact) */
}

.promo-title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--solarshield-blue-dark);
  line-height: 1.1;
  letter-spacing: -.175rem;
  margin: 0;
}

.promo-divider {
  width: 100%;
  height: 2px;
  background: var(--solarshield-blue);
  border: none;
  margin: 0;
}

.promo-body {
  font-family: var(--font-primary); font-weight: 300;
  font-size: 16px;
  font-weight: 300;
  color: #1B1919;
  line-height: 1.6;
}

.btn-solarshield {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--btn-bg);
  color: #FFFFFF;
  font-family: var(--font-primary); font-weight: 500;
  font-size: 16px;
  padding: 12px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
  white-space: nowrap;
}

.btn-solarshield:hover {
  background-color: var(--btn-bg-hover);
}

.btn-solarshield .btn-arrow {
  margin-left: 8px;
}

/* ─────────────────────────────────────────────
   9. RESIDENTIAL vs COMMERCIAL SECTION
   ───────────────────────────────────────────── */

.arch-products-section {
  padding: var(--section-py) 0;
  background: var(--solarshield-bg-page);
  min-height: 550px;
}

.arch-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* ─────────────────────────────────────────────
   10. FOOTER
   ───────────────────────────────────────────── */

.footer-solarshield {
  background: #ffffff;
  padding-top: 0;
}

/* Footer notice bar */
.footer-notice {
  background: var(--solarshield-bg-page);
  border-top: 1px solid var(--solarshield-border-light);
  padding: 1.1rem 0;
}

.footer-notice p {
  font-size: 0.875rem;
  color: var(--solarshield-text-body);
}

.footer-notice a {
  color: var(--solarshield-blue);
  text-decoration: none;
}

.footer-notice a:hover {
  text-decoration: underline;
}

/* Footer search section */
.footer-search-section {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--solarshield-border-light);
}

.footer-search-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: var(--fw-bold);
  color: var(--solarshield-text-dark);
  margin-bottom: 2rem;
}

/* Footer main content */
.footer-main {
  padding: 3rem 0 2.5rem;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Footer bottom bar */
.footer-bottom {
  background: #ffffff;
  border-top: 1px solid var(--solarshield-border-light);
  padding: 1.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-logo-eastman img {
  height: 28px;
  width: auto;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--solarshield-text-light);
  line-height: 1.5;
}

/* ─────────────────────────────────────────────
   11. SECTION DIVIDERS
   ───────────────────────────────────────────── */

.section-separator {
  height: 1px;
  background: var(--solarshield-border-light);
  margin: 0;
  border: none;
}

/* ─────────────────────────────────────────────
   12. UTILITY CLASSES
   ───────────────────────────────────────────── */

.text-solarshield-blue {
  color: var(--solarshield-blue) !important;
}

.text-solarshield-dark {
  color: var(--solarshield-text-dark) !important;
}

.text-solarshield-body {
  color: var(--solarshield-text-body) !important;
}

.text-white {
  color: white !important;
}

.bg-solarshield-page {
  background: var(--solarshield-bg-page) !important;
}

.bg-solarshield-dark {
  background: var(--solarshield-bg-dark) !important;
}

.bg-solarshield-white {
  background: white !important;
}

.mt-solarshield-sm {
  margin-top: 0.75rem;
}

.mt-solarshield-md {
  margin-top: 1.5rem;
}

.mt-solarshield-lg {
  margin-top: 2.5rem;
}

.mb-solarshield-sm {
  margin-bottom: 0.75rem;
}

.mb-solarshield-md {
  margin-bottom: 1.5rem;
}

.mb-solarshield-lg {
  margin-bottom: 2.5rem;
}

.pt-solarshield-xl {
  padding-top: var(--section-py);
}

.pb-solarshield-xl {
  padding-bottom: var(--section-py);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ─────────────────────────────────────────────
   13. SCROLL TO TOP BUTTON
   ───────────────────────────────────────────── */

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--solarshield-blue);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-base),
    background var(--transition-fast);
  box-shadow: 0 4px 16px rgba(155, 27, 27, 0.35);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  background: var(--solarshield-blue-hover);
}

/* ----------------------------------------------------
   HIGHLIGHT FEATURE SECTION (WHY SOLARSHIELD)
   ---------------------------------------------------- */
.highlight_feature-bg-dark {
  max-width: 1520.8px;
  margin-left: auto;
  margin-right: auto;
  min-height: 688px;
}

.highlight_feature-bg-dark .highlight_feature__eyebrow_text,
.highlight_feature-bg-dark .highlight_feature__feature_label,
.highlight_feature-bg-dark .highlight_feature__subheading,
.highlight_feature-bg-dark .highlight_feature__title {
  color: #fff;
}

.highlight_feature-bg-dark .highlight_feature__description p,
.highlight_feature-bg-dark .highlight_feature__description {
  color: #FFFFFFCC;
}

.highlight_feature__title {
  font-family: var(--font-heading);
  font-size: 50px;
  letter-spacing: -.175rem;
  line-height: 1;
  text-transform: uppercase;
}


/* ----------------------------------------------------
   PRODUCT OVERVIEW SECTION (WINDOW TINT VS PPF)
   ---------------------------------------------------- */
.cmp-product-overview {
  max-width: 1520.8px;
  margin-left: auto;
  margin-right: auto;
  min-height: 545.11px;
  background-color: #fff;
}

.cmp-product-overview__card {
  background-color: #f7f6f3;
}

.cmp-product-overview__title {
  color: var(--solarshield-blue);
  font-size: 24px;
  font-family: var(--font-primary); font-weight: 500;
}

.cmp-product-overview__description {
  color: #1B1919;
  font-size: 16px;
  font-family: var(--font-primary); font-weight: 300;
}

.cmp-product-overview__bullet-text {
  color: var(--solarshield-blue-dark);
  font-size: 16px;
  font-family: var(--font-primary); font-weight: 500;
  padding: 6px 0px;
}

/* ----------------------------------------------------
   HIGHLIGHT HEADING SECTION (EXPERIENCE OUR PREMIER AUTO TINT)
   ---------------------------------------------------- */
.highlight_heading {
  width: 1520.8px;
  height: 676.4px;
  margin-left: auto;
  margin-right: auto;
}

.highlight_heading__img {
  border-radius: 12px;
}

/* ----------------------------------------------------
   DESKTOP OVERRIDES FOR WHY CHOOSE US SECTIONS
   ---------------------------------------------------- */
@media (min-width: 992px) {
  /* Standard Product Pages (Titanium, Sunroof, etc.) */
  .about-highlight {
    align-items: stretch !important;
  }
  .about-highlight__media {
    display: flex;
    height: 100%;
    border-radius: 12px !important;
    overflow: hidden;
  }
  .about-highlight__media img {
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
  }
  
  .about-highlight__media video {
    max-height: 707px !important;
  }
  
  /* Zoom and pan the sunroof image specifically */
  #sunroof-highlight .about-highlight__media img {
    object-position: 30% center !important;
    transform: scale(1.15);
  }

  /* Windshield Product Page Specific */
  .wpf-showcase-inner {
    align-items: stretch !important;
  }
  .wpf-showcase-visual {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .wpf-img-frame {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
  }
  .wpf-img-frame img {
    height: 100% !important;
    width: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: right center !important;
    flex: 1;
  }

  /* Specifically restore Thermoshield image to center */
  #panel-thermoshield .wpf-img-frame img {
    object-position: center !important;
  }
}
