/* =============================================================
   SOLARSHIELD — COMPONENTS CSS
   components.css
   Reusable UI components: buttons, cards, badges, nav, etc.
   ============================================================= */

/* ─────────────────────────────────────────────
   1. BUTTONS
   ───────────────────────────────────────────── */

/* Primary filled red pill button — exact solarshield-hero-btn values */
.btn-solarshield {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--btn-padding);         /* 0.75rem 1.5rem (exact) */
  background: var(--btn-bg);           /* var(--solarshield-blue) (exact) */
  color: var(--btn-color);
  font-family: var(--font-primary);
  font-size: var(--btn-font-size);     /* 0.875rem (exact) */
  font-weight: var(--btn-font-weight);
  letter-spacing: var(--btn-letter-spacing);
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: var(--btn-radius);    /* 1.5625rem = 25px (exact) */
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
  transition: background var(--transition-fast),
              transform 0.2s ease,
              box-shadow 0.2s ease;
}

.btn-solarshield:hover {
  background: var(--btn-bg-hover);     /* var(--solarshield-blue-dark) (exact) */
  color: var(--btn-color);
  text-decoration: none;
}

.btn-solarshield:focus-visible {
  outline: 3px solid var(--btn-bg);
  outline-offset: 3px;
}

/* Outline variant */
.btn-solarshield-outline {
  background: transparent;
  color: var(--btn-bg);
  border: 2px solid var(--btn-bg);
}

.btn-solarshield-outline:hover {
  background: var(--btn-bg);
  color: var(--btn-color);
}

/* White variant (on dark bg) */
.btn-solarshield-white {
  background: var(--solarshield-bg-white);
  color: var(--btn-bg);
  border: none;
}

.btn-solarshield-white:hover {
  background: #f0f0f0;
  color: var(--btn-bg-hover);
}

/* Arrow icon inside button */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-style: normal;
  line-height: 1;
}

/* Navbar CTA button */
.btn-solarshield-nav {
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
}

/* ─────────────────────────────────────────────
   2. SECTION LABEL / BADGE
   ───────────────────────────────────────────── */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: #f4f4f4; /* Lighter grey matching original */
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 700; /* Bolder */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--solarshield-text-heading); /* Matching theme heading */
  text-decoration: none;
}

.section-label .label-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.section-label-icon {
  font-size: 1rem;
  color: var(--solarshield-blue);
}

/* ─────────────────────────────────────────────
   3. RED HORIZONTAL DIVIDER
   ───────────────────────────────────────────── */

.red-rule {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--solarshield-blue);
  border: none;
  margin: 0;
}

/* Short version */
.red-rule-short {
  width: 60px;
}

/* ─────────────────────────────────────────────
   4. SECTION HEADING TYPOGRAPHY
   ───────────────────────────────────────────── */

/* Big uppercase section heading (red) — exact pathways_v4__section_heading values */
.section-heading-red {
  font-family: var(--font-heading);         /* termina substitute */
  font-size: var(--fs-section-title);       /* 2.5rem (exact) */
  font-weight: var(--fw-medium);            /* 500 (exact) */
  color: var(--solarshield-text-heading);        /* var(--solarshield-blue-dark) (exact) */
  text-transform: uppercase;               /* uppercase (exact) */
  line-height: var(--lh-section);          /* 1.1 (exact) */
  letter-spacing: var(--ls-section);       /* -0.125rem (exact) */
  margin: 0;
}

/* Section sub-heading (dark) */
.section-subheading {
  font-family: var(--font-condensed);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: var(--fw-bold);
  color: var(--solarshield-text-dark);
  line-height: var(--lh-tight);
  margin: 0;
}

/* Section body text — exact cmp-showCase__description values */
.section-body {
  font-family: var(--font-primary);       /* sofia-pro substitute */
  font-size: var(--fs-body);              /* 1rem (exact) */
  font-weight: var(--fw-thin);            /* 100 (exact from SolarShield) */
  color: var(--solarshield-text-body);         /* #1a1818 (exact) */
  line-height: var(--lh-body);
  margin: 0;
}

/* ─────────────────────────────────────────────
   5. PRODUCT FEATURE CARDS
   ───────────────────────────────────────────── */

.product-card {
  background: var(--solarshield-bg-card-light);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Card title (red link with arrow) */
.product-card__title {
  font-family: var(--font-primary);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: var(--fw-semibold);
  color: var(--solarshield-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.product-card__title:hover {
  color: var(--solarshield-blue-hover);
  text-decoration: none;
}

.product-card__title .card-arrow {
  font-size: 1rem;
  display: inline-block;
  transition: transform var(--transition-fast);
}

.product-card__title:hover .card-arrow {
  transform: translateX(4px);
}

/* Card description */
.product-card__desc {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--solarshield-text-body);
  line-height: var(--lh-loose);
  margin: 0;
}

/* Feature check list inside card */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--solarshield-text-body);
  line-height: 1.4;
}

.feature-list .check-icon {
  color: var(--solarshield-blue);
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ─────────────────────────────────────────────
   6. EXPERTISE / PATHWAY CARDS
   ─────────────────────────────────────────────
   Styles are managed in style.css — no overrides needed here.
   ───────────────────────────────────────────── */


/* ─────────────────────────────────────────────
   7. SPLIT SECTION (image + content)
   ───────────────────────────────────────────── */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section.reverse {
  grid-template-areas: "content image";
}

.split-section.reverse .split-content { grid-area: content; }
.split-section.reverse .split-image   { grid-area: image; }

.split-image {
  overflow: hidden;
  border-radius: var(--img-radius);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--img-radius);
}

/* ─────────────────────────────────────────────
   8. BULLET ICON LIST (Architectural Section)
   ───────────────────────────────────────────── */

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--solarshield-text-body);
  line-height: 1.4;
}

.icon-list .list-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--solarshield-blue);
  font-size: 1.1rem;
}

/* ─────────────────────────────────────────────
   9. WHY SOLARSHIELD ICON GRID
   ───────────────────────────────────────────── */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2rem;
  column-gap: 1.5rem;
}

.why-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.why-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: invert(1); /* White icons on dark bg */
}

.why-icon-label {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--solarshield-text-white);
  line-height: 1.3;
}

/* ─────────────────────────────────────────────
   10. FOOTER SEARCH
   ───────────────────────────────────────────── */

.footer-search-form {
  position: relative;
  width: 100%;
}

.footer-search-input {
  width: 100%;
  height: 58px;
  padding: 0 4rem 0 1.5rem;
  background: transparent;
  border: 1px solid var(--solarshield-blue);
  border-radius: 50px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--solarshield-text-dark);
  outline: none;
  transition: border-color var(--transition-fast);
}

.footer-search-input::placeholder {
  color: var(--solarshield-text-light);
}

.footer-search-input:focus {
  border-color: var(--solarshield-blue);
}

.footer-search-btn {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--solarshield-blue);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* AJAX Search Dropdown */
.ajax-search-results {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  overflow: hidden;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  max-height: 300px;
  overflow-y: auto;
}

.ajax-search-results.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ajax-search-item,
.ajax-search-no-result {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--solarshield-text-body);
  text-decoration: none;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease, color 0.2s ease;
}

.ajax-search-item:last-child,
.ajax-search-no-result:last-child {
  border-bottom: none;
}

.ajax-search-item:hover,
.ajax-search-item:focus {
  background: #f8fafc;
  color: var(--solarshield-blue);
}

.ajax-search-no-result {
  color: var(--solarshield-text-light);
  font-style: italic;
}

/* ─────────────────────────────────────────────
   11. SOCIAL ICONS
   ───────────────────────────────────────────── */

.social-list {
  display: flex;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: transparent;
  color: var(--solarshield-blue); /* Red icon */
  font-size: 1.25rem;
  text-decoration: none;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.social-link:hover {
  color: var(--solarshield-blue-dark); /* Darker red on hover */
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────
   12. NAVBAR COMPONENTS
   ───────────────────────────────────────────── */

/* Primary nav link */
.nav-primary-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--solarshield-text-dark);
  background: none;
  border: none;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.nav-primary-link:hover {
  color: var(--solarshield-blue);
}

.nav-primary-link .nav-chevron {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
}

.nav-item-has-mega:hover .nav-chevron,
.nav-item-has-mega.active .nav-chevron,
.nav-item-dropdown:hover .nav-chevron,
.nav-item-dropdown.active .nav-chevron {
  transform: rotate(180deg);
}

/* ─────────────────────────────────────────────
   12a. STANDARD DROPDOWN MENU (Redesign)
   ───────────────────────────────────────────── */

.navbar-menu > .nav-item-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.navbar-menu > .nav-item-dropdown.nav-item-has-mega {
  position: static;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #FFFFFF;
  border-top: 3px solid var(--solarshield-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  pointer-events: none;
  display: block;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.active .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
  pointer-events: auto;
}

.dropdown-menu li {
  margin: 0;
  padding: 0;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--solarshield-text-body);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background-color: #f8fafc; /* Very light blue/grey hover */
  color: var(--solarshield-blue);
}

.dropdown-icon {
  width: 20px;
  margin-right: 12px;
  color: var(--solarshield-text-light);
  font-size: 1.1rem;
  text-align: center;
  transition: color 0.2s ease;
}

.dropdown-menu a:hover .dropdown-icon,
.dropdown-menu a:focus .dropdown-icon {
  color: var(--solarshield-blue);
}

/* 3rd Level Sub-Dropdown Menu */
.nav-subitem-dropdown {
  position: relative;
}

.sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 280px;
  background: #FFFFFF;
  border-top: 3px solid var(--solarshield-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 8px 8px 8px;
  padding: 0.5rem 0;
  margin: 0;
  list-style: none;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  pointer-events: none;
  display: block;
}

.nav-subitem-dropdown:hover > .sub-dropdown-menu,
.nav-subitem-dropdown:focus-within > .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0s;
  pointer-events: auto;
}

.sub-dropdown-menu li { margin: 0; padding: 0; }

.sub-dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--solarshield-text-body);
  text-decoration: none;
  transition: all 0.2s ease;
}

.sub-dropdown-menu a:hover,
.sub-dropdown-menu a:focus {
  background-color: #f8fafc;
  color: var(--solarshield-blue);
}

/* Mega menu container */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--solarshield-bg-white);
  border-top: 3px solid var(--solarshield-blue);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 2rem 0;
  z-index: var(--z-dropdown);
}

/* Mega menu link */
.mega-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--solarshield-text-body);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.mega-link:hover {
  color: var(--solarshield-blue);
}

.mega-link-arrow {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Mega column title */
.mega-col-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  color: var(--solarshield-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.mega-col-title:hover {
  color: var(--solarshield-blue-hover);
}

.mega-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mega-group-title {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--solarshield-text-light);
  margin-bottom: 0.6rem;
  margin-top: 1.25rem;
}

.mega-group-title:first-child {
  margin-top: 0;
}

/* ─────────────────────────────────────────────
   12b. ADVANCED MEGA MENU (Products Tab)
   ───────────────────────────────────────────── */

.navbar-solarshield .mega-adv-wrapper {
  background: transparent;
  box-shadow: none !important;
  border: none;
  border-top: 3px solid var(--solarshield-blue);
  /* Use 0 padding to prevent double-padding from .mega-menu */
  padding: 0;
  /* Pull it flush with the navbar */
  margin-top: -4px !important;
  /* Apply realistic drop-shadow to the wrapper so the clipped pseudo-element casts a shadow */
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.08));
}

.navbar-solarshield .mega-adv-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 245, 249, 0.96) 50%, rgba(226, 232, 240, 0.98) 100%);
  
  /* Slant upwards to the right and preserve the bottom-left corner */
  border-bottom-left-radius: 40px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  
  z-index: -1;
}

.mega-adv-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  /* Proper spacing: eliminated double padding to remove the huge white gap */
  padding: 1.5rem var(--container-px-lg) 4.5rem var(--container-px-lg);
  display: flex;
  gap: 3rem;
}

.mega-adv-category {
  flex: 1;
}

.mega-adv-category-title {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  color: var(--solarshield-text-heading);
  text-transform: uppercase;
  border-bottom: 2px solid var(--solarshield-blue);
  padding-bottom: 0.75rem;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.mega-adv-columns {
  display: flex;
  gap: 3rem;
}

.mega-adv-col {
  flex: 1;
}

.mega-adv-sub-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--solarshield-blue);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.mega-adv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mega-adv-list a {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: var(--solarshield-text-dark);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.mega-adv-list a:hover {
  color: var(--solarshield-blue);
}

/* ─────────────────────────────────────────────
   13. LANGUAGE SELECTOR
   ───────────────────────────────────────────── */

.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: var(--fs-nav);
  font-weight: var(--fw-semibold);
  color: var(--solarshield-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: var(--solarshield-bg-page); /* Beige background */
  border: none;
  border-radius: 20px; /* Pill shape */
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.lang-selector i {
  color: var(--solarshield-blue);
  font-size: 1.1rem;
}

.lang-selector:hover {
  background: #e2dfd6; /* Slightly darker beige on hover */
  color: var(--solarshield-blue);
}

/* ─────────────────────────────────────────────
   14. SEARCH OVERLAY
   ───────────────────────────────────────────── */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: var(--z-search);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: var(--navbar-height);
}

.search-overlay-inner {
  width: 100%;
  max-width: 700px;
  margin-top: 2rem;
  padding: 0 1.5rem;
}

.search-overlay-form {
  position: relative;
  display: flex;
  background: var(--solarshield-bg-white);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.search-overlay-input {
  flex: 1;
  height: 56px;
  padding: 0 1.5rem;
  border: none;
  outline: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--solarshield-text-dark);
  background: transparent;
}

.search-overlay-submit {
  width: 56px;
  height: 56px;
  background: var(--solarshield-blue-medium);
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.search-overlay-submit:hover {
  background: var(--solarshield-blue-hover);
}

.search-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.5rem;
}

/* ─────────────────────────────────────────────
   15. FOOTER NAV
   ───────────────────────────────────────────── */

.footer-nav-heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--solarshield-text-heading);
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav-link {
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: var(--solarshield-text-body);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-nav-link:hover {
  color: var(--solarshield-blue);
}

/* ─────────────────────────────────────────────
   16. COOKIE CONSENT BANNER
   ───────────────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1B3A6B;
  color: white;
  padding: 1.25rem 2rem;
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  line-height: 1.5;
  transform: translateY(0);
  transition: transform var(--transition-slow);
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-banner a {
  color: #7ab3f0;
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: var(--fw-semibold);
  cursor: pointer;
  border: 1.5px solid white;
  background: transparent;
  color: white;
  white-space: nowrap;
  transition: background var(--transition-fast);
  font-family: var(--font-primary);
}

.cookie-btn:hover {
  background: rgba(255,255,255,0.15);
}

.cookie-btn.primary {
  background: white;
  color: #1B3A6B;
}

.cookie-btn.primary:hover {
  background: #e8e8e8;
}

/* ─────────────────────────────────────────────
   16. TESTIMONIAL SLIDER
   ───────────────────────────────────────────── */
.testimonial-section {
  padding: 3rem 0;
  background-color: var(--solarshield-bg-page, #fff);
}

.testimonial-container {
  max-width: 1520.8px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}

.testimonial-heading {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 400;
  color: var(--solarshield-text-heading);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

.testimonial-swiper {
  width: 100%;
  padding-bottom: 4rem; /* Space for pagination/navigation */
}

.testimonial-swiper .swiper-slide {
  height: auto; /* Stretches cards to same height */
}

.testimonial-card {
  background: var(--solarshield-bg-card-light, #f8f9fa);
  border-radius: 12px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
  color: var(--solarshield-blue, #004D77);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-text {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--solarshield-text-body);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--solarshield-text-heading);
}

/* Custom Navigation Buttons */
.testimonial-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.testimonial-arrows {
  display: flex;
  gap: 1rem;
}

.testi-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--solarshield-border-light);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--solarshield-blue);
  transition: all 0.3s ease;
}

.testi-arrow:hover {
  background: var(--solarshield-blue);
  color: #fff;
  border-color: var(--solarshield-blue);
}

.testi-arrow.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ----------------------------------------------------
   WHATSAPP FLOATING BUTTON
   ---------------------------------------------------- */
@keyframes whatsappEntrance {
  0% { opacity: 0; transform: translateY(50px) scale(0.5); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes whatsappPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: whatsappEntrance 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, whatsappPulse 2s infinite 1s;
}

.whatsapp-float-btn:hover {
  background-color: #128c7e;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    width: 48px;
    height: 48px;
    font-size: 26px;
    bottom: 2rem;
    left: 1.5rem;
  }
}
