/* ============================================================
   Wales Water Heaters — Main Stylesheet
   Modern, fully responsive
   ============================================================ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --color-primary:    #012169;   /* Wales Navy Blue */
  --color-accent:     #C8102E;   /* Wales Red */
  --color-accent-dark:#a00d25;
  --color-dark:       #111827;
  --color-dark2:      #1f2937;
  --color-white:      #ffffff;
  --color-light:      #f4f6fb;
  --color-gray:       #6b7280;
  --color-border:     #e5e7eb;
  --color-text:       #374151;

  --font-main:  'Lato', 'Cairo', sans-serif;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  50px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.18);

  --transition: all .35s cubic-bezier(.4,0,.2,1);
  --header-h:   90px;
}

/* ─── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

html { overflow-x: hidden; }

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  direction: ltr;
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; }

/* ─── Container ─────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid var(--color-accent);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid var(--color-white);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── Section Header ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-badge {
  display: inline-block;
  background: rgba(200,16,46,.1);
  color: var(--color-accent);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  margin-bottom: 14px;
}
.section-badge.light {
  background: rgba(255,255,255,.15);
  color: var(--color-white);
}
.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-header p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--color-gray);
  font-size: .97rem;
}

/* ═══════════════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════════════ */
.top-bar {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: .82rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.top-bar-center {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}
.top-bar span {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: .9;
  white-space: nowrap;
}
.top-bar a { color: var(--color-white); }
.top-bar a:hover { opacity: .75; }

/* Search box */
.top-search {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 30px;
  width: 220px;
}
.top-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 14px;
  font-size: .82rem;
  color: var(--color-dark);
  font-family: var(--font-main);
  height: 100%;
}
.top-search input::placeholder { color: var(--color-gray); }
.top-search button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  padding: 0 12px;
  font-size: .82rem;
  height: 100%;
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.top-search button:hover { color: var(--color-accent); }

/* Social icons in top bar */
.top-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--color-white);
  transition: var(--transition);
}
.top-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════ */
.site-header {
  
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.logo img {
    padding: 1vw;
    height: 85px;
    width: auto;
}

/* Nav + CTA grouped on the right */
.header-right {
  display: flex;
  align-items: center;
  gap: 100px;
  margin-left: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  transform: scaleX(0);
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: transform .3s ease;
  transform-origin: left;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}
/* CTA button — navy, rounded rectangle */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .92rem;
  border: 2px solid var(--color-primary);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-cta:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,.3);
}
.header-cta { font-size: .88rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════════════════ */



#hero { position: relative; overflow: hidden; }
.heroSwiper {
  width: 100%;
  height: 90vh;
  max-height: 750px;
  min-height: 500px;
}
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.52) 55%, rgba(0,0,0,.18) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8%;
  max-width: 100%;
  color: var(--color-white);
  text-align: center;
}

.slide-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  width: fit-content;
}
.slide-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 18px;
}
.slide-content h1 span { color: var(--color-accent); }
.slide-desc {
  font-size: 1.05rem;
  opacity: .9;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.7;
}
.slide-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero slide CTA buttons */
.btn-slide-contact {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 13px 34px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: 2px solid var(--color-primary);
  transition: var(--transition);
  cursor: pointer;
}
.btn-slide-contact:hover {
  background: #001650;
  border-color: #001650;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1,33,105,.45);
}
.btn-slide-services {
  display: inline-flex;
  align-items: center;
  background: var(--color-white);
  color: var(--color-primary);
  padding: 13px 34px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  border: 2px solid var(--color-white);
  transition: var(--transition);
}
.btn-slide-services:hover {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Swiper pagination & nav */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  color: var(--color-white);
  background: rgba(255,255,255,.15);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  transition: var(--transition);
}
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after { display: none; }
.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover { background: var(--color-accent); border-color: var(--color-accent); }
.heroSwiper .swiper-pagination-bullet { background: var(--color-white); opacity: .5; }
.heroSwiper .swiper-pagination-bullet-active { background: var(--color-accent); opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   FEATURES BAR
═══════════════════════════════════════════════════════════ */
.features-bar {
  background: var(--color-white);
  padding: 0;
  margin-top:4vw;
}
.feature-body{
  text-align: center;
}
.features-inner {
  background: var(--color-primary);
  border-radius: 6px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.feature-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 24px 38px;
  color: var(--color-white);
  transition: var(--transition);
}
.feature-item:hover { background: rgba(255,255,255,.05); }
.feature-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.feature-body h3 {
  font-size: 35px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: 6px;
}
.feature-body p {
  font-size: 15px;
  color: rgba(255, 255, 255, 1);
  line-height: 1.55;
}
.feature-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  align-self: stretch;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--color-primary);
  padding: 0;
}
.stats-inner {
  display: flex;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  color: var(--color-white);
  transition: var(--transition);
}
.stat-item:hover { background: rgba(255,255,255,.06); }
.stat-item img { width: 48px; height: 48px; object-fit: contain; flex-shrink: 0; }
.stat-item h3 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-accent);
}
.stat-item p {
  font-size: .85rem;
  opacity: .8;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stat-divider {
  width: 1px;

  background: rgba(255,255,255,.12);
  align-self: stretch;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════════ */
.services-section {
  background: #f6f6f6;
  padding: 90px 0;
}

/* Section header */
.svc-header {
  text-align: center;
  margin-bottom: 56px;
}
.svc-label {
  font-size: 20px;
  font-weight: 400;
  color: #1f2a44;
  margin-bottom: 14px;
}
.svc-header h2 {
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 auto;
  line-height: 1.5;
}

/* Cards grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.service-card {
  text-align: center;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); }

/* Image + overlapping icon */
.service-img {
  position: relative;
  height: 220px;
  overflow: visible;
  margin-bottom: 56px;
}
.service-img > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform .5s ease;
}

.service-icon-circle img{
    height: 60px;
    width: 60px;
}
.service-card:hover .service-img > img { transform: scale(1.04); }
.service-icon-circle {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 88px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(1,33,105,.3);
  z-index: 2;
}

/* Title */
.service-title {
    width: 280px;
  display: block;
  margin: 0 auto;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    line-height: 1.5;
    padding: 0 12px;
  text-decoration: none;
}
#first-title{
    padding-left: 3vw;
    width: 240px;
}

/* ═══════════════════════════════════════════════════════════
   TRUSTED SECTION
═══════════════════════════════════════════════════════════ */
.trusted-section {
  background: #ffffff;
  padding: 90px 0;
}
.trusted-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.trusted-label {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 18px;
  letter-spacing: .02em;
}
.trusted-heading {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 28px;
}
.trusted-desc {
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.8;
  margin-bottom: 20px;
}
.trusted-cards {
  display: flex;
  gap: 16px;
  margin-top: 36px;
}
.trusted-card {
  flex: 1;
  min-width: 0;
  background: #012169;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px 16px;
  border-radius: 10px;
  text-align: center;
}
#tool1 , #tool3{
  background: #1f2a44;
}
.trusted-card img{
  width: clamp(40px, 7vw, 80px);
}
.trusted-card i {
  font-size: 2.6rem;
}
.trusted-card span {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .02em;
}
.trusted-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
}
.heater-svg {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .trusted-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .trusted-heading { font-size: 32px; }
  .heater-svg { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 576px) {
  .trusted-heading { font-size: 26px; }
  .trusted-cards { flex-wrap: wrap; }
  .trusted-card {
    flex-direction: row;
    text-align: left;
    padding: 20px;
    gap: 16px;
    min-width: calc(100% - 0px);
  }
  .trusted-card i { font-size: 1.8rem; flex-shrink: 0; }
}

/* ═══════════════════════════════════════════════════════════
   GUIDES BANNER
═══════════════════════════════════════════════════════════ */
.guides-banner {
  padding: 40px 0;
  background: #ffffff;
}
.guides-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 36px 44px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.guides-banner-title {
  font-size: 28px;
  font-weight: 700;
  color: #012169;
  line-height: 1.2;
  margin: 0;
  max-width: 520px;
}
.guides-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 18px 32px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.guides-banner-btn:hover {
  background: #01307a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1,33,105,.25);
}
.guides-banner-btn i {
  font-size: 14px;
}

@media (max-width: 768px) {
  .guides-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
  }
  .guides-banner-title { font-size: 19px; }
  .guides-banner-btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG POSTS SECTION
═══════════════════════════════════════════════════════════ */
.blog-posts-section {
  background: #ffffff;
  padding: 0 0 60px;
}
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-post-card {
  display: flex;
  flex-direction: column;
  padding: 50px 40px 44px;
  background: #f8fff8;
  
  border-radius: 4px;
  box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.2);
}
.blog-post-title {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: #01307a;
  line-height: 1.25;
  margin-bottom: 26px;
  transition: color .25s ease;
}
.blog-post-title:hover {
  color: #1e1e1e;
}
.blog-post-excerpt {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 30px;
}
.blog-post-date {
  font-size: 14px;
  color: #374151;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-post-title { font-size: 26px; }
  .blog-post-card { padding: 38px 28px 34px; }
}
@media (max-width: 600px) {
  .blog-posts-grid {
    grid-template-columns: 1fr;
  }
  .blog-post-card {
    padding: 32px 20px 28px;
  }
  .blog-post-title { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  background-image: url('../images/background.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
}
.cta-banner-content {
  position: relative;
  z-index: 1;
  font-size: 46px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-banner-heading {
  font-size: 46px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta-banner-sub {
  font-size: 16px;
  color: #1f2a44;
  margin-bottom: 15px;
  font-weight: 500;
}
.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 50px;
  transition: var(--transition);
}
.cta-banner-btn:hover {
  background: #01307a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(1,33,105,.3);
}

@media (max-width: 768px) {
  .cta-banner { background-attachment: scroll; min-height: 400px; }
  .cta-banner-heading { font-size: 32px; }
  .cta-banner-sub { font-size: 15px; }
  .cta-banner-btn { padding: 16px 36px; }
}
@media (max-width: 480px) {
  .cta-banner-heading { font-size: 26px; }
  .cta-banner-btn { width: 100%; max-width: 280px; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════════ */
.about-section {
  padding: 90px 0;
  background: var(--color-white);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .badge-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
}
.about-badge .badge-text {
  font-size: .78rem;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.about-content .section-header { text-align: left; margin-bottom: 24px; }
.about-desc {
  color: var(--color-gray);
  font-size: .96rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-feats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: .87rem;
  font-weight: 600;
  color: var(--color-white);
}
.about-feat.accent { background: var(--color-accent); }
.about-feat.dark   { background: var(--color-primary); }
.about-feat img    { width: 22px; height: 22px; object-fit: contain; }

/* ═══════════════════════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════════════════════ */
.products-section {
  background: var(--color-light);
  padding: 90px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.product-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--color-light);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1,33,105,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-body { padding: 20px; }
.product-cat {
  display: inline-block;
  background: rgba(200,16,46,.1);
  color: var(--color-accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--radius-xl);
  margin-bottom: 10px;
}
.product-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.product-body p { font-size: .86rem; color: var(--color-gray); }

/* ═══════════════════════════════════════════════════════════
   WHY US SECTION
═══════════════════════════════════════════════════════════ */
.whyus-section {
  padding: 90px 0;
  background: var(--color-white);
}
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.whyus-card {
  background: var(--color-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.whyus-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--color-white);
}
.whyus-icon {
  width: 64px;
  height: 64px;
  background: rgba(200,16,46,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-accent);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.whyus-card:hover .whyus-icon {
  background: var(--color-accent);
  color: var(--color-white);
}
.whyus-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.whyus-card p { font-size: .88rem; color: var(--color-gray); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   TEAM SECTION
═══════════════════════════════════════════════════════════ */
.team-section {
  padding: 90px 0;
  background: var(--color-light);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.team-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.team-card:hover .team-img img { transform: scale(1.06); }
.team-social {
  position: absolute;
  inset: 0;
  background: rgba(1,33,105,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
  width: 36px;
  height: 36px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: .85rem;
  transition: var(--transition);
}
.team-social a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}
.team-body { padding: 20px; }
.team-role {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.team-body h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ═══════════════════════════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════════════════════════ */
.video-section {
  position: relative;
  background: url('../../wp-content/themes/fse-solar-power/assets/images/banner2.jpg') center/cover no-repeat;
  padding: 100px 0;
  text-align: center;
  color: var(--color-white);
}
.video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1,33,105,.82);
}
.video-section > * { position: relative; z-index: 1; }
.video-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin: 14px 0;
}
.video-section p {
  max-width: 560px;
  margin: 0 auto 36px;
  opacity: .85;
  font-size: .97rem;
}
.play-btn {
  width: 80px;
  height: 80px;
  background: var(--color-accent);
  border-radius: 50%;
  border: none;
  color: var(--color-white);
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 0 12px rgba(200,16,46,.25), 0 0 0 24px rgba(200,16,46,.1);
  position: relative;
}
.play-btn::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(200,16,46,.4);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}
.play-btn:hover {
  transform: scale(1.1);
  background: var(--color-accent-dark);
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.88);
}
.video-modal.open { display: flex; }
.modal-inner {
  position: relative;
  width: 90%;
  max-width: 900px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.modal-inner video { width: 100%; display: block; }
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: .9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: var(--transition);
}
.modal-close:hover { background: var(--color-accent-dark); }

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════════════════════════════ */
.contact-section {
  padding: 90px 0;
  background: var(--color-light);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
.contact-info .section-header { text-align: left; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,16,46,.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: var(--transition);
}
.contact-item:hover .contact-icon {
  background: var(--color-accent);
  color: var(--color-white);
}
.contact-item h5 {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-gray);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: .95rem;
  color: var(--color-text);
  font-weight: 600;
}
.contact-item a:hover { color: var(--color-accent); }
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 28px;
  text-align: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .93rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  outline: none;
}
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .93rem;
  color: var(--color-text);
  background: var(--color-white);
  transition: var(--transition);
  outline: none;
  direction: ltr;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(200,16,46,.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: .8rem;
  color: var(--color-gray);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer-logo2{
  display: inline-flex;
  width: 110px;
  padding-left: 0.3vw;
  padding-right: 0.3vw;
}
.site-footer {
  margin-top: 1.5vw;
  background: #203260;
  color: #ffffff;
}
.footer-main {
  padding: 72px 0 64px;
}
.footer-main-inner {
  width: 80%;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}
/* Logo */
.footer-logo img {
  height: 90px;
  width: auto;
  margin-bottom: 32px;
  display: block;
}
.footer-logo-fallback {
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 32px;
  display: block;
}
/* About description */
.footer-about-desc {
  font-size: 14.5px;
  line-height: 1.85;
  color: #ffffff;
  max-width: 380px;
}
/* Column titles */
.footer-col-title {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 32px;
}
/* Nav list */
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav-list a {
  font-size: 16px;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s ease;
}
.footer-nav-list a:hover {
  opacity: .75;
}
/* Bottom bar */
.footer-bottom {
  border-top: 4px solid rgba(255, 255, 255);
  padding: 22px 0;
}
.footer-bottom p {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-main-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-about {
    grid-column: 1 / -1;
  }
  .footer-about-desc { max-width: 100%; }
}
@media (max-width: 560px) {
  .footer-main-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-logo img { height: 70px; }
  .footer-col-title { font-size: 18px; margin-bottom: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — HERO
═══════════════════════════════════════════════════════════ */
.about-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('../images/about-back.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 860px;
  width: 100%;
}
.about-hero-heading {
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

@media (max-width: 992px) {
  .about-hero-heading { font-size: 50px; }
}
@media (max-width: 640px) {
  .about-hero-heading { font-size: 36px; }
}
@media (max-width: 400px) {
  .about-hero-heading { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — HERO
═══════════════════════════════════════════════════════════ */
.services-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('../images/about-back.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
}
.services-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 1000px;
  width: 100%;
}
.services-hero-heading {
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 992px) {
  .services-hero-heading { font-size: 50px; }
}
@media (max-width: 640px) {
  .services-hero-heading { font-size: 36px; }
}
@media (max-width: 400px) {
  .services-hero-heading { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — HERO
═══════════════════════════════════════════════════════════ */
.contact-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('../images/blog-2.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
}
.contact-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 860px;
  width: 100%;
}
.contact-hero-heading {
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

@media (max-width: 992px) {
  .contact-hero-heading { font-size: 50px; }
}
@media (max-width: 640px) {
  .contact-hero-heading { font-size: 36px; }
}
@media (max-width: 400px) {
  .contact-hero-heading { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — SECTION HEADER (legacy, kept for index.html)
═══════════════════════════════════════════════════════════ */
.contact-section-header {
  text-align: center;
  margin-bottom: 60px;
}
.contact-section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.contact-section-sub {
  font-size: 16px;
  color: var(--color-gray);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}
.contact-info-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — FULL FORM SECTION
═══════════════════════════════════════════════════════════ */
.contact-page-section {
  background: #ffffff;
  padding: 80px 0 100px;
}
.contact-page-header {
  text-align: center;
  margin-bottom: 56px;
}
.contact-page-title {
  font-size: 44px;
  font-weight: 600;
  color: #0a4da3;
  margin-bottom: 20px;
  line-height: 1.2;
}
.contact-page-sub {
  font-size: 15.5px;
  color: #000000;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}
.contact-page-form-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.cpf-group {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
}
.cpf-group label {
  font-size: 14px;
  font-weight: 500;
  color: #3d2b1f;
  margin-bottom: 8px;
}
.cpf-group input,
.cpf-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--color-text);
  background: #ffffff;
  outline: none;
  transition: border-color .25s ease;
}
.cpf-group input:focus,
.cpf-group textarea:focus {
  border-color: var(--color-primary);
}
.cpf-group textarea {
  min-height: 140px;
  resize: vertical;
}
.cpf-submit {
  display: inline-block;
  padding: 14px 24px;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
  margin-top: 6px;
}
.cpf-submit:hover {
  background: #01358a;
  transform: translateY(-2px);
}
.cpf-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}
.cpf-msg {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
}
.cpf-msg--error { color: var(--color-accent); }

@media (max-width: 640px) {
  .contact-page-title { font-size: 36px; }
  .contact-page-sub   { font-size: 14.5px; }
}
@media (max-width: 400px) {
  .contact-page-title { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — GET IN TOUCH
═══════════════════════════════════════════════════════════ */
.git-section {
  background: #ffffff;
  padding: 80px 0 100px;
  border-top: 1px solid #f0f0f0;
}
.git-top {
  text-align: center;
  margin-bottom: 72px;
}
.git-label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 18px;
}
.git-heading {
  font-size: 58px;
  font-weight: 900;
  color: #000000;
  line-height: 1.15;
  margin-bottom: 36px;
}
.git-whatsapp-btn {
  display: inline-block;
  width: 100%;
  max-width: 600px;
  padding: 18px 40px;
  background: #012169;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 400;
  border-radius: 50px;
  text-align: center;
  transition: background .25s ease, transform .2s ease;
}
.git-whatsapp-btn:hover {
  background: #01358a;
  transform: translateY(-2px);
}
.git-info-row {
  display: flex;
  justify-content: center;
  gap: 0;
}
.git-info-item {
  flex: 1;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}
.git-info-icon {
  font-size: 28px;
  color: #012169;
  margin-bottom: 10px;
  line-height: 1;
}
.git-info-divider {
  width: 60px;
  height: 2px;
  background: #012169;
}
.git-info-text {
  font-size: 25px;
  font-weight: 700;
  color: #012169;
}
.git-info-text:hover { opacity: .75; }

@media (max-width: 768px) {
  .git-heading { font-size: 40px; }
  .git-info-row { flex-direction: column; align-items: center; gap: 48px; }
  .git-info-item { max-width: 100%; padding: 0; }
}
@media (max-width: 480px) {
  .git-heading { font-size: 30px; }
  .git-whatsapp-btn { font-size: 14px; padding: 16px 28px; }
}


.svc-cards-section {
  background: #ffffff;
  padding: 90px 0 100px;
}
.svc-cards-header {
  text-align: center;
  margin-bottom: 70px;
}
.svc-cards-title {
  font-size: 40px;
  font-weight: 500;
  color: #012169;
  margin-bottom: 20px;
}
.svc-cards-sub {
  font-size: 15px;
  color: #1f2a44;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.7;
}
/* Grid: 2 columns */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 10px;
}
/* Card */
.svc-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 50px;
}
.svc-card-img-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
}
.svc-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-card-body {
  background: var(--color-primary);
  border-radius: 10px;
  padding: 270px 36px 44px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.svc-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}
.svc-card-desc {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.75;
  margin-bottom: 32px;
  flex: 1;
}
.svc-card-desc strong {
  font-weight: 700;
}
.svc-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}
.svc-card-btn:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,16,46,.35);
}

/* Responsive */
@media (max-width: 900px) {
  .svc-cards-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-cards-title { font-size: 36px; }
  .svc-card-img-wrap { width: 260px; height: 240px; }
  .svc-card { padding-top: 130px; }
  .svc-card-body { padding: 140px 28px 36px; }
}
@media (max-width: 560px) {
  .svc-cards-title { font-size: 28px; }
  .svc-card-img-wrap { width: 85%; height: 200px; }
  .svc-card { padding-top: 110px; }
  .svc-card-body { padding: 120px 20px 30px; }
  .svc-card-btn { width: 100%; max-width: 260px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — PRODUCT DETAIL
═══════════════════════════════════════════════════════════ */
.svc-detail {
  background: #ffffff;
}
.svc-detail-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
/* Left image */
.svc-detail-img img {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* Right content */
.svc-detail-heading {
  font-size: 28px;
  font-weight: bolder;
  color: var(--color-primary);
  margin-bottom: 36px;
  line-height: 1.3;
}
.svc-detail-feature {
  padding: 8px 0 20px;
}
.svc-detail-feat-title {
  font-size: 22px;
  font-weight: 700;
  color: #1f2a44;
  margin-bottom: 10px;
  line-height: 1;
}
.svc-detail-feat-desc {
  width: 100%;
  max-width: 500px;
  font-size: 14.5px;
  color: #374151;
  line-height: 1.75;
}
.svc-detail-divider {
  width: 100%;
  max-width: 480px;
  border: none;
  border-top: 2px solid gray;
  margin: 4px 0 20px;
}
.svc-detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 25px;
  border-radius: 50px;
  margin-top: 28px;
  transition: var(--transition);
}
.svc-detail-btn:hover {
  background: #01307a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(1,33,105,.3);
}

@media (max-width: 900px) {
  .svc-detail-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .svc-detail-img img { max-width: 340px; }
  .svc-detail-heading { font-size: 24px; }
}
@media (max-width: 560px) {
  .svc-detail-heading { font-size: 21px; }
  .svc-detail-feat-desc { max-width: 100%; }
  .svc-detail-divider { max-width: 100%; }
  .svc-detail-btn { width: 100%; max-width: 280px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — INSTALLATION INFO + VIDEO
═══════════════════════════════════════════════════════════ */
.svc-install {
  background: #ffffff;
  padding: 90px 0;
}
.svc-install-inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
/* Left text */
.svc-install-heading {
  font-size: 26px;
  font-weight: bold;
  color: #012169;
  margin-bottom: 36px;
  line-height: 1.35;
}
.svc-install-feature {
  padding: 6px 0 18px;
}
.svc-install-feat-title {
  font-size: 22px;
  font-weight: 700;
  color: #3a3a3a;
  margin-bottom: 10px;
  line-height: 1.3;
}
.svc-install-feat-desc {
  font-size: 14px;
  color: #374151;
  line-height: 1.75;
}
.svc-install-divider {
  border: none;
  border-top: 2px solid gray;
  margin: 4px 0 18px;
}
/* Right video */
.svc-install-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

@media (max-width: 960px) {
  .svc-install-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .svc-install-heading { font-size: 22px; }
}
@media (max-width: 560px) {
  .svc-install-heading { font-size: 20px; }
  .svc-install-feat-title { font-size: 15px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE — CTA BANNER
═══════════════════════════════════════════════════════════ */
.svc-cta {
  position: relative;
  width: 80%;
  margin: 0 auto 5vw auto;
  min-height: 580px;
  background: url('../images/background.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
}
.svc-cta-overlay {
  position: absolute;
  inset: 0;
}
.svc-cta-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: 1000px;
  width: 100%;
}
.svc-cta-heading {
  font-size: 46px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 20px;
}
.svc-cta-sub {
  font-size: 16px;
  color: #1f2a44;
  margin-bottom: 38px;
  line-height: 1.6;
}
.svc-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 34px;
  border-radius: 50px;
  transition: var(--transition);
}
.svc-cta-btn:hover {
  background: #01307a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(1,33,105,.3);
}

@media (max-width: 768px) {
  .svc-cta { min-height: 440px; }
  .svc-cta-heading { font-size: 34px; }
}
@media (max-width: 480px) {
  .svc-cta-heading { font-size: 26px; }
  .svc-cta-sub { font-size: 14px; }
  .svc-cta-btn { width: 100%; max-width: 260px; padding: 16px 24px; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — WHO WE ARE
═══════════════════════════════════════════════════════════ */
.who-we-are {
  background: #ffffff;
  padding: 80px 0;
}
.who-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
/* Left text */
.who-heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 32px;
}
.who-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 24px;
}
.who-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 16px 40px;
  border-radius: 50px;
  margin-top: 16px;
  transition: var(--transition);
}
.who-btn:hover {
  background: #01307a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(1,33,105,.3);
}
/* Right image grid */
.who-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.who-img-grid img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .who-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .who-heading { font-size: 34px; }
  .who-img-grid img { height: 220px; }
}
@media (max-width: 560px) {
  .who-heading { font-size: 28px; }
  .who-img-grid img { height: 160px; }
  .who-btn { width: 100%; max-width: 280px; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE — COMFORT BANNER
═══════════════════════════════════════════════════════════ */
.comfort-banner {
  position: relative;
  width: 80%;
  margin: 0 auto 6vw auto;
  background-image: url('../images/team.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  filter: grayscale(100%);
}
.comfort-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(35, 34, 34, 0.45);
  filter: none;
}
.comfort-overlay {
  display: none;
}
.comfort-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 900px;
  width: 100%;
}
.comfort-heading {
  margin-left: 3vw;
  font-size: 100px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: .02em;
  margin-bottom: 100px;
  text-transform: uppercase;
}
.comfort-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .14em;
  padding: 18px 36px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  transition: var(--transition);
}
.comfort-btn:hover {
  background: #ffffff;
  color: var(--color-primary);
}

@media (max-width: 992px) {
  .comfort-heading { font-size: 58px; }
  .comfort-banner { min-height: 460px; background-attachment: scroll; }
}
@media (max-width: 640px) {
  .comfort-heading { font-size: 38px; margin-bottom: 36px; }
  .comfort-banner { min-height: 380px; background-attachment: scroll; }
  .comfort-btn { padding: 16px 40px; }
}
@media (max-width: 400px) {
  .comfort-heading { font-size: 30px; }
}

/* ═══════════════════════════════════════════════════════════
   BLOGS PAGE — HERO
═══════════════════════════════════════════════════════════ */
.blogs-hero {
  position: relative;
  width: 100%;
  min-height: 65vh;
  background: url('../images/blogs-back.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blogs-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .58);
}
.blogs-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.blogs-hero-heading {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .blogs-hero { min-height: 50vh; }
  .blogs-hero-heading { font-size: 48px; }
}
@media (max-width: 480px) {
  .blogs-hero-heading { font-size: 36px; }
}

/* ═══════════════════════════════════════════════════════════
   BLOGS PAGE — LIST
═══════════════════════════════════════════════════════════ */
.blog-list-section {
  padding: 64px 0 80px;
}
.blog-list-container {
  width: 88%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog-list-card {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .09);
  border-radius: 4px;
  overflow: hidden;
  min-height: 230px;;
  transition: box-shadow .25s ease;
}
.blog-list-card:hover {
  box-shadow: 0 8px 36px rgba(0, 0, 0, .15);
}
.blog-list-img-wrap {
  width: 238px;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
}
.blog-list-img-wrap img {
  width: 100%;
  margin: 2vw;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.blog-list-card:hover .blog-list-img-wrap img {
  transform: scale(1.04);
}
.blog-list-content {
  flex: 1;
  padding: 28px 36px;
  display: flex;
  align-items: center;
}
.blog-list-title {
  margin: 0;
  line-height: 1.35;
}
.blog-list-title a {
  font-size: 32px;
  font-weight: 700;
  color: #01307a;
  line-height: 1.35;
  transition: color .2s ease;
}
.blog-list-title a:hover {
  color: #080808;
}

@media (max-width: 768px) {
  .blog-list-img-wrap { width: 180px; }
  .blog-list-title a { font-size: 22px; }
  .blog-list-content { padding: 20px 24px; }
}
@media (max-width: 560px) {
  .blog-list-card { flex-direction: column; min-height: unset; }
  .blog-list-img-wrap { width: 100%; height: 200px; }
  .blog-list-title a { font-size: 19px; }
  .blog-list-content { padding: 18px 20px; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG POST PAGE — HERO
═══════════════════════════════════════════════════════════ */
.blog-post-hero {
  position: relative;
  width: 100%;
  min-height: 65vh;
  background-image: url('../images/slider-3.webp');
  background-size: cover;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.blog-post-hero--2 {
  background-image: url('../images/slider-3.webp');

}
.blog-post-hero--3 {
  background-image: url('../images/slider-3.webp');
}
.hwr-hero {
  background-image: url('../images/slider-3.webp');
}
.blog-post-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .42);
}
.blog-post-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 1500px;
  width: 100%;
}
.blog-post-hero-title {
  font-size: 52px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

@media (max-width: 992px) {
  .blog-post-hero-title { font-size: 48px; }
}
@media (max-width: 640px) {
  .blog-post-hero-title { font-size: 34px; }
  .blog-post-hero { min-height: 55vh; }
}
@media (max-width: 400px) {
  .blog-post-hero-title { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG POST PAGE — FEATURED SECTION
═══════════════════════════════════════════════════════════ */
.bp-featured-section {
  background: #ffffff;
  padding: 60px 24px 70px;
}
.bp-featured-box {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 600px;
  background-image: url('../images/why-water-heater-not-heating-dubai.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bp-featured-box-2{
background-image: url('../images/blog-2-3.webp');
}
.bp-featured-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 50, 96, 0.4);
}
.bp-featured-content {
  position: relative;
  z-index: 1;
  padding: 48px 48px;
  max-width: 1200px;
}
.bp-featured-title {
  font-size: 44px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  margin: 0 0 22px;
}
.bp-featured-sub {
  font-size: 1.3rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.75;
  margin: 0 0 32px;
}
.bp-featured-box--energy {
  background-image: url('../images/blog-2.webp');
}
.bp-featured-box--install {
  background-image: url('../images/blog-3.webp');
}
.bp-featured-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.bph-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
}
.bph-btn:hover    { opacity: .85; }
.bph-btn--navy    { background: #012169; color: #ffffff; }
.bph-btn--black   { background: #1a1a1a; color: #ffffff; }

@media (max-width: 900px) {
  .bp-featured-title { font-size: 36px; }
  .bp-featured-box   { min-height: 380px; }
}
@media (max-width: 600px) {
  .bp-featured-title   { font-size: 26px; }
  .bp-featured-sub     { font-size: 14.5px; }
  .bp-featured-content { padding: 32px 24px; }
  .bp-featured-box     { min-height: 300px; }
  .bph-btn             { font-size: 13px; padding: 11px 20px; }
}
@media (max-width: 400px) {
  .bp-featured-title { font-size: 22px; }
}

/* ═══════════════════════════════════════════════════════════
   ENERGY EFFICIENCY PAGE — WHY SECTION (2-col)
═══════════════════════════════════════════════════════════ */
.ee-why-section {
  background: #ffffff;
  padding: 80px 24px 90px;
}
.ee-why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
.ee-why-text {
  flex: 1;
  min-width: 0;
}
.ee-why-heading {
  font-size: 42px;
  font-weight: 700;
  color: #071f73;
  line-height: 1.22;
  margin: 0 0 20px;
}
.ee-why-divider {
    width: 80px;
    height: 1.5px;
    background: #071f73;
    margin: 0 auto 20px auto;
    border-radius: 2px;
}
.ee-why-p {
  font-size: 15px;
  color: #374151;
  line-height: 1.85;
  margin: 0 0 22px;
}
.ee-why-readmore {
  font-size: 14px;
  color: #012169;
  margin: 0;
}
.ee-why-link {
  color: #012169;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ee-why-link:hover { color: #C8102E; }
.ee-why-img-col {
  flex: 1;
  min-width: 0;
}
.ee-why-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.ee-why-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
/* Callout badges */
.ee-callout {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.ee-callout-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(1, 33, 105, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 12px rgba(200, 16, 46, 0.5);
}
.ee-callout-label {
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ee-callout--tl { left: 7%;  top: 36%; }
.ee-callout--tr { right: 5%; top: 36%; }
.ee-callout--bl { left: 7%;  top: 65%; }
.ee-callout--br { right: 5%; top: 65%; }

@media (max-width: 900px) {
  .ee-why-inner   { flex-direction: column; gap: 44px; }
  .ee-why-heading { font-size: 34px; }
}
@media (max-width: 600px) {
  .ee-why-section { padding: 56px 20px 60px; }
  .ee-why-heading { font-size: 28px; }
  .ee-why-p       { font-size: 14.5px; }
  .ee-callout-icon  { width: 36px; height: 36px; font-size: 13px; }
  .ee-callout-label { font-size: 9px; }
}

/* ═══════════════════════════════════════════════════════════
   ENERGY EFFICIENCY PAGE — PROVEN STRATEGIES SECTION
═══════════════════════════════════════════════════════════ */
.ps-section {
  background: #ffffff;
  padding: 70px 24px 80px;
}
.ps-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.ps-top-divider,
.ps-bottom-divider {
  width: 80px;
  height: 1.5px;
  background: #071f73;
  border-radius: 2px;
  margin: 0 auto 56px;
}
.ps-bottom-divider {
  margin: 56px auto 0;
}
.ps-heading {
  font-size: 42px;
  font-weight: 700;
  color: #071f73;
  line-height: 1.22;
  margin: 0 0 18px;
}
.ps-sub {
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.7;
  margin: 0 0 56px;
}
.ps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
  text-align: left;
}
.ps-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.3;
  margin: 0 0 16px;
}
.ps-card-text {
  font-weight: 500;
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .ps-grid    { grid-template-columns: repeat(2, 1fr); gap: 36px 36px; }
  .ps-heading { font-size: 34px; }
}
@media (max-width: 600px) {
  .ps-grid      { grid-template-columns: 1fr; gap: 32px; }
  .ps-heading   { font-size: 28px; }
  .ps-sub       { font-size: 14px; }
  .ps-card-title { font-size: 18px; }
  .ps-section   { padding: 56px 20px 64px; }
}

/* ═══════════════════════════════════════════════════════════
   ENERGY EFFICIENCY PAGE — SACA LABEL SECTION (full-bleed 50/50)
═══════════════════════════════════════════════════════════ */
.saca-section {
  display: flex;
  min-height: 520px;
  background: #ffffff;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}
.saca-img-col {
  flex: 0 0 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: 16px;
}
.saca-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.saca-text-col {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px 64px;
}
.saca-heading {
  font-size: 40px;
  font-weight: 700;
  color: #071f73;
  line-height: 1.22;
  margin: 0 0 28px;
}
.saca-p {
  font-size: 15px;
  color: #3a3a3a;
  line-height: 1.85;
  margin: 0 0 22px;
}
.saca-p:last-child { margin-bottom: 0; }

@media (max-width: 960px) {
  .saca-section     { flex-direction: column; }
  .saca-img-col     { flex: none; max-width: 100%; height: 340px; }
  .saca-text-col    { flex: none; max-width: 100%; padding: 52px 28px; }
  .saca-heading     { font-size: 32px; }
}
@media (max-width: 600px) {
  .saca-img-col  { height: 260px; }
  .saca-text-col { padding: 40px 20px; }
  .saca-heading  { font-size: 26px; }
  .saca-p        { font-size: 14.5px; }
}

/* ═══════════════════════════════════════════════════════════
   ENERGY EFFICIENCY PAGE — COMPARISON TABLE SECTION
═══════════════════════════════════════════════════════════ */
.ect-section {
  background: #ffffff;
  padding: 70px 24px 80px;
}
.ect-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.ect-top-divider,
.ect-bottom-divider {
  width: 80px;
  height: 1.5px;
  background: #071f73;
  border-radius: 2px;
  margin: 0 auto 52px;
}
.ect-bottom-divider {
  margin: 52px auto 0;
}
.ect-heading {
  font-size: 40px;
  font-weight: 700;
  color: #071f73;
  line-height: 1.22;
  margin: 0 0 44px;
}
.ect-table-wrap {
  overflow-x: auto;
}
.ect-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14.5px;
  color: #374151;
}
.ect-table thead tr {
  border-bottom: 2px solid #1a1a1a;
}
.ect-table th {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  padding: 14px 18px;
  white-space: nowrap;
  text-align: center;
}
.ect-table td {
  padding: 8px 18px;
  vertical-align: middle;
}
.ect-row-alt {
  background: #f0f0f0;
}
.ect-stars {
  color: #f59e0b;
  font-size: 16px;
  letter-spacing: 2px;
}
.ect-note {
  font-size: 20px;
  color: #3a3a3a;
  line-height: 1.7;
  text-align: left;
  margin: 28px 0 0;
}

@media (max-width: 900px) {
  .ect-heading { font-size: 32px; }
}
@media (max-width: 600px) {
  .ect-section  { padding: 56px 16px 64px; }
  .ect-heading  { font-size: 26px; }
  .ect-table th,
  .ect-table td { padding: 12px 12px; font-size: 13px; }
  .ect-stars    { font-size: 14px; letter-spacing: 1px; }
}

/* ═══════════════════════════════════════════════════════════
   ENERGY EFFICIENCY PAGE — FAQ SECTION
═══════════════════════════════════════════════════════════ */
.ee-faq-section {
  background: #ffffff;
}
.ee-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.ee-faq-heading {
  font-size: 44px;
  font-weight: 700;
  color: #071f73;
  text-align: center;
  line-height: 1.22;
  margin: 0 0 24px;
}
.ee-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ee-faq-item {
  border: none;
  background: none;
}
.ee-faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 14px 0;
  text-align: left;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.55;
}
.ee-faq-trigger:hover { color: #C8102E; }
.ee-faq-arrow {
  color: #c8102e;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform .3s ease;
  display: inline-block;
}
.ee-faq-item.open .ee-faq-arrow {
  transform: rotate(90deg);
  color: #c8102e;
}
.ee-faq-answer {
  display: none;
  padding: 0 0 12px 26px;
}
.ee-faq-item.open .ee-faq-answer {
  display: block;
}
.ee-faq-answer p {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  margin: 0;
}
.ee-faq-bottom-divider {
  width: 80px;
  height: 1.5px;
  background: #071f73;
  border-radius: 2px;
  margin: 52px auto 0;
}

@media (max-width: 900px) {
  .ee-faq-heading { font-size: 34px; }
}
@media (max-width: 600px) {
  .ee-faq-section  { padding: 56px 20px 64px; }
  .ee-faq-heading  { font-size: 26px; }
  .ee-faq-trigger  { font-size: 14.5px; }
}

/* ═══════════════════════════════════════════════════════════
   ENERGY EFFICIENCY PAGE — TIPS / AUDIT / WHY US SECTION
═══════════════════════════════════════════════════════════ */
.ee-tips-section {
  background: #ffffff;
  padding: 70px 24px 60px;
}
.ee-tips-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
  align-items: start;
}
.ee-tips-heading {
  font-size: 24px;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.3;
  margin: 0 0 20px;
}
.ee-tips-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
}
.ee-tips-list li {
  font-size: 14.5px;
  color: #3a3a3a;
  line-height: 1.75;
}
.ee-tips-p {
  font-size: 14.5px;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 16px;
}
.ee-tips-p:last-child { margin-bottom: 0; }
.ee-tips-bottom-divider {
  width: 80px;
  height: 1.5px;
  background: #071f73;
  border-radius: 2px;
  margin: 52px auto 0;
}

@media (max-width: 900px) {
  .ee-tips-inner { grid-template-columns: repeat(2, 1fr); gap: 36px 40px; }
}
@media (max-width: 600px) {
  .ee-tips-section { padding: 56px 20px 48px; }
  .ee-tips-inner   { grid-template-columns: 1fr; gap: 36px; }
  .ee-tips-heading { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════
   ENERGY EFFICIENCY PAGE — START SAVING TODAY CTA
═══════════════════════════════════════════════════════════ */
.ee-cta-section {
  background: #ffffff;
  padding: 0 24px 0;
}
.ee-cta-box {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 340px;
  background-image: url('../images/blog-2-3.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.ee-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgb(32, 50, 96,0.4);
}
.ee-cta-content {
  position: relative;
  z-index: 1;
  padding: 60px 32px;
  max-width: 860px;
  width: 100%;
}
.ee-cta-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
}
.ee-cta-sub {
  font-size: 15px;
  color: #ffffff;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.ee-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 640px) {
  .ee-cta-title   { font-size: 30px; }
  .ee-cta-sub     { font-size: 14px; }
  .ee-cta-content { padding: 48px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG3 — PROFESSIONAL INSTALLATION PAGE
═══════════════════════════════════════════════════════════ */
.pi-why-section,
.pi-process-section,
.pi-tips-section,
.pi-safety-section,
.pi-faq-lite-section,
.pi-cta-section {
  background: #ffffff;
}
.pi-why-section {
  padding: 0 24px 70px;
}
.pi-why-inner,
.pi-safety-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.pi-section-heading {
  font-size: 42px;
  font-weight: 700;
  color: #071f73;
  line-height: 1.18;
  margin: 0 0 14px;
  margin-top: 3vw;
  text-align: center;
}
.pi-section-heading--left {
  text-align: left;
}
.pi-text {
  font-size: 14.5px;
  color: #3a3a3a;
  line-height: 1.8;
  margin: 0 0 16px;
}
.pi-readmore {
  margin: 0;
  font-style: italic;
  font-size: 16px;
  color: #012169;
}
.pi-readmore a {
  font-size: 16px;
  color: #012169;
  text-decoration: underline;
  font-style: italic;
}
.pi-rounded-img {
  width: 100%;
  display: block;
  border-radius: 14px;
}
.pi-process-section {
  padding: 0 24px 70px;
}
.pi-process-inner,
.pi-tips-inner,
.pi-faq-lite-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pi-divider {
  width: 80px;
  height: 1.5px;
  background: #071f73;
  border-radius: 2px;
  margin: 0 auto 30px;
}
.pi-section-sub {
  font-size: 14px;
  color: #3a3a3a;
  line-height: 1.7;
  text-align: center;
  margin: 0 0 34px;
}
.pi-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pi-process-num {
  font-size: 30px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}
.pi-process-title {
  font-size: 25px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.25;
  margin: 0 0 10px;
}
.pi-process-icon {
  font-size: 18px;
}
.pi-process-text {
  font-size: 13.5px;
  color: #3a3a3a;
  line-height: 1.7;
  margin: 0;
}

.pi-process-card{
  width: 220px;
}
.pi-tips-section {
  padding: 0 24px 70px;
}
.pi-tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;

}
.pi-tip-card {
  padding: 22px 20px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}
.pi-tip-title {
  font-size: 24px;
  font-weight: 700;
  color: #3a3a3a;
  line-height: 1.35;
  margin: 0 0 10px;
}
.pi-tip-text {
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.7;
  margin: 0;
}
.pi-safety-section {
  padding: 0 24px 60px;
}
.pi-faq-lite-section {
  padding: 0 24px 46px;
}
.pi-faq-lite-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.pi-faq-lite-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  font-size: 14.5px;
  color: #374151;
  line-height: 1.6;
}
.pi-faq-lite-list li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  top: 0;
  color: #111827;
  font-size: 12px;
}

.pi-cta-box {
  background-attachment: fixed;
  position: relative;
  max-width: 1100px;
  margin: 50px auto;
  min-height: 350px;
  background-image: url('../images/blog-3-3.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.pi-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgb(32, 50, 96,0.3);
}
.pi-cta-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 48px 24px;
}
.pi-cta-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}
.pi-cta-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.92);
  line-height: 1.7;
  margin: 0 0 26px;
}
.pi-cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 992px) {
  .pi-process-grid { grid-template-columns: repeat(2, 1fr); }
  .pi-tips-grid { grid-template-columns: repeat(2, 1fr); }
  .pi-why-inner,
  .pi-safety-inner { grid-template-columns: 1fr; }
  .pi-section-heading { font-size: 34px; }
  .pi-section-heading--left { text-align: center; }
}
@media (max-width: 640px) {
  .pi-why-section,
  .pi-process-section,
  .pi-tips-section,
  .pi-safety-section,
  .pi-faq-lite-section,
  .pi-cta-section { padding-left: 20px; padding-right: 20px; }
  .pi-process-grid,
  .pi-tips-grid { grid-template-columns: 1fr; }
  .pi-section-heading { font-size: 28px; }
  .pi-process-title { font-size: 18px; }
  .pi-tip-title { font-size: 17px; }
  .pi-cta-title { font-size: 30px; }
  .pi-cta-sub { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG4 — HOT WATER REIMAGINED PAGE
═══════════════════════════════════════════════════════════ */
.hwr-featured-section,
.hwr-split-section,
.hwr-steps-section,
.hwr-features-section,
.hwr-trust-section,
.hwr-table-section,
.hwr-faq-section,
.hwr-cta-section {
  background: #ffffff;
}
.hwr-featured-section {
  padding: 60px 24px 70px;
}
.hwr-featured-box {
  position: relative;
  max-width: 1100px;
  min-height: 600px;
  margin: 0 auto;
  background-image: url('../images/blog-4.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hwr-featured-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 50, 96, 0.34);
}
.hwr-featured-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: 48px 24px;
}
.hwr-featured-title {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 16px;
}
.hwr-featured-sub {
  font-size: 1.5rem;
  color: rgba(255,255,255,.92);
  line-height: 1.7;
  margin: 0 0 26px;
}
.hwr-featured-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hwr-split-section {
  padding: 0 24px 64px;
}
.hwr-split-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.hwr-split-inner--compact {
  gap: 28px;
}
.hwr-rounded-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.hwr-section-heading {
  font-size: 40px;
  font-weight: 700;
  color: #071f73;
  line-height: 1.18;
  text-align: center;
  margin: 25px 0 55px;
}
.hwr-section-heading--left {
  text-align: left;
}

#special{
  color: #3a3a3a;
  margin: 25px 0 25px;
}
.hwr-text {
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.8;
  margin: 0 0 14px;
}
.hwr-readmore{
    font-style: italic;
    font-size: 16px;
    color: #012169;
}
.hwr-readmore a {
  font-size: 16px;
  color: #012169;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-style: italic;
}
.hwr-divider {
  width: 80px;
  height: 1.5px;
  background: #071f73;
  border-radius: 2px;
  margin: 0 auto 30px;
}
.hwr-steps-section,
.hwr-features-section,
.hwr-table-section,
.hwr-faq-section {
  padding: 0 24px 64px;
}
.hwr-steps-inner,
.hwr-features-inner,
.hwr-table-inner,
.hwr-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.hwr-section-sub {
  font-size: 16px;
  color: #3a3a3a;
  text-align: center;
  line-height: 1.7;
  margin: 0 0 28px;
}
.hwr-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hwr-step-card {
  min-height: 220px;
  border-radius: 14px;
  padding: 18px 16px;
}
.hwr-step-card--dark  , .hwr-step-card--accent{
  background: #071f73;
  color: #ffffff;
}


.hwr-step-num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}
.hwr-step-title {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 12px;
}
.hwr-step-title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 20px;
  vertical-align: middle;
}
.hwr-step-title-icon--blue {
  color: #b8d9f6;
}
.hwr-step-title-icon--sand {
  color: #e8d39d;
}
.hwr-step-title-icon--charcoal {
  color: #3b3b3b;
}
.hwr-step-title-icon--green {
  color: #98d65f;
}
.hwr-step-text {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
.hwr-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 26px;
}
.hwr-feature-item h3 {
  font-size: 24px;
  font-weight: 700;
  color: #374151;
  margin: 0 0 10px;
}
.hwr-feature-item p {
  font-size: 16px;
  color: #3a3a3a;
  line-height: 1.75;
  margin: 0;
}
.hwr-trust-section {
  padding: 0 24px 64px;
}
.hwr-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 34px;
  text-align: center;
}
.hwr-trust-inner p{
  color: #000000;
}
.hwr-trust-title {
  font-size: 44px;
  font-weight: 700;
  color: #071f73;
  margin: 0 0 24px;
}
.hwr-trust-grid {
  padding-top: 3vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 24px;
}
.hwr-trust-item h3 {
  font-size: 26px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 10px;
}
.hwr-trust-item p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.95);
  line-height: 1.75;
  margin: 0;
}
.hwr-table-wrap {
  overflow-x: auto;
}
.hwr-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.hwr-table thead tr {
  border-bottom: 1px solid #0f172a;
  text-align: center;
}
.hwr-table th {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  padding: 10px 12px;
}
.hwr-table td {
  font-size: 13px;
  color: #4b5563;
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
}
.hwr-stars {
  color: #f59e0b;
  letter-spacing: 1px;
}
.hwr-comparison-heading#special {
  color: #3d3d3d;
  font-family: 'Lato', sans-serif;
  font-size: 37px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0 0 22px;
}
.hwr-comparison-sub {
  color: #444444;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 48px;
}
.hwr-comparison-divider {
  width: 89px;
  height: 2px;
  margin: 0 auto 30px;
}
.hwr-comparison-wrap {
  overflow-x: auto;
  padding: 0;
}
.hwr-comparison-table {
  min-width: 1016px;
  font-family: 'Lato', sans-serif;
}
.hwr-comparison-table thead tr {
  border-bottom: 2px solid #555555;
}
.hwr-comparison-table th {
  color: #3f3f3f;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  padding: 0 8px 11px;
  text-align: center;
}
.hwr-comparison-table td {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  padding: 9px 8px 10px;
  border-bottom: 1px solid #ececec;
  white-space: nowrap;
}
.hwr-comparison-table tbody tr:nth-child(odd) {
  background: #f1f1f1;
}
.hwr-comparison-table tbody tr:nth-child(even) {
  background: #ffffff;
}
.hwr-comparison-table td:nth-child(1) {
  width: 190px;
}
.hwr-comparison-table td:nth-child(2) {
  width: 230px;
}
.hwr-comparison-table td:nth-child(3) {
  width: 240px;
}
.hwr-comparison-table td:nth-child(4) {
  width: 240px;
}
.hwr-comparison-table td:nth-child(5) {
  width: 130px;
}
.hwr-comparison-table .hwr-stars {
  color: #f6a623;
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 700;
}
.hwr-stars-note {
  color: #4a4a4a;
  font-size: 14px;
  font-weight: 400;
}
.hwr-comparison-divider--bottom {
  margin: 94px auto 0;
}
.hwr-faq-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.hwr-faq-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}
.hwr-faq-list li::before {
  content: '\25B8';
  position: absolute;
  left: 0;
  top: 0;
  color: #111827;
  font-size: 12px;
}
.hwr-cta-section {
  padding: 0 24px 50px;
}
.hwr-cta-box {
  position: relative;
  max-width: 1100px;
  min-height: 260px;
  margin: 0 auto;
  background-image: url('../images/blog-2-3.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hwr-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 50, 96, 0.34);
}
.hwr-cta-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
}
.hwr-cta-title {
  font-size: 44px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px;
}
.hwr-cta-sub {
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.92);
  line-height: 1.7;
  margin: 0 0 22px;
}

@media (max-width: 992px) {
  .hwr-split-inner,
  .hwr-trust-grid,
  .hwr-features-grid,
  .hwr-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hwr-section-heading {
    font-size: 32px;
  }
}
@media (max-width: 640px) {
  .hwr-featured-section,
  .hwr-split-section,
  .hwr-steps-section,
  .hwr-features-section,
  .hwr-trust-section,
  .hwr-table-section,
  .hwr-faq-section,
  .hwr-cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hwr-split-inner,
  .hwr-trust-grid,
  .hwr-features-grid,
  .hwr-steps-grid {
    grid-template-columns: 1fr;
  }
  .hwr-featured-box {
    min-height: 320px;
  }
  .hwr-featured-title,
  .hwr-section-heading,
  .hwr-trust-title,
  .hwr-cta-title {
    font-size: 26px;
  }
  .hwr-featured-sub,
  .hwr-cta-sub,
  .hwr-text,
  .hwr-faq-list li {
    font-size: 13.5px;
  }
  .hwr-comparison-heading {
    font-size: 26px;
    margin-bottom: 14px;
  }
  .hwr-comparison-sub {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .hwr-comparison-divider {
    margin-bottom: 20px;
  }
  .hwr-comparison-table {
    min-width: 520px;
  }
  .hwr-comparison-table th,
  .hwr-comparison-table td,
  .hwr-stars-note {
    font-size: 13px;
  }
  .hwr-comparison-table .hwr-stars {
    font-size: 15px;
    letter-spacing: 1.5px;
  }
  .hwr-comparison-divider--bottom {
    margin-top: 48px;
  }
}

/* ═══════════════════════════════════════════════════════════
   BLOG5 - THE ULTIMATE GUIDE PAGE
═══════════════════════════════════════════════════════════ */
.blog-post-hero--5 {
  background-image: url('../images/slider-3.webp');
}

.blog-post-hero--6 {
  background-image: url('../images/slider-3.webp');
}

.tuw-featured-section,
.tuw-why-section,
.tuw-types-section,
.tuw-facts-section,
.tuw-table-section,
.tuw-install-section,
.tuw-faq-section,
.tuw-cta-section {
  background: #ffffff;
}

.tuw-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.tuw-section-divider {
  width: 80px;
  height: 1.5px;
  margin: 0 auto 28px;
  background: #071f73;
  border-radius: 2px;
}

.tuw-section-title {
  font-size: 41px;
  font-weight: 700;
  line-height: 1.18;
  color: #071f73;
  text-align: center;
  margin: 0 0 50px;
}

.tuw-section-title--left {
  text-align: left;
}

.tuw-section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #3a3a3a;
  text-align: center;
  margin: 0 0 34px;
}

.tuw-body-text {
  font-size: 16px;
  line-height: 1.5;
  color: #3a3a3a;
  margin: 0 0 18px;
}

.tuw-rounded-image {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.tuw-featured-section {
  padding: 64px 24px 70px;
}

.tuw-featured-box {
  position: relative;
  max-width: 1100px;
  min-height: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url('../images/blog-5.webp');
  background-position: center;
  background-size: cover;
}

.tuw-featured-overlay {
  position: absolute;
  inset: 0;
  background: rgb(32, 50, 96,0.4);
}

.tuw-featured-content {
  position: relative;
  z-index: 1;
}

.tuw-featured-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.28;
  color: #121212;
  margin: 0 0 16px;
}

.tuw-featured-sub {
  font-size: 1.3rem;
  line-height: 1.65;
  color: #222222;
  margin: 0 0 24px;
}

.tuw-featured-actions {
  display: flex;
  justify-content: center;
}

.tuw-why-section {
  padding: 0 24px 72px;
}

.tuw-why-inner,
.tuw-install-inner,
.tuw-cta-shell {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.tuw-readmore {
  font-style: italic;
  font-size: 14px;
  color: #012169;
  margin: 0;
}

.tuw-readmore a {
  font-style: italic;
  color: #012169;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.tuw-types-section,
.tuw-facts-section,
.tuw-table-section {
  padding: 0 24px 72px;
}

.tuw-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.tuw-type-card {
  background: #ffffff;
}

.tuw-type-image {
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
}

.tuw-type-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  color: #3a3a3a;
  margin: 0 0 10px;
}

.tuw-type-text {
  font-size: 16px;
  line-height: 1.5;
  color: #3a3a3a;
  margin: 0;
}

.tuw-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 28px;
}

.tuw-fact-item {
  min-width: 0;
}

.tuw-fact-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  color: #3a3a3a;
  margin: 0 0 10px;
}

.tuw-fact-dot {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  flex: 0 0 8px;
  background: #5ea4da;
}

.tuw-fact-text {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
  margin: 0;
}

.tuw-table-title {
  margin-bottom: 28px;
}

.tuw-table-wrap {
  overflow-x: auto;
}

.tuw-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.tuw-table thead tr {
  border-top: 1px solid #bcc3cc;
  border-bottom: 1px solid #bcc3cc;
}

.tuw-table th,
.tuw-table td {
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  text-align: left;
  color: #3f4652;
}

.tuw-table th {
  font-weight: 700;
  color: #242b36;
}

.tuw-table tbody tr:nth-child(even) {
  background: #f6f6f6;
}

.tuw-table-note {
  font-size: 20px;
  line-height: 1.7;
  color: #3a3a3a;
  margin: 25px 0 0;
}

.tuw-install-section {
  padding: 0 24px 72px;
}

.tuw-install-text .tuw-body-text:last-of-type {
  margin-bottom: 0;
}

.tuw-install-list {
  list-style: disc;
  padding-left: 20px;
  margin: 18px 0 20px;
}

.tuw-install-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
}

.tuw-faq-section {
  padding: 0 24px 66px;
}

.tuw-faq-section .ee-faq-inner {
  max-width: 1100px;
}

.tuw-cta-section {
  padding: 0 24px 50px;
}

.tuw-cta-shell {
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.tuw-cta-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
  color: #071f73;
  margin: 0 0 16px;
}

.tuw-cta-sub {
  font-size: 16px;
  line-height: 1.85;
  color: #3a3a3a;
  margin: 0 0 20px;
}

.tuw-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tuw-cta-media img {
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
}

@media (max-width: 992px) {
  .tuw-section-title,
  .tuw-featured-title {
    font-size: 34px;
  }

  .tuw-why-inner,
  .tuw-install-inner,
  .tuw-cta-shell,
  .tuw-facts-grid,
  .tuw-types-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tuw-why-inner,
  .tuw-install-inner,
  .tuw-cta-shell {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .tuw-featured-section,
  .tuw-why-section,
  .tuw-types-section,
  .tuw-facts-section,
  .tuw-table-section,
  .tuw-install-section,
  .tuw-faq-section,
  .tuw-cta-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tuw-featured-box {
    min-height: 280px;
  }

  .tuw-section-title,
  .tuw-featured-title,
  .tuw-cta-title {
    font-size: 26px;
  }

  .tuw-why-inner,
  .tuw-install-inner,
  .tuw-cta-shell,
  .tuw-types-grid,
  .tuw-facts-grid {
    grid-template-columns: 1fr;
  }

  .tuw-section-sub,
  .tuw-featured-sub,
  .tuw-body-text,
  .tuw-fact-text,
  .tuw-type-text,
  .tuw-cta-sub,
  .tuw-table-note {
    font-size: 13.5px;
  }

  .tuw-fact-title {
    font-size: 15px;
  }

  .tuw-table {
    min-width: 520px;
  }
}

/* ═══════════════════════════════════════════════════════════
   BLOG6 - CHOOSE THE RIGHT ELECTRIC WATER HEATER PAGE
═══════════════════════════════════════════════════════════ */
.is-hidden-fallback {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   WATER HEATER INSTALLATION PAGE
═══════════════════════════════════════════════════════════ */
.top-bar--simple {
  padding: 7px 0;
}

.top-bar-inner--simple {
  justify-content: space-between;
}

.top-bar--simple .top-bar-left,
.top-bar--simple .top-bar-right {
  gap: 8px;
}

.top-bar--simple .top-social {
  justify-content: center;
}

.top-bar--simple .top-bar-right span {
  justify-content: flex-end;
}

.whi-page {
  background: #ffffff;
}

.whi-shell {
  width: min(78vw, 1080px);
  margin: 0 auto;
}

.whi-hero {
  position: relative;
  min-height: 525px;
  background: url('../images/about-back.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.whi-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 16, 26, .42);
}

.whi-hero-inner {
  position: relative;
  z-index: 1;
}

.whi-hero-title {
  font-size: 3.42rem;
  line-height: 1.15;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -.03em;
}

.whi-intro-section {
  padding: 70px 0 54px;
}

.whi-intro-panel {
  background:
    linear-gradient(90deg, rgba(20, 23, 34, .7) 0%, rgba(20, 23, 34, .8) 44%, rgba(20, 23, 34, .8) 100%),
    url('../images/blog-5.webp') center center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 24px 70px rgba(10, 22, 58, .12);
  padding: 58px 50px 34px;
}

.whi-intro-main {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 360px);
  gap: 44px;
  align-items: center;
}

.whi-eyebrow,
.whi-section-label {
      font-size: 16px;
    font-weight: 500;   
}

.whi-eyebrow {
  color: rgba(255, 255, 255);
  margin-bottom: 18px;
}

.whi-intro-title {
    font-size: 50px;
    line-height: 1.5;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.whi-intro-text {
    color: #cbd5e1;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.7;
}

.whi-intro-text + .whi-intro-text {
  margin-top: 50px;
}

.whi-intro-actions,
.whi-bottom-cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.whi-intro-actions {
  margin-top: 55px;
}

.whi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .78rem;
  font-weight: 600;
  transition: var(--transition);
}

.whi-btn--primary
{
  background: #012169;
  color: #ffffff;
}

.whi-btn--light  {
    background: #ffffff;
    color: #0d204f;
}

.whi-btn--ghost,
.whi-btn--outline-light {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, .46);
}

.whi-btn--primary:hover,
.whi-btn--light:hover {
  background: #082f84;
  transform: translateY(-2px);
}

.whi-btn--ghost:hover,
.whi-btn--outline-light:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-2px);
}

.whi-intro-side {
  position: relative;
  min-height: 440px;
}

.whi-intro-side-image {
  position: absolute;
  right: 42px;
  top: 8px;
  width: 126px;
}

.whi-intro-side-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, .22));
}

.whi-intro-side-card {
  box-shadow: 0px 0px #00000070;
    padding-top: 28px;
    padding-bottom: 28px;
    padding-left: 28px;
    padding-right: 28px;
    
    overflow: visible;
    order: initial;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    row-gap: 18px;
    column-gap: 20px;

}

.whi-intro-side-card h3 {
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 22px;
}

.whi-feature-list,
.whi-benefits-list,
.whi-bullet-list {
  margin: 0;
  padding-left: 2vw;
  list-style: none;
  padding-top: 1.5vw;
}

.whi-feature-list li,
.whi-benefits-list li,
.whi-bullet-list li {
  position: relative;
}


.whi-feature-list li {
    color: #e2e8f0;
    font-size: 17px;
    line-height: 1.9;
    list-style: disc;
}

.whi-side-divider {
    height: 1.5px;
    background: rgba(255, 255, 255);
    margin: 28px 0 18px;
}

.whi-side-help {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
}

.whi-side-copy {
    padding-top: 5vw;
    color: #cbd5e1;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
}

.whi-intro-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
  background: #ffffff;
  border-top: 4px solid #0f2f83;
  padding: 14px 22px 0;
}

.whi-strip-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 500;
  color: #24324d;
  text-align: center;
}

.whi-strip-item span {
  color: #0f2f83;
  font-weight: 700;
}

.whi-systems-section,
.whi-coverage-section {
  padding: 64px 0 66px;
}

.whi-section-label {
  color: #3a3a3a;
  margin-bottom: 16px;
}

.whi-section-label--light {
  color: rgba(255, 255, 255);
}
#faq{
  color: #4A90E2;
}
.whi-section-title {
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: -.03em;
    font-weight: 700;
    margin: 0;
}

.whi-section-title--dark {
  color: #3a3a3a;
}

.whi-section-title--light {
  color: #ffffff;
}

.whi-section-title--left,
.whi-section-sub--left {
  text-align: left;
}

.whi-section-sub {
  padding-top: 2vw;
    color: #475569;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.8;
}



.whi-section-sub--light {
  color: #cbd5e1;
}

.whi-system-grid,
.whi-dark-grid,
.whi-faq-grid {
  display: grid;
  gap: 18px;
}

.whi-system-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}

.whi-system-card,
.whi-benefits-card,
.whi-faq-card {
    border-radius: 28px;
    background-color: #f8fafc;
    padding-top: 34px;
    padding-right: 30px;
    padding-bottom: 34px;
    padding-left: 30px;
    box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.2);;
}

.whi-system-card {
  min-height: 122px;
  padding: 28px 24px 24px;
}

.whi-system-card--accent {
    border-radius: 24px;
    color: #1e293b;
    background-color: #eef2ff;
    padding-top: 28px;
    padding-right: 26px;
    padding-bottom: 28px;
    padding-left: 26px;
    box-shadow: 12px 12px 50px rgba(0, 0, 0, 0.4);
}


.whi-benefits-card h3,
.whi-faq-card h3,
.whi-dark-card h3 {
    color: #3a3a3a;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 700;
}
.whi-system-card h3 , .whi-system-card p , .whi-coverage-copy p , .whi-benefits-card p{
  color: #3a3a3a;
}



.whi-faq-card p,
.whi-dark-card p,
.whi-bottom-cta-text {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
}



.whi-dark-section,
.whi-faq-section {
  padding: 10px 0 68px;
}

.whi-dark-panel,
.whi-faq-shell {
    background-position: center center;
    background-attachment: fixed;
    background-image: url(../images/service-back.webp);
    padding: 104px 48px 42px;
}

.whi-dark-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}

.whi-dark-card {
    border-radius: 24px;
    background-color: rgba(255, 255, 255, 0.07);
    padding-top: 30px;
    padding-right: 26px;
    padding-bottom: 30px;
    padding-left: 26px;
    box-shadow: 12px 12px 50px rgba(0, 0, 0, 0.4);;
}

.whi-dark-card h3,
.whi-dark-card p,
.whi-bottom-cta-title,
.whi-bottom-cta-text {
  color: #ffffff;
  
}

.whi-dark-card p {
  opacity: .82;
  font-weight: 500;
  padding-top: 1vw;
}

.whi-coverage-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items: start;
}

.whi-bullet-list {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.whi-bullet-list li,
.whi-benefits-list li {
    color: #334155;
    font-size: 17px;
    line-height: 1.5;
    list-style: disc;
}


.whi-benefits-card {
  padding: 30px 28px;
}

.whi-benefits-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.whi-faq-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 32px;
}

.whi-faq-card {
  min-height: 148px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: none;
  padding: 24px 22px;
}

.whi-faq-card h3,
.whi-faq-card p {
  color: #ffffff;
}

.whi-faq-card p {
  opacity: .82;
}

.whi-bottom-cta {
  text-align: center;
  margin-top: 42px;
  padding: 120px 22px 12px;
}

.whi-bottom-cta-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 18px;
}

.whi-bottom-cta-text {
  margin: 0 auto 28px;
  opacity: .84;
}

.whi-bottom-cta-actions {
  justify-content: center;
}

@media (max-width: 1180px) {
  .whi-shell {
    width: min(88vw, 1080px);
  }

  .whi-intro-main {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 30px;
  }

  .whi-intro-title,
  .whi-section-title {
    font-size: 2.42rem;
  }

  .whi-hero-title {
    font-size: 2.9rem;
  }
}

@media (max-width: 960px) {
  .top-bar--simple .top-bar-inner {
    flex-direction: column;
    gap: 6px;
  }

  .whi-hero {
    min-height: 400px;
  }

  .whi-intro-panel,
  .whi-dark-panel,
  .whi-faq-shell {
    padding: 34px 24px;
  }

  .whi-intro-main,
  .whi-coverage-grid,
  .whi-dark-grid,
  .whi-faq-grid,
  .whi-system-grid,
  .whi-intro-strip {
    grid-template-columns: 1fr;
  }

  .whi-intro-side {
    min-height: 0;
  }

  .whi-intro-side-image,
  .whi-intro-side-card {
    position: relative;
    right: auto;
    top: auto;
  }

  .whi-intro-side-image {
    width: 112px;
    margin: 0 auto -54px;
    z-index: 1;
  }

  .whi-intro-side-card {
    min-height: 0;
    padding-top: 74px;
  }

  .whi-intro-strip {
    padding: 18px 18px 0;
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .top-bar--simple {
    font-size: .74rem;
  }

  .whi-shell {
    width: min(92vw, 1080px);
  }

  .whi-hero {
    min-height: 330px;
  }

  .whi-hero-title {
    font-size: 2.1rem;
  }

  .whi-intro-section,
  .whi-systems-section,
  .whi-coverage-section,
  .whi-dark-section,
  .whi-faq-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .whi-intro-title,
  .whi-section-title,
  .whi-bottom-cta-title {
    font-size: 1.8rem;
  }

  .whi-system-card,
  .whi-dark-card,
  .whi-faq-card,
  .whi-benefits-card {
    padding: 22px 18px;
  }

  .whi-system-card h3,
  .whi-benefits-card h3,
  .whi-faq-card h3,
  .whi-dark-card h3 {
    font-size: 1.12rem;
  }

  .whi-btn {
    width: 100%;
  }

  .whi-intro-actions,
  .whi-bottom-cta-actions {
    gap: 10px;
  }
}

.rwh-featured-section,
.rwh-why-section,
.rwh-factors-section,
.rwh-tips-section,
.rwh-mistakes-section,
.rwh-faq-section,
.rwh-cta-section {
  background: #ffffff;
}

.rwh-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.rwh-divider {
  width: 80px;
  height: 1.5px;
  background: #071f73;
  border-radius: 2px;
  margin: 0 auto 30px;
}

.rwh-section-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.22;
  color: #071f73;
  margin: 0 0 50px;
  text-align: center;
}

.rwh-section-title--left {
  text-align: left;
}

.rwh-section-sub,
.rwh-body-text,
.rwh-tip-bullets li,
.rwh-list li {
  font-size: 16px;
  line-height: 1.5;
  color: #3a3a3a;
  list-style: disc;
}

.rwh-body-text {
  margin: 0 0 14px;
}

.rwh-rounded-image {
  width: 100%;
  display: block;
  border-radius: 14px;
}

.rwh-readmore {
  margin: 0;
  font-style: italic;
  font-size: 13.5px;
  color: #012169;
}

.rwh-readmore a {
  color: #012169;
  text-decoration: underline;
}

.rwh-featured-section {
  padding: 62px 24px 66px;
}

.rwh-featured-box {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background-image: url('../images/blog5-4.webp');
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rwh-featured-overlay {
  position: absolute;
  inset: 0;
  background: rgb(1, 33, 105,0.4);
}

.rwh-featured-content {
  position: relative;
  z-index: 1;
}

.rwh-featured-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 12px;
}

.rwh-featured-sub {
  font-size: 1.2rem;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.96);
  margin: 0 auto 22px;
}
.extra-text{
  font-size: 0.9rem;
  color: #dddddd;
  margin-top: 2vw;
}
.rwh-featured-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.rwh-why-section {
  padding: 0 24px 72px;
}

.rwh-why-inner,
.rwh-tips-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.rwh-device-card img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rwh-device-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 58%);
}

.rwh-device-image {
  position: relative;
  z-index: 1;
  max-height: 320px;
  width: auto;
}

.rwh-device-tag {
  position: absolute;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.rwh-device-tag--top {
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
}

.rwh-device-tag--left {
  left: 18px;
  top: 46%;
}

.rwh-device-tag--right {
  right: 18px;
  top: 34%;
}

.rwh-device-tag--bottom {
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.rwh-factors-section,
.rwh-tips-section,
.rwh-mistakes-section,
.rwh-faq-section {
  padding: 0 24px 72px;
}

.rwh-section-sub {
  max-width: 620px;
  margin: 0 auto 34px;
  text-align: center;
}

.rwh-factors-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 30px;
}

.rwh-factor-card {
  min-width: 0;
}

.rwh-factor-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #3a3a3a;
  margin: 0 0 12px;
}

.rwh-list,
.rwh-tip-bullets {
  margin: 0;
  padding-left: 18px;
}

.rwh-list {
  margin-bottom: 14px;
}

.rwh-tips-section .rwh-section-title {
  max-width: 760px;
}

.rwh-tip-bullets {
  padding-left: 20px;
}

.rwh-tip-bullets li {
  margin-bottom: 10px;
}

.rwh-mistakes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 28px;
}

.rwh-mistake-card {
  position: relative;
  padding-left: 22px;
}

.rwh-mistake-card::before {
  content: '\00D7';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 36px;
  line-height: 1;
  color: #3a3a3a;
  font-weight: 700;
}

.rwh-mistake-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #3a3a3a;
  margin: 0 0 8px;
}


.rwh-faq-section .ee-faq-heading {
  font-size: 44px;
  margin-bottom: 24px;
}

.rwh-faq-section .ee-faq-trigger {
  font-size: 16px;
  color: #1f2937;
}

.rwh-faq-section .ee-faq-trigger .ee-faq-arrow {
  color: #c8102e;
}

.rwh-faq-section .ee-faq-trigger:hover {
  color: #c8102e;
}

.rwh-faq-section .ee-faq-arrow {
  color: #1f2937;
  font-size: 11px;
  margin-top: 4px;
}

.rwh-faq-section .ee-faq-item.open .ee-faq-arrow {
  color: #c8102e;
}

.rwh-faq-section .ee-faq-answer p {
  font-size: 16px;
}

.rwh-cta-section {
  padding: 0 24px 50px;
}

.rwh-cta-box {
  position: relative;
  min-height: 300px;
  background-image: url('../images/blog-6.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.rwh-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.rwh-cta-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
}

.rwh-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 12px;
}

.rwh-cta-sub {
  font-size: 1.2rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 22px;
}

.rwh-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .rwh-why-inner,
  .rwh-tips-split,
  .rwh-factors-grid,
  .rwh-mistakes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rwh-featured-title,
  .rwh-faq-section .ee-faq-heading {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .rwh-featured-section,
  .rwh-why-section,
  .rwh-factors-section,
  .rwh-tips-section,
  .rwh-mistakes-section,
  .rwh-faq-section,
  .rwh-cta-section,
  .bp-comments-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .rwh-why-inner,
  .rwh-tips-split,
  .rwh-factors-grid,
  .rwh-mistakes-grid {
    grid-template-columns: 1fr;
  }

  .rwh-section-title,
  .rwh-featured-title,
  .rwh-faq-section .ee-faq-heading,
  .rwh-cta-title {
    font-size: 24px;
  }

  .rwh-featured-box {
    min-height: 300px;
  }

  .rwh-featured-content {
    padding: 32px 22px;
  }

  .rwh-device-card {
    min-height: 300px;
  }

  .rwh-device-image {
    max-width: 70%;
    max-height: 250px;
  }

  .rwh-device-tag {
    font-size: 10px;
    padding: 5px 8px;
  }
}

/* ═══════════════════════════════════════════════════════════
   BLOG POST PAGE — CONTENT SECTIONS
═══════════════════════════════════════════════════════════ */
.bp-content-section {
  padding: 56px 24px 60px;
}
.bp-white { background: #ffffff; }
.bp-gray  { background: #f8fafc; }

.bp-content-inner {
  max-width: 1030px;
  margin: 0 auto;
}
.bp-content-heading {
  font-size: 44px;
  font-weight: 600;
  color: #071f73;
  line-height: 1.2;
  margin: 0 0 20px;
}
.bp-content-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 20px;
}
.bp-list {
  list-style: disc;
  padding-left: 24px;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bp-list li {
  font-size: 15px;
  color: #0f172a;
  line-height: 1.7;
}
.bp-list li strong {
  color: #111827;
}
.bp-content-italic {
  font-size: 14.5px;
  font-style: italic;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 20px;
}
.bp-gray-text { color: #6b7280; }
.bp-content-cta-text {
  font-size: 15px;
  color: #374151;
  margin: 24px 0 16px;
}
.bp-content-cta-text strong { color: #111827; }
.bp-red-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #cf2e2e;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  transition: background .25s ease, transform .2s ease;
}
.bp-red-btn:hover {
  background: #c73030;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .bp-content-heading { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICE 1 - ELECTRIC WATER HEATERS UAE
═══════════════════════════════════════════════════════════ */
.ews-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.ews-hero {
  position: relative;
  min-height: 500px;
  background-image: url('../images/about-back.webp');
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ews-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.ews-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}

.ews-hero-title {
  font-size: 57px;
  font-weight: 700;
  line-height: 1.18;
  color: #ffffff;
  margin: 0;
}

.ews-intro-section,
.ews-systems-section,
.ews-dark-section,
.ews-coverage-section,
.ews-faq-section {
  background: #ffffff;
}

.ews-intro-section {
  padding: 58px 0 62px;
}

.ews-intro-panel {
  position: relative;
  background-image: url('../images/blog-2-3.webp');
  padding: 50px 32px 0;
  overflow: hidden;
}

.ews-intro-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.ews-intro-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 5vw;
}

.ews-eyebrow,
.ews-section-label {
    color: #93c5fd;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.ews-intro-title {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.08;
}

.ews-intro-text {
    color: #e5e7eb;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 20px;
    line-height: 1.75;
}

.ews-intro-actions,
.ews-bottom-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ews-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.ews-btn:hover {
  transform: translateY(-1px);
}

.ews-btn--primary {
  background: #012169;
  color: #ffffff;
}

.ews-btn--ghost {
  border: 1px solid rgba(255,255,255,0.7);
  color: #ffffff;
}

.ews-btn--light {
  background: #ffffff;
  color: #0d204f;
}

.ews-btn--outline-light {
  border: 1px solid rgba(255,255,255,0.55);
  color: #ffffff;
}

.ews-intro-card {
  background: #012169;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 20px 50px rgba(2, 8, 28, 0.24);
}

.ews-intro-card-image {
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 14px;
}

.ews-intro-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.ews-intro-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ews-mini-card {
  min-width: 0;
  padding: 15px 16px 16px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
}

.ews-mini-card h3,
.ews-system-card h3,
.ews-dark-card h3,
.ews-benefits-card h3,
.ews-faq-card h3 {
        margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 700;
}

.ews-mini-card h3,
.ews-dark-card h3,
.ews-faq-card h3 {
  color: #ffffff;
}

.ews-mini-card p,
.ews-dark-card p,
.ews-faq-card p,
.ews-system-card p,


.ews-bullet-list li,
.ews-benefits-list li,
.ews-bottom-cta-text {
    color: #0f172a;
    font-size: 15px;
    line-height: 1.9;
    list-style: disc;
    font-weight: 500;
}


.ews-benefits-card p , .ews-section-sub{
    color: #475569;
    margin-top: 16px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.8;
}
.ews-mini-card p,
.ews-dark-card p,
.ews-faq-card p,
.ews-section-sub--light,
.ews-bottom-cta-text {
  color: rgba(255,255,255,0.84);
}

.ews-intro-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 32px 28px 30px;
  background: #ffffff;
  border-top: 20px solid #0b1631;
  border-bottom: 20px solid #0b1631;
}

.ews-intro-strip-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  text-align: center;
}

.ews-intro-strip-check {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  color: #0b1631;
  margin-top: 1px;
}

.ews-intro-strip-text {
  display: block;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: #0b173f;
}

.ews-systems-section {
  padding: 30px 0 64px;
}

.ews-section-title {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.12;
}

.ews-section-title--dark {
  color: #3a3a3a;
}

.ews-section-title--light {
  color: #ffffff;
}

.ews-section-title--left {
  text-align: left;
}

.ews-section-sub {
    
    margin-top: 0;
    margin-bottom: 42px;
    font-size: 18px;
    line-height: 1.8;
}
.ews-section-sub2 {
    color: #cbd5e1;
    margin-top: 0;
    margin-bottom: 42px;
    font-size: 18px;
    line-height: 1.8;
}


.ews-section-sub--left {
  margin-left: 0;
}

.ews-system-grid,
.ews-dark-grid,
.ews-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ews-system-card,
.ews-benefits-card {
      border-radius: 24px;
    background-color: #f8fafc;
    padding-top: 30px;
    padding-right: 26px;
    padding-bottom: 30px;
    padding-left: 26px;
    box-shadow: 6px 6px 9px rgba(0, 0, 0, 0.2);;
}

.ews-system-card h3,
.ews-benefits-card h3 {
  color: #3a3a3a;
}

.ews-dark-section {
  padding: 10px 0 64px;
}

.ews-dark-panel,
.ews-faq-shell {
  background-image: url('../images/service-back.webp');
  background-position: center;
  background-repeat: no-repeat;

  background-size: cover;
  padding: 100px 28px 36px;
  background-attachment: fixed;
}

.ews-dark-grid {
  margin-top: 18px;
}

.ews-dark-card,
.ews-faq-card {
  border-radius: 16px;
  padding: 22px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.ews-coverage-section {
  padding: 10px 0 64px;
}

.ews-coverage-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: start;
  background-color:  #f8fafc;;
}

.ews-bullet-list,
.ews-benefits-list {
  margin: 20px 0 0;
  padding-left: 18px;
}



.ews-faq-section {
  padding: 10px 0 72px;
}

.ews-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.ews-bottom-cta {
  max-width: 860px;
  margin: 150px auto 0;
  text-align: center;
}

.ews-bottom-cta-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.14;
  color: #ffffff;
  margin: 0 0 12px;
}

.ews-bottom-cta-text {
  margin: 0 auto 22px;
}

.ews-bottom-cta-actions {
  justify-content: center;
}

@media (max-width: 1100px) {
  .ews-hero-title,
  .ews-intro-title,
  .ews-section-title,
  .ews-bottom-cta-title {
    font-size: 42px;
  }
}

@media (max-width: 900px) {
  .ews-intro-main,
  .ews-coverage-grid,
  .ews-system-grid,
  .ews-dark-grid,
  .ews-faq-grid {
    grid-template-columns: 1fr;
  }

  .ews-intro-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ews-intro-title,
  .ews-section-title,
  .ews-bottom-cta-title {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .ews-shell {
    width: min(1120px, calc(100% - 32px));
  }

  .ews-hero {
    min-height: 360px;
  }

  .ews-hero-title,
  .ews-intro-title,
  .ews-section-title,
  .ews-bottom-cta-title {
    font-size: 30px;
  }

  .ews-intro-panel,
  .ews-dark-panel,
  .ews-faq-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ews-intro-card-grid,
  .ews-intro-strip {
    grid-template-columns: 1fr;
  }

  .ews-intro-strip {
    padding: 22px 18px;
  }

  .ews-intro-strip-item {
    justify-content: flex-start;
    text-align: left;
    padding: 0;
  }

  .ews-intro-strip-text {
    font-size: 14px;
  }

  .ews-intro-card-image img {
    height: 210px;
  }

  .ews-btn,
  .ews-btn--light,
  .ews-btn--outline-light {
    width: 100%;
  }
}

.swhs-intro-panel {
  background-image: url('../images/blog-6.webp');
}

.swhs-intro-card {
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(2, 8, 28, 0.28);
}

.swhs-intro-card-image {
  margin-bottom: 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(236, 241, 255, 0.88) 100%);
}

.swhs-intro-card-image img {
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.swhs-mini-card {
  min-height: 118px;
}

.swhs-mini-card h3 {
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.swhs-mini-card p {
  font-size: 12px;
  line-height: 1.55;
}

.swhs-systems-section .ews-system-card,
.swhs-coverage-section .ews-benefits-card {
  border-radius: 20px;
}

.whr-intro-panel {
  background:
    linear-gradient(90deg, rgba(20, 23, 34, .76) 0%, rgba(20, 23, 34, .84) 52%, rgba(20, 23, 34, .76) 100%),
    url('../images/blog-4-1.webp') center center / cover no-repeat;
}

.whr-intro-side {
  min-height: 0;
}

.whr-intro-side-card {
  background-color: rgba(41, 41, 41, 0.58);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.whr-intro-side-card h3 {
  margin-bottom: 18px;
}

.whr-intro-section .whi-side-divider {
  margin: 24px 0 16px;
}

.whr-systems-section .whi-system-card,
.whr-coverage-section .whi-benefits-card {
  border-radius: 20px;
}

.whr-faq-section .whi-bottom-cta {
  padding-top: 112px;
}

@media (max-width: 900px) {
  .swhs-intro-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .whr-intro-side-card {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (max-width: 640px) {
  .swhs-intro-card {
    padding: 12px;
    border-width: 5px;
  }

  .swhs-intro-card-image img {
    height: 210px;
  }
}

@media (max-width: 480px) {
  .bp-content-heading { font-size: 22px; }
  .bp-content-section { padding: 40px 20px 44px; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG POST PAGE — FAQ ACCORDION
═══════════════════════════════════════════════════════════ */
.bp-faq-section {
  background: #ffffff;
  padding: 56px 24px 72px;
}
.bp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.bp-faq-item {
  border: 1px solid #000000;
  border-radius: 12px;
  background: #f8fafc;
  overflow: hidden;
}
.bp-faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-main);
  font-size: 15.5px;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.bp-faq-trigger:hover { background: #f0f2f8; }
.bp-faq-arrow {
  font-size: 11px;
  color: #374151;
  flex-shrink: 0;
  transition: transform .3s ease;
  display: inline-block;
}
.bp-faq-item.open .bp-faq-arrow {
  transform: rotate(0deg);
}
.bp-faq-item:not(.open) .bp-faq-arrow {
  transform: rotate(-90deg);
}
.bp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}
.bp-faq-item.open .bp-faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}
.bp-faq-answer p {
  font-size: 16px;
  color: #475569;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 600px) {
  .bp-faq-trigger { font-size: 14.5px; padding: 16px 18px; }
  .bp-faq-item.open .bp-faq-answer { padding: 0 18px 16px; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG POST PAGE — STILL NO HOT WATER CTA
═══════════════════════════════════════════════════════════ */
.bp-cta-banner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 0;
  min-height: 320px;
  background-image: url('../images/blog-1-1.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bp-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 80, .68);
}
.bp-cta-content {
  position: relative;
  z-index: 1;
  padding: 56px 32px;
  max-width: 700px;
}
.bp-cta-title {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.15;
}
.bp-cta-sub {
  font-size: 15.5px;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin: 0 0 28px;
}
.bp-cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #e84040;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  transition: background .25s ease, transform .2s ease;
}
.bp-cta-btn:hover {
  background: #c73030;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .bp-cta-title { font-size: 36px; }
  .bp-cta-banner { min-height: 260px; }
}
@media (max-width: 480px) {
  .bp-cta-title { font-size: 26px; }
  .bp-cta-content { padding: 40px 20px; }
}

/* ═══════════════════════════════════════════════════════════
   BLOG POST PAGE — LEAVE A REPLY
═══════════════════════════════════════════════════════════ */
.bp-comments-section {
  padding: 50px 24px 72px;
}
.bp-comments-inner {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 40px 48px 48px;
}
.bp-comments-heading {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px;
}
.bp-comments-notice {
  font-size: 14px;
  color: #374151;
  margin: 0 0 28px;
}
.bp-required { color: #c8102e; }
.bp-comment-form { display: flex; flex-direction: column; gap: 0; }
.bp-cf-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.bp-cf-group label {
  font-size: 13.5px;
  font-weight: 500;
  color: #3a3a3a;
  margin-bottom: 6px;
}
.bp-cf-group input,
.bp-cf-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #949494;
  font-family: var(--font-main);
  font-size: 14.5px;
  color: var(--color-text);
  background: #ffffff;
  outline: none;
  transition: border-color .25s ease;
}
.bp-cf-group input:focus,
.bp-cf-group textarea:focus {
  border-color: var(--color-primary);
}
.bp-cf-group textarea { resize: vertical; min-height: 160px; }
.bp-cf-full { margin-bottom: 24px; }
.bp-cf-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.bp-cf-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
}
.bp-cf-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.bp-cf-check label {
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
  cursor: pointer;
}
.bp-cf-submit {
  align-self: flex-start;
  padding: 14px 38px;
  background: #1a1a1a;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
}
.bp-cf-submit:hover {
  background: #333333;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   BLOG7 - MODERN WATER HEATER BENEFITS PAGE
═══════════════════════════════════════════════════════════ */
.blog-post-hero--7 {
  background-image: url('../images/slider-3.webp');
  min-height: 460px;
}

.mbh-featured-section,
.mbh-intro-section,
.mbh-benefits-section,
.mbh-smart-section,
.mbh-table-section,
.mbh-faq-section,
.mbh-cta-section {
  background: #ffffff;
}

.mbh-shell {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.mbh-divider {
  width: 80px;
  height: 1.5px;
  background: #071f73;
  border-radius: 2px;
  margin: 0 auto 34px;
}

.mbh-center-title,
.mbh-left-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #071f73;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
}

.mbh-center-title {
  text-align: center;
}

.mbh-center-sub,
.mbh-copy-text,
.mbh-table {
    font-size: 15px;
    line-height: 1.5;
    color: #3a3a3a
}
.mbh-note{
  font-size: 20px;
}
.mbh-readmore{

font-size: 15px;
line-height: 1.5;
color:#012169;

}
.mbh-center-sub {
  text-align: center;
  margin: 0 0 44px;
}

.mbh-copy-text {
  margin: 0 0 16px;
}

.mbh-readmore {
  margin: 8px 0 0;
  font-style: italic;
}

.mbh-readmore a {
  color: #012169;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mbh-image {
  width: 100%;
  display: block;
}

.mbh-featured-section {
  padding: 36px 0 66px;
}

.mbh-featured-card {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  background: url('../images/blog7.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mbh-featured-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32, 50, 96,0.4);
}

.mbh-featured-content {
  position: relative;
  z-index: 1;
  padding: 36px 28px;
}

.mbh-featured-title {
    color: #ffffff;
    font-size: 3.2rem;
    line-height: 1.2;
}

.mbh-featured-sub {
  margin: 0 auto 22px;
  color: #f5f5f5;
  font-size: 1.2rem;
  line-height: 1.7;
}

.mbh-featured-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mbh-featured-actions .bph-btn {
    padding: 10px 22px;
    font-size: 16px;
    font-weight: 500;
}

.extra{
      color: #dddddd;
    font-size: 0.9rem;
    padding-top: 2vw;
}
.mbh-intro-section {
  padding: 0 0 74px;
}

.mbh-intro-grid,
.mbh-smart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 42px;
  align-items: center;
}

.mbh-intro-copy {
  max-width: 500px;
}

.mbh-intro-media .mbh-image,
.mbh-smart-media .mbh-image {
  border-radius: 20px;
}

.mbh-benefits-section {
  padding: 0 0 84px;
}

.mbh-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 28px;
}

.mbh-benefit-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #3a3a3a;
  margin: 0 0 12px;
}

.mbh-smart-section {
  padding: 0 0 78px;
}

.mbh-smart-copy {
  max-width: 510px;
}

.mbh-table-section {
  padding: 0 0 76px;
}

.mbh-table-wrap {
  overflow-x: auto;
  margin-top: 30px;
}

.mbh-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.mbh-table thead tr {
  border-bottom: 1px solid #111827;
}

.mbh-table th,
.mbh-table td {
  padding: 8px 12px;
}

.mbh-table th {
    color: #3a3a3a;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}

.mbh-table td {
    font-size: 16px;
    color: #3f3f46;
}

.mbh-row-alt {
  background: #efefef;
}

.mbh-note {
  margin: 20px 0 20px;
}

.mbh-faq-section {
  padding: 0 0 72px;
}



.mbh-faq-section .ee-faq-heading {
  font-size: 44px;
  margin-bottom: 28px;
}

.mbh-faq-section .ee-faq-trigger {
  padding: 10px 0;
  font-size: 16px;
  color: #3f3f46;
}
.mbh-faq-section .ee-faq-trigger:hover {
  color: #cf2e2e;
}
.mbh-faq-section .ee-faq-trigger .ee-faq-arrow {
  color: #cf2e2e;
}
.mbh-faq-section .ee-faq-arrow {
  font-size: 10px;
  color: #111827;
}

.mbh-faq-section .ee-faq-answer p {
  font-size: 16px;
}

.mbh-cta-section {
  padding: 0 0 54px;
}

.mbh-cta-box {
  position: relative;
  min-height: 276px;
  overflow: hidden;
  background: url('../images/blog-6.webp') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mbh-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 56, 85, 0.4);
}

.mbh-cta-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 42px 24px 54px;
}

.mbh-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.22;
  color: #ffffff;
  margin: 0 0 10px;
}

.mbh-cta-sub {
  margin: 0 auto 22px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.94);
}

.mbh-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mbh-cta-actions .bph-btn {
    border-radius: 50px;
    padding-top: 16px;
    padding-right: 32px;
    padding-bottom: 16px;
    padding-left: 32px;
}

.mbh-cta-badge {
    padding-top: 2vw;
    color: #dddddd;
    font-size: 1rem;
}

@media (max-width: 992px) {
  .mbh-intro-grid,
  .mbh-smart-grid,
  .mbh-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mbh-intro-copy,
  .mbh-smart-copy {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .blog-post-hero--7 {
    min-height: 250px;
  }

  .mbh-shell {
    width: min(1100px, calc(100% - 40px));
  }

  .mbh-featured-section {
    padding-bottom: 52px;
  }

  .mbh-featured-card {
    min-height: 300px;
  }

  .mbh-intro-grid,
  .mbh-smart-grid,
  .mbh-benefits-grid {
    grid-template-columns: 1fr;
  }

  .mbh-center-title,
  .mbh-left-title,
  .mbh-faq-section .ee-faq-heading,
  .mbh-cta-title {
    font-size: 24px;
  }

  .mbh-featured-title {
    font-size: 20px;
  }

  .mbh-featured-sub,
  .mbh-cta-sub,
  .mbh-center-sub,
  .mbh-copy-text,
  .mbh-note,
  .mbh-readmore,
  .mbh-faq-section .ee-faq-trigger,
  .mbh-faq-section .ee-faq-answer p {
    font-size: 13px;
  }

  .mbh-benefit-title {
    font-size: 17px;
  }

  .mbh-table th,
  .mbh-table td {
    padding: 8px 10px;
  }

  .mbh-cta-box {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  .bp-cf-row { grid-template-columns: 1fr; }
  .bp-comments-inner { padding: 28px 24px 36px; }
}
@media (max-width: 480px) {
  .bp-comments-heading { font-size: 22px; }
  .bp-comments-inner { padding: 22px 16px 28px; }
}

/* ═══════════════════════════════════════════════════════════
   FLOATING BUTTONS
═══════════════════════════════════════════════════════════ */
.whatsapp-float {
  
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 900;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--color-accent-dark); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════════════════
   AOS override
═══════════════════════════════════════════════════════════ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 992px (tablet)
═══════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .logo img { height: 65px; }
  .header-right { gap: 32px; }
  .nav-link { padding: 8px 8px; font-size: 15px; }
  /* Features: stay in row but reduce font size */
  .feature-body h3 { font-size: 22px; }
  .feature-body p { font-size: 13px; }
  .feature-item { padding: 18px 20px; gap: 14px; }
  /* Slides: center text on tablet */
  .slide-desc { text-align: center; max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1100px
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .whyus-grid { grid-template-columns: repeat(2, 1fr); }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap img { height: 340px; }
  .about-badge { bottom: -14px; right: 14px; }
  .about-content .section-header { text-align: center; }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-info .section-header { text-align: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 1200px (tablet/small desktop slide fix)
═══════════════════════════════════════════════════════════ */
/* 1200px slide reset now handled by default base styles */

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .top-bar-center { display: none; }

  .main-nav {
    position: fixed;
    top: 128px;
    right: 0;
    width: 280px;
    height: calc(100vh - 128px);
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    transform: translateX(100%);
    transition: transform .35s ease;
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .nav-link { display: block; padding: 12px 16px; font-size: 1rem; border-radius: var(--radius-sm); }

  .hamburger { display: flex; }
  .logo img { height: 55px; padding: 4px; }
  .header-right { gap: 8px; }
  .header-cta { display: none; }

  .heroSwiper { height: 70vh; max-height: 600px; }
  /* Reset desktop-only slide offsets */

  .slide-content { padding: 0 6%; max-width: 100%; align-items: center; justify-content: center; text-align: center; }
  .slide-content h1 { text-align: center; width: 100%; }
  .slide-content h1 { font-size: 1.8rem; }
  .slide-desc { font-size: .93rem; margin-left: 0 !important; text-align: center; max-width: 100%; }
  .slide-buttons { margin-left: 0 !important; justify-content: center; width: 100%; }

  .stats-inner { flex-wrap: wrap; }
  .stat-item { min-width: 45%; padding: 24px 20px; }
  .stat-divider { display: none; }

  .features-inner { flex-direction: column; border-radius: 12px; }
  .feature-item { padding: 20px 24px; gap: 14px; }
  .feature-body h3 { font-size: 20px; }
  .feature-body p { font-size: 13px; }
  .feature-divider { width: auto; height: 1px; align-self: stretch; }

  .svc-header h2 { font-size: 22px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-title { width: auto !important; font-size: 16px; }
  #first-title { padding-left: 0 !important; width: auto !important; }
  .products-grid,
  .team-grid { grid-template-columns: 1fr; }

  .whyus-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 22px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col h4::after { left: 0; }

  .footer-bottom-inner { justify-content: center; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .heroSwiper { height: 90vh; }
  .slide-content { padding: 0 5%; align-items: center; justify-content: center; text-align: center; }
  .slide-content h1 { font-size: 1.5rem; text-align: center; width: 100%; }
  .slide-desc { text-align: center; max-width: 100%; }
  .slide-buttons { flex-direction: column; align-items: center; justify-content: center; width: 100%; }
  .btn-slide-contact, .btn-slide-services { width: 100%; justify-content: center; }
  .btn-primary, .btn-outline, .btn-slide-contact, .btn-slide-services { width: 100%; justify-content: center; }

  .stat-item { min-width: 100%; }

  .section-header h2 { font-size: 1.5rem; }

  .about-badge { position: static; margin-top: 16px; display: inline-block; }

  .contact-form-wrap { padding: 22px 16px; }

  .footer-grid { gap: 20px; }

  .whatsapp-float { bottom: 80px; right: 16px; width: 46px; height: 46px; font-size: 1.3rem; }
  .back-to-top { right: 16px; bottom: 16px; }

  /* Tables — let wrapper scroll, shrink internal min-width */
  .hwr-comparison-wrap,
  .tuw-table-wrap,
  .pi-table-wrap,
  .meh-table-wrap,
  .meg-table-wrap,
  [class*="-table-wrap"],
  [class*="-comparison-wrap"] { overflow-x: auto; }

  .hwr-comparison-table { min-width: 520px; }
  .tuw-table { min-width: 520px; }

  .services-grid { grid-template-columns: 1fr; }
  .svc-header h2 { font-size: 18px; }

  /* Trusted cards stack on small screens */
  .trusted-cards { flex-wrap: wrap; gap: 12px; }
.trusted-card { flex: 1 1 calc(50% - 6px); padding: 20px 12px; }
.trusted-card span { font-size: 16px; }
}

/* UK manual / certificate section */
.uk-manual-section {
  padding: 90px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
}

.uk-manual-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 44px;
  text-align: center;
}

.uk-manual-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.uk-manual-heading h2 {
  margin: 0;
  color: #33353b;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  font-weight: 300;
  letter-spacing: -.03em;
}

.uk-manual-line {
  width: min(220px, 18vw);
  height: 1px;
  background: rgba(51,53,59,.55);
}

.uk-manual-statement {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: clamp(2.3rem, 5.2vw, 4.9rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -.045em;
}

.uk-manual-muted {
  color: #999ca3;
}

.uk-manual-accent {
  color: #c8102e;
  font-weight: 400;
}

.uk-manual-flag {
  width: clamp(72px, 7vw, 118px);
  height: clamp(44px, 4.4vw, 74px);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(1,33,105,.12);
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
}

.uk-manual-subline {
  max-width: 780px;
  margin: -8px auto 0;
  color: #7a7e87;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 920px) {
  .uk-manual-heading {
    gap: 18px;
  }

  .uk-manual-line {
    width: min(130px, 18vw);
  }
}

@media (max-width: 640px) {
  .uk-manual-section {
    padding: 68px 0 42px;
  }

  .uk-manual-wrap {
    gap: 28px;
  }

  .uk-manual-heading {
    gap: 12px;
  }

  .uk-manual-line {
    width: 42px;
  }

  .uk-manual-statement {
    gap: 12px;
  }
}
