/* ======================================================
   CFL WATER TREATMENT — COMPLETE THEME STYLESHEET
   Premium Overlay Header • Global Hero Video
   Bubble Background • Glass UI • Puronics Branding
====================================================== */

/*
Theme Name: CFL Water Treatment
Theme URI: https://cleanfloridaliving.com
Author: CFL Water Treatment
Description: Premium Puronics-branded theme with global hero video, bubble background, floating overlay header, and tinted-glass sections.
Version: 3.3 — Financing bar below hero + unified hero sizing/alignment
Text Domain: cfl
*/

/* ======================================================
   BRAND VARIABLES
====================================================== */
:root {
  --puronics-blue: #0067B9;
  --puronics-blue-dark: #005A9E;

  --puronics-orange: #F59C1D;
  --puronics-orange-dark: #D88412;

  --white: #ffffff;
  --black: #000000;

  --text: #eaf3ff;

  --radius: 16px;
  --shadow: 0 12px 35px rgba(0,0,0,0.25);

  --tint: rgba(0,103,185,0.40);
}

/* ======================================================
   GLOBAL RESET
====================================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html,body {
  font-family: 'Inter', sans-serif;
  background: transparent !important;
  overflow-x: hidden;
  color: var(--text);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======================================================
   GLOBAL BUBBLES BACKGROUND VIDEO
====================================================== */
.bubbles-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
}
#bubbles-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

/* ======================================================
   PREMIUM OVERLAY HEADER
====================================================== */
.header-overlay {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: linear-gradient(
    rgba(0,0,0,0.62),
    rgba(0,0,0,0.25),
    rgba(0,0,0,0.10),
    rgba(0,0,0,0)
  );
  backdrop-filter: blur(14px) saturate(160%);
  transition: background .35s ease;
}
.header-overlay.scrolled {
  background: rgba(0,0,0,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.cfl-header { padding: 18px 0; }
.cfl-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cfl-logo img {
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.4));
}

.cfl-nav .cfl-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}
.cfl-nav .cfl-menu li a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.cfl-nav .cfl-menu li a:hover { opacity: 0.75; }

.cfl-header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cfl-phone { color: #fff; font-weight: 800; }
.cfl-phone a { color: var(--puronics-orange); }

.cfl-btn {
  background: var(--puronics-orange);
  padding: 10px 24px;
  border-radius: 100px;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: .25s;
}
.cfl-btn:hover { background: var(--puronics-orange-dark); }

/* ======================================================
   GLOBAL / HOME HERO VIDEO (UNIFIED)
====================================================== */
.hero,
.hero-global {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45vh;            /* match heights across pages */
  min-height: 340px;
  max-height: 500px;
  padding-top: 160px !important; /* clear fixed header */
  margin-bottom: 0;        /* so the bar can hug the hero */
}

.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 55%; /* same “slightly lower” framing everywhere */
  transform: translate(-50%, -50%);
  z-index: -2;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.45));
  z-index: -1;
}

.hero-global::before,
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 150px;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15),
    rgba(0,0,0,0)
  );
  z-index: 2;
  pointer-events: none;
}

.hero .inner,
.hero-global .inner {
  position: relative;
  text-align: center;
  z-index: 5;
  margin-top: 20px;
}

.headline {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.subheadline {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 300;
  color: #eef6ff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* hide global hero on homepage only */
.home .hero-global { display: none !important; }

/* Make the financing bar “attach” to either hero variant */
.hero + .financing-bar,
.hero-global + .financing-bar {
  position: relative;
  z-index: 10;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

/* ======================================================
   HOME PAGE — BLUE GLASS PANEL
====================================================== */
.home-faq-section {
  margin-top: 140px;
  margin-bottom: 140px;

  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px 50px;

  background: rgba(0,103,185,0.55);
  border-radius: 22px;
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
  backdrop-filter: blur(14px);
  padding: 40px;
}

.faq-content {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 26px 26px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.faq-content h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 22px;
  color: white;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

.faq-item { margin-bottom: 18px; }
.faq-title {
  width: 100%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 18px 22px;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
  cursor: pointer;
  transition: 0.25s ease;
}
.faq-title:hover {
  background: rgba(255,255,255,0.16);
}

.faq-list {
  display: none;
  padding: 16px 20px;
  margin-top: 10px;
  background: rgba(0,103,185,0.25);
  border-radius: 14px;
  color: #f1f5ff;
  line-height: 1.55;
}

.faq-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.32);
}

@media (max-width: 900px) {
  .home-faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-content h2 { font-size: 30px; }
  .faq-title { font-size: 16px; }
}

/* ======================================================
   FAQ PAGE
====================================================== */
.hero-faq { display: none !important; }

.faq-page.container {
  background: rgba(0,103,185,0.55);
  padding: 48px;
  border-radius: 22px;
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
  margin: 160px auto;
}

.faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.30);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 26px;
  text-align: left;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.25s;
}
.faq-question:hover {
  background: rgba(255,255,255,0.10);
}

.faq-answer {
  display: none;
  padding: 20px 26px;
  background: rgba(0,103,185,0.22);
  color: #f1f5ff;
  font-size: 17px;
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.18);
}

/* ======================================================
   SERVICES PAGE
====================================================== */
.hero-services { display: none !important; }

.services {
  max-width: 1100px;
  margin: 140px auto;
  padding: 50px;
  background: rgba(0,103,185,0.55);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  align-items: flex-start;
}

.service-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: 0.25s ease;
}
.service-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.10);
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
}

.service-item h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  border-left: 5px solid var(--puronics-orange);
  padding-left: 14px;
}

.service-item p {
  color: #f1f5ff;
  font-size: 18px;
  line-height: 1.7;
}

.service-btn {
  margin-top: 16px;
  padding: 12px 22px;
  background: var(--puronics-blue);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
}
.service-btn:hover { background: var(--puronics-blue-dark); }

.service-description-panel {
  background: rgba(0,103,185,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 22px;
  padding: 30px;
  min-height: 500px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.32);
}

.service-description { display: none; animation: fadeIn .35s ease; }
.service-description.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-description h3 {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 12px;
}

.service-description p { font-size: 17px; line-height: 1.6; }

.service-description ul { margin: 14px 0 18px; padding-left: 20px; }
.service-description ul li { margin-bottom: 6px; }

.service-description .service-img {
  width: 100%;
  border-radius: 18px;
  margin-top: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.32);
}

@media (max-width: 900px) {
  .services-layout { grid-template-columns: 1fr; }
}

/* ======================================================
   CTA STRIP
====================================================== */
.cta-strip {
  text-align: center;
  padding: 50px 0;
  margin-top: 80px;
}

.cta-strip h2 {
  font-size: 32px;
  color: white;
}

.btn-cta {
  display: inline-block;
  background: var(--puronics-orange);
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 800;
  color: white;
}
.btn-cta:hover {
  background: var(--puronics-orange-dark);
}

/* ======================================================
   FOOTER
====================================================== */
.cfl-footer {
  background: rgba(0,25,50,0.50);
  backdrop-filter: blur(14px) saturate(160%);
  padding-top: 56px;
  padding-bottom: 70px;
  margin-top: 100px;
  text-align: center;
  color: #e8f0ff;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
}

.footer-btn {
  display: block;
  padding: 16px 36px;
  border-radius: 14px;
  width: 100%;
  max-width: 440px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  transition: 0.25s ease-in-out;
}

.primary-btn {
  background: var(--puronics-blue);
  color: #fff;
}
.primary-btn:hover {
  background: var(--puronics-blue-dark);
}

.footer-privacy {
  margin: 30px auto 38px;
  display: flex;
  justify-content: center;
}

.secondary-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.secondary-btn:hover {
  background: rgba(255,255,255,0.25);
}

.footer-company {
  margin-top: 0;
  margin-bottom: 22px;
  line-height: 1.7;
}

.footer-divider {
  width: 100%;
  max-width: 980px;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 40px auto;
}

.footer-puronics {
  margin-top: 24px;
  margin-bottom: 16px;
}
.puronics-logo {
  width: 240px;
  margin: 0 auto 12px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.22);
}
.puronics-text {
  font-size: 15px;
  color: #dce7ff;
}

.footer-bottom {
  font-size: 14px;
  opacity: 0.75;
}

/* ======================================================
   CONTACT PAGE
====================================================== */
.contact-page {
  margin: 160px auto;
  padding: 48px;
  background: rgba(0,103,185,0.55);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
  text-align: center;
}

.contact-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
}

.contact-subtitle {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 40px;
  color: #eaf3ff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  align-items: center;
}

.contact-image-block img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.32);
}

.contact-info h2 {
  font-size: 30px;
  font-weight: 900;
  text-align: left;
  margin-bottom: 20px;
  color: #fff;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 20px;
  text-align: left;
  color: #f1f5ff;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-list a {
  color: #f1f5ff;
  font-weight: 700;
}

.contact-cta {
  margin-top: 28px;
  text-align: left;
}
.contact-quote-link {
  font-weight: 700;
  color: var(--puronics-orange);
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info h2 {
    text-align: center;
  }
  .contact-list {
    text-align: center;
  }
  .contact-list li {
    justify-content: center;
  }
}

/* ======================================================
   ABOUT PAGE
====================================================== */
.about-page {
  margin: 160px auto;
  padding: 48px;
  background: rgba(0,103,185,0.55);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
  color: #f1f5ff;
}

.about-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
  color: white;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
}

.about-subtitle {
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 40px;
  color: #eaf3ff;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
  align-items: center;
}

.about-image-block img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0,0,0,0.32);
}

.about-content {
  font-size: 18px;
  line-height: 1.7;
}

.about-section-title {
  font-size: 28px;
  font-weight: 900;
  color: white;
  margin-bottom: 18px;
  border-left: 5px solid var(--puronics-orange);
  padding-left: 14px;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.about-list li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

.about-list li::before {
  content: "•";
  color: var(--puronics-orange);
  font-size: 30px;
  position: absolute;
  left: 0;
  top: -5px;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-content,
  .about-section-title {
    text-align: center;
  }
}

/* ======================================================
   PRODUCTS PAGE — MATCHED TO THEME
====================================================== */

.products-page {
  margin: 160px auto;
  padding: 48px;
  background: rgba(0,103,185,0.55);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
  color: #f1f5ff;
  text-align: center;
}

.products-title {
  font-size: 42px;
  font-weight: 900;
  color: white;
  text-shadow: 0 4px 18px rgba(0,0,0,0.5);
  margin-bottom: 10px;
}

.products-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: #eaf3ff;
  margin-bottom: 40px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.product-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  text-align: center;
}

.product-card img {
  width: 100%;
  max-width: 260px;
  border-radius: 18px;
  margin: 0 auto 15px;
}

.slider img {
  display: none;
}
.slider img.active {
  display: block;
}

.slider-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.slider-btn,
.btn-toggle {
  background: var(--puronics-blue);
  color: #fff;
  font-weight: 800;
  border: none;
  border-radius: 999px;
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0,0,0,0.25);
  transition: 0.25s ease;
}
.slider-btn:hover,
.btn-toggle:hover {
  background: var(--puronics-blue-dark);
}

.product-card h2 {
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin: 20px 0;
}

.info-box {
  display: none;
  font-size: 16px;
  color: #f1f5ff;
  text-align: left;
  margin-top: 20px;
  line-height: 1.6;
}

.info-box ul {
  margin: 14px 0 18px;
  padding-left: 20px;
}
.info-box ul li {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .product-card h2 {
    font-size: 22px;
  }
}

/* ======================================================
   PRIVACY POLICY PAGE — MATCHED THEME STYLE
====================================================== */

.privacy-page {
  margin: 160px auto;
  padding: 48px;
  background: rgba(0,103,185,0.55);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
  color: #f1f5ff;
  max-width: 1100px;
}

.privacy-title {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

.privacy-subtitle {
  font-size: 18px;
  color: #eaf3ff;
  text-align: center;
  margin-bottom: 40px;
}

.privacy-content {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
  line-height: 1.7;
  font-size: 17px;
}

.privacy-content h2 {
  font-size: 30px;
  font-weight: 900;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #fff;
  border-left: 5px solid var(--puronics-orange);
  padding-left: 14px;
}

.privacy-content h3 {
  font-size: 22px;
  font-weight: 800;
  margin-top: 24px;
  margin-bottom: 10px;
  color: #fff;
}

.privacy-content ul {
  margin: 14px 0 18px;
  padding-left: 22px;
}

.privacy-content ul li {
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .privacy-content {
    padding: 24px;
  }
  .privacy-title {
    font-size: 34px;
  }
  .privacy-content h2 {
    font-size: 26px;
  }
  .privacy-content h3 {
    font-size: 20px;
  }
}

/* ======================================================
   FINANCING ANNOUNCEMENT BAR (BELOW HERO)
====================================================== */
.financing-bar {
  width: 100%;
  background: rgba(0,103,185,0.85); /* Puronics Blue Glass */
  color: #ffffff;
  text-align: center;
  padding: 12px 18px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3px;
  backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  z-index: 10;
  position: relative;
  text-shadow: 0 3px 10px rgba(0,0,0,0.35);
}

@media (max-width: 700px) {
  .financing-bar {
    font-size: 16px;
    padding: 10px 14px;
  }
}

/* ======================================================
   FAQ PAGE — PREMIUM UPGRADE (BLUE GLASS + ORANGE ACCENTS)
====================================================== */

.faq-page.container {
  margin-top: 160px;
  margin-bottom: 160px;
  padding: 60px 50px;
  max-width: 900px;
  background: rgba(0,103,185,0.65);
  border-radius: 26px;
  backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 28px 55px rgba(0,0,0,0.38);
}

/* Title + Subtitle */
.faq-title {
  font-size: 46px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.55);
}

.faq-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: #e9f3ff;
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Individual FAQ cards */
.faq-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.30);
  transition: 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.10);
}

/* Question button */
.faq-question {
  width: 100%;
  background: rgba(0,103,185,0.35);
  border: none;
  padding: 20px 26px;
  text-align: left;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  position: relative;
  transition: background 0.25s ease;
  border-left: 6px solid var(--puronics-orange);
}

.faq-question:hover {
  background: rgba(0,103,185,0.55);
}

/* Answer panel */
.faq-answer {
  display: none;
  padding: 20px 26px 26px;
  background: rgba(0,103,185,0.25);
  color: #f1f5ff;
  font-size: 17px;
  line-height: 1.7;
  animation: faqFade 0.35s ease;
  border-top: 1px solid rgba(255,255,255,0.18);
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive refinements */
@media (max-width: 700px) {
  .faq-page.container {
    padding: 40px 22px;
  }
  .faq-title {
    font-size: 34px;
  }
  .faq-question {
    font-size: 18px;
  }
  .faq-answer {
    font-size: 16px;
  }
}

/* ======================================================
   FIX — HOME PAGE FAQ TEXT OVERRIDES
   Ensures home page fonts stay clean + bold as designed
====================================================== */

/* Scope everything to the home page ONLY */
.home .home-faq-section h2 {
  font-family: 'Inter', sans-serif;
  font-size: 36px !important;
  font-weight: 900 !important;
  line-height: 1.25;
  color: #ffffff !important;
}

.home .faq-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.home .faq-list {
  font-family: 'Inter', sans-serif !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  color: #f1f5ff !important;
}

/* ======================================================
   GIFT CARD POPUP (GLOBAL)
====================================================== */
body.cfl-lock { overflow: hidden; }

.cfl-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 10, 25, 0.65);
  backdrop-filter: blur(2px);
  z-index: 10000; /* above header-overlay (999) */
}

.cfl-popup {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 10001;
}

.cfl-popup::before {
  content: "";
  position: absolute;
  inset: 0;
}

.cfl-popup .cfl-popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
}

.cfl-popup .cfl-popup-close:hover { opacity: 1; }

#cfl-popup {
  max-width: 640px;
  width: 100%;
  background: rgba(0,103,185,0.85); /* Puronics blue glass */
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  padding: 28px 26px 22px;
  color: #fff;
  text-align: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.cfl-popup-title {
  font-size: 24px;
  font-weight: 900;
  margin: 0 16px 10px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

.cfl-popup-terms {
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.9;
  margin: 8px 8px 18px;
}

.cfl-popup-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 6px;
}

.cfl-popup-btn-primary,
.cfl-popup-btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
}

.cfl-popup-btn-primary {
  background: var(--puronics-orange);
  color: #fff;
}
.cfl-popup-btn-primary:hover {
  background: var(--puronics-orange-dark);
}

.cfl-popup-btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
.cfl-popup-btn-secondary:hover {
  background: rgba(255,255,255,0.25);
}

@media (max-width: 560px) {
  #cfl-popup { padding: 22px 18px 18px; }
  .cfl-popup-title { font-size: 20px; }
  .cfl-popup-buttons { flex-direction: column; }
}

/* ======================================================
   GIFT CARD POPUP (GLOBAL) – NEW VERSION
====================================================== */
.cfl-no-scroll { overflow: hidden; }

.cfl-offer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 21, 40, 0.55);
  backdrop-filter: blur(4px);
  z-index: 999998;
}

.cfl-offer-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 92vw);
  background: rgba(0,103,185,0.88); /* Puronics blue glass */
  color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.45);
  padding: 28px 26px 24px;
  text-align: center;
  z-index: 999999;
  border: 1px solid rgba(255,255,255,0.25);
}

.cfl-offer-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.08);
  pointer-events: none;
}

.cfl-offer-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 22px;
  line-height: 32px;
  cursor: pointer;
}
.cfl-offer-close:hover { background: rgba(255,255,255,0.25); }

.cfl-offer-eyebrow {
  margin-top: 6px;
  margin-bottom: 10px;
  font-weight: 900;
  letter-spacing: 0.4px;
  font-size: 22px;
  text-shadow: 0 3px 12px rgba(0,0,0,0.35);
  border-top: 3px solid #295BDD;
  padding-top: 8px;
}

.cfl-offer-copy {
  font-size: 18px;
  margin: 6px 0 16px;
}
.cfl-offer-copy strong { font-weight: 900; }

.cfl-offer-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin: 6px 0 12px;
  flex-wrap: wrap;
}

.cfl-offer-primary,
.cfl-offer-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.cfl-offer-primary {
  background: #295BDD;
  color: #fff;
  border: none;
}
.cfl-offer-primary:hover { filter: brightness(1.05); }

.cfl-offer-secondary {
  background: #eef2ff;
  color: #0b1320;
  border: 2px solid #0b1320;
}
.cfl-offer-secondary:hover { background: #fff; }

.cfl-offer-terms {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.35;
  color: #eaf3ff;
  opacity: 0.95;
}

@media (max-width: 480px) {
  .cfl-offer-modal { padding: 22px 18px 18px; }
  .cfl-offer-eyebrow { font-size: 20px; }
  .cfl-offer-copy { font-size: 16px; }
  .cfl-offer-primary, .cfl-offer-secondary { width: 100%; text-align: center; }
}

/* ======================================================
   REVIEWS PAGE – CFL WATER TREATMENT
====================================================== */

.reviews-page {
  margin: 160px auto;
  padding: 48px;
  background: rgba(0,103,185,0.55);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.35);
  color: #f1f5ff;
  text-align: center;
}

.reviews-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 40px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  text-align: center;
}

.review-stars {
  font-size: 24px;
  font-weight: 900;
  color: var(--puronics-orange);
  margin-bottom: 12px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.review-text {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 14px;
  color: #f1f5ff;
}

.review-name {
  font-size: 16px;
  font-weight: 700;
  opacity: 0.9;
}

.reviews-cta {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.22);
}

.reviews-cta h2 {
  font-size: 32px;
  font-weight: 800;
}

.reviews-btn {
  display: inline-block;
  margin-top: 16px;
  background: var(--puronics-orange);
  padding: 14px 32px;
  border-radius: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

.reviews-btn:hover {
  background: var(--puronics-orange-dark);
}

/* ================================
   BLOG PAGE – CFL WATER TREATMENT
   (NEW LAYOUT – NO HERO, SIDE IMAGE)
================================ */

/* Header section with title + side image */
.blog-header {
  margin-top: 160px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.blog-page-title {
  font-size: 48px;
  font-weight: 900;
  color: #0b2a45;
  text-shadow: none;
}

.blog-page-subtitle {
  font-size: 18px;
  color: #233f5f;
  margin-top: 10px;
}

.blog-header-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
}

/* Blog list wrapper */
.blog-page {
  margin-bottom: 140px;
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 40px;
}

/* Card */
.blog-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(0,0,0,0.15);
}

/* Thumbnail */
.blog-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.blog-content {
  padding: 24px;
  color: #0A2239;
}

/* Text colors fixed dark */
.blog-title a {
  font-size: 22px;
  font-weight: 900;
  color: #0A2239;
  text-shadow: none;
}

.blog-meta {
  font-size: 14px;
  opacity: 0.8;
  margin: 6px 0 12px;
  color: #0A2239;
}

.blog-excerpt {
  color: #0A2239;
  font-size: 16px;
  margin-bottom: 16px;
}

.blog-readmore {
  font-weight: 800;
  color: var(--puronics-orange);
}

/* Pagination */
.blog-pagination {
  text-align: center;
  margin-top: 30px;
}

.blog-pagination a {
  padding: 8px 14px;
  margin: 4px;
  background: rgba(0,0,0,0.10);
  border-radius: 6px;
  color: #0A2239;
  font-weight: 700;
}

.blog-pagination .current {
  background: var(--puronics-orange);
  color: #ffffff !important;
}

/* Responsive tweaks for blog header */
@media (max-width: 900px) {
  .blog-header {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* =======================================
   FIX BLOG PAGE TOP SPACING
======================================= */
.blog-page-active .hero-global,
.blog-page-active .hero {
    display: none !important;
}

.blog-page-active .blog-header {
    margin-top: 60px !important;
}

.blog-page-active .blog-page {
    margin-top: 40px !important;
    padding-top: 0 !important;
}

.blog-page-active .financing-bar {
    margin-top: 0 !important;
}

.blog-page-active .site-content,
.blog-page-active main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}
/* ======================================================
   CFL FORMS – UNIFIED STYLING
====================================================== */

.form-page {
  margin: 160px auto;
  padding: 48px;
  background: rgba(0,103,185,0.80);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.45);
  max-width: 560px;      /* tall, not fat */
  width: 100%;
  color: #ffffff;
}

.form-title {
  font-size: 42px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.form-subtitle {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: #eaf3ff;
}

.cfl-form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #fff;
}

.cfl-form input,
.cfl-form select,
.cfl-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 16px;
  outline: none;
}

.cfl-form select[multiple] {
  height: 130px;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.form-submit {
  margin-top: 32px;
  width: 100%;
  padding: 16px;
  background: var(--puronics-blue);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.form-submit:hover {
  background: var(--puronics-blue-dark);
}

#form-success {
  background: rgba(0, 180, 60, 0.25);
  border: 1px solid rgba(0,255,120,0.4);
  padding: 16px;
  color: #d6ffe1;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
