:root{
  --dark-green: #0f3d24;
  --mid-green: #1f6b3e;
  --light-green: #cfe9c7;
  --yellow: #f4d21c;
  --text-dark: #14311d;
  --white: #c2e1b6;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
}

.container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }

/* ================ TOP BAR ================ */
.topbar{
  background: var(--dark-green);
  color: var(--white);
  font-size: 14px;
}
.top-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 10px 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.left-info{
  display:flex;
  gap: 24px;
  flex-wrap: wrap;
}
.left-info span{
  display:flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
}
.right-info{
  display:flex;
  align-items:center;
  gap: 14px;
}
.right-info i{
  font-size: 15px;
}
.rating{ white-space:nowrap; }

/* ================ HEADER ================ */
header{
  position: relative;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 16px 24px;
  gap: 20px;
  flex-wrap: wrap;
}
.logo img{
  height: 44px;
}
.tagline{
  font-size: 12px;
  color: var(--mid-green);
  font-weight:500;
}
.mobile-nav-toggle{
  display:none;
  background:none;
  border: 1px solid var(--dark-green);
  border-radius:6px;
  padding: 8px 12px;
  font-size: 18px;
  color: var(--dark-green);
  cursor:pointer;
}

nav ul{
  display:flex;
  align-items:center;
  gap: 28px;
  font-weight:500;
  font-size: 15px;
}
/* Dropdown toggle buttons */
.has-dropdown{
  position: relative;
}

/* Invisible bridge so dropdown doesn't close while moving cursor */
.has-dropdown::after{
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
  z-index: 999;
}

.dropdown-toggle{
  background: none;
  border: none;
  font: inherit;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 0;
}

.arrow{
  font-size: 11px;
  transition: transform 0.2s ease;
}


/* Dropdown menu */
.dropdown-menu{
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  min-width: 230px;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(15,61,36,0.15);
  padding: 10px 0;
  z-index: 1000;
}

.dropdown-menu li a{
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 400;
}

.dropdown-menu li a:hover{
  background: var(--light-green);
  color: var(--mid-green);
}


/* ===============================
   HOVER DROPDOWN
   =============================== */

.has-dropdown:hover .dropdown-menu{
  display: block;
}

.has-dropdown:hover .arrow{
  transform: rotate(180deg);
}


/* Call button */
.call-btn{
  background: var(--yellow);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.call-btn:hover{
  background: #e6c400;
}

/* ================ HERO ================ */
.hero{
  background: var(--light-green);
  padding: 70px 0;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  align-items:center;
  gap: 50px;
}
.hero-left h1{
  font-size: clamp(30px, 4vw, 44px);
  color: var(--dark-green);
  font-weight:700;
  line-height:1.25;
  margin-bottom: 20px;
}
.hero-left h1 span{
  display:block;
  color: var(--mid-green);
  font-size: 0.6em;
  font-weight:600;
  margin-top: 8px;
}
.hero-left p{
  font-size: 16px;
  line-height:1.8;
  color: #35513f;
}

.hero-right{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 30px;
}
.eco-logo img{
  max-width: 220px;
}
.apply-box{
  background: var(--dark-green);
  color: var(--white);
  border-radius: 14px;
  padding: 28px;
  text-align:center;
  width: 100%;
}
.apply-box h2{
  font-size: 20px;
  font-weight:600;
  margin-bottom: 18px;
  line-height:1.4;
}
.apply-box a{
  display:inline-block;
  background: var(--yellow);
  color: var(--text-dark);
  font-weight:600;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 15px;
}
.apply-box a:hover{
  background:#e6c400;
}

/* ================ MOBILE ================ */
@media (max-width: 900px){
  .hero-grid{
    grid-template-columns: 1fr;
    text-align:left;
  }
  .hero-right{
    align-items:flex-start;
  }
}

@media (max-width: 768px){
  .top-flex{
    flex-direction:column;
    align-items:flex-start;
  }
  .right-info{
    width:100%;
    justify-content:space-between;
  }

  .mobile-nav-toggle{
    display:block;
  }

  nav{
    width:100%;
    display:none;
  }
  nav.mobile-open{
    display:block;
  }
  nav ul{
    flex-direction:column;
    align-items:flex-start;
    width:100%;
    gap: 4px;
  }
  .has-dropdown{
    width:100%;
  }
  .dropdown-toggle{
    width:100%;
    justify-content:space-between;
    padding: 12px 0;
  }
  .dropdown-menu{
    position: static;
    box-shadow:none;
    width:100%;
    padding-left: 14px;
  }

  .call-btn{
    width:100%;
    justify-content:center;
  }

  .hero{
    padding: 40px 0;
  }
  .apply-box{
    padding: 22px;
  }
}

/* ================================================ */
/* ============ GBIS SCHEME PAGE ADD-ON ============ */
/* ================================================ */

.gbis-hero{
  background: var(--light-green);
  padding: 60px 0 0;
}
.gbis-grid{
  display:grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items:start;
}

.gbis-left h1{
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--dark-green);
  font-weight:700;
  margin-bottom: 12px;
  line-height:1.3;
}
.gbis-left h3{
  font-size: clamp(20px, 2.6vw, 26px);
  color: var(--dark-green);
  font-weight:700;
  margin-bottom: 14px;
}
.gbis-left p{
  font-size: 16px;
  line-height:1.8;
  color: #35513f;
  margin-bottom: 26px;
}
.gbis-left h2.section-title{
  font-size: clamp(22px, 2.8vw, 28px);
  color: var(--dark-green);
  font-weight:700;
  margin: 30px 0 18px;
}

/* Apply box (reuses .apply-box) */
.gbis-right .apply-box{
  margin-bottom: 30px;
}

/* House diagram */
.house-diagram-wrap{
  position: relative;
  width: 100%;
}
.house-diagram-wrap img{
  width: 100%;
  display:block;
}
.house-label{
  position:absolute;
  font-weight:600;
  color: var(--dark-green);
  font-size: 18px;
  text-align:center;
  line-height:1.2;
}
.house-label span{
  display:block;
  font-size: 26px;
  font-weight:700;
}
.house-label.roof{ top: 0; right: 5%; }
.house-label.walls{ top: 42%; left: -6%; }
.house-label.floor{ bottom: 4%; right: -4%; }

.heat-loss-copy{
  font-size: 15px;
  line-height:1.8;
  color: #35513f;
  margin: 24px 0 10px;
}
.heat-loss-caption{
  font-style: italic;
  font-size: 14px;
  color: var(--mid-green);
  margin-bottom: 18px;
}
.heat-loss-stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align:center;
}
.heat-loss-stats .stat-num{
  font-size: clamp(26px, 3vw, 40px);
  font-weight:700;
  color: var(--dark-green);
}
.heat-loss-stats .stat-label{
  font-size: 14px;
  color: #35513f;
  margin-top: 4px;
}

/* Accordion */
.accordion{
  margin: 18px 0;
  border-radius: 10px;
  overflow:hidden;
}
.accordion-item + .accordion-item{
  margin-top: 14px;
}
.accordion-header{
  background: var(--dark-green);
  color: var(--white);
  font-weight:600;
  font-size: 16px;
  padding: 16px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  border-radius: 10px;
}
.accordion-header .toggle-icon{
  font-size: 18px;
  font-weight:700;
}
.accordion-body{
  background: #f4f4f4;
  padding: 0 20px;
  max-height: 0;
  overflow:hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  border-radius: 0 0 10px 10px;
}
.accordion-item.open .accordion-body{
  padding: 20px;
  max-height: 600px;
}
.accordion-body h4{
  color: var(--mid-green);
  font-size: 15px;
  margin-bottom: 6px;
}
.accordion-body p,
.accordion-body ul{
  font-size: 14px;
  line-height:1.8;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.accordion-body ul{
  padding-left: 4px;
}
.accordion-body ul li{
  margin-bottom: 4px;
}
.accordion-body a{
  text-decoration: underline;
  color: var(--mid-green);
}

/* Benefit cards */
.benefit-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0 70px;
}
.benefit-card{
  position: relative;
  border-radius: 14px;
  overflow:hidden;
  padding: 36px 26px;
  color: var(--white);
  background: linear-gradient(rgba(15,61,36,0.82), rgba(15,61,36,0.82)), center/cover no-repeat;
}
.benefit-card i{
  font-size: 30px;
  margin-bottom: 16px;
  display:block;
}
.benefit-card h3{
  font-size: 20px;
  font-weight:700;
  margin-bottom: 12px;
}
.benefit-card p{
  font-size: 14px;
  line-height:1.7;
  color: #eaf7e6;
}
.benefit-card p b{ color: var(--white); }

/* Insulation types section */
.insulation-covered{
  background: linear-gradient(135deg, var(--mid-green), var(--dark-green));
  color: var(--white);
  padding: 70px 0;
}
.insulation-covered h2{
  font-size: clamp(26px, 3vw, 34px);
  font-weight:700;
  margin-bottom: 24px;
}
.insulation-covered > .container > p{
  font-size: 16px;
  line-height:1.8;
  color: #dff1da;
  margin-bottom: 26px;
  max-width: 800px;
}
.insulation-list{
  display:flex;
  flex-direction:column;
  gap: 20px;
}
.insulation-list li{
  font-size: 16px;
  line-height:1.8;
  color: #eaf7e6;
}
.insulation-list li b{
  color: var(--white);
}

/* ============ MOBILE: GBIS ADD-ON ============ */
@media (max-width: 900px){
  .gbis-grid{
    grid-template-columns: 1fr;
  }
  .heat-loss-stats{
    grid-template-columns: repeat(2, 1fr);
  }
  .benefit-cards{
    grid-template-columns: 1fr;
  }
  .house-label.walls{ left: 2%; }
  .house-label.floor{ right: 2%; }
}

/* ================================================ */
/* ========= FREE BOILER GRANT PAGE ADD-ON ========= */
/* ================================================ */

.fbg-hero{
  background: var(--light-green);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.fbg-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items:start;
  position: relative;
  z-index: 2;
}
.fbg-left h1{
  font-size: clamp(30px, 4vw, 42px);
  color: var(--dark-green);
  font-weight:700;
  margin-bottom: 20px;
}
.fbg-left p{
  font-size: 16px;
  line-height:1.9;
  color: #35513f;
  margin-bottom: 24px;
}
.checklist{
  display:flex;
  flex-direction:column;
  gap: 14px;
  margin-bottom: 20px;
}
.checklist li{
  display:flex;
  align-items:center;
  gap: 12px;
  font-size: 17px;
  font-weight:600;
  color: var(--dark-green);
}
.checklist li i{
  color: var(--mid-green);
  font-size: 18px;
}

.fbg-right{
  position: relative;
}
.fbg-right .apply-box{
  text-align:left;
  margin-bottom: 40px;
}
.fbg-right .apply-box h2{
  font-size: 24px;
  margin-bottom: 20px;
}

.boiler-icon-wrap{
  position: relative;
  display:flex;
  justify-content:center;
}
.boiler-icon-wrap svg{
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* Decorative bottom curve like screenshot */


/* ================ TOC / STEP LIST ================ */
.fbg-toc-section{
  background: var(--mid-green);
  background: linear-gradient(160deg, var(--mid-green), var(--dark-green));
  padding: 60px 0 70px;
  position: relative;
  z-index: 2;
}
.toc-box{
  background: var(--light-green);
  border-radius: 14px;
  padding: 40px 44px;
  max-width: 950px;
  margin: 0 auto;
}
.toc-list{
  display:flex;
  flex-direction:column;
  gap: 26px;
}
.toc-list li{
  display:flex;
  align-items:flex-start;
  gap: 16px;
}
.toc-num{
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dark-green);
  color: var(--white);
  font-weight:700;
  font-size: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.toc-list a{
  font-weight:700;
  font-size: 17px;
  color: var(--dark-green);
  line-height:1.5;
}
.toc-list a:hover{
  color: var(--mid-green);
  text-decoration: underline;
}

/* Step guide heading + intro that follows the TOC */
.guide-intro{
  padding: 60px 0;
}
.guide-intro h2{
  font-size: clamp(24px, 3vw, 34px);
  color: var(--dark-green);
  font-weight:700;
  text-align:center;
  margin-bottom: 26px;
}
.guide-intro p{
  font-size: 16px;
  line-height:1.9;
  color: #35513f;
  max-width: 900px;
  margin: 0 auto;
  text-align:center;
}
.guide-intro hr{
  width: 80px;
  border: none;
  border-top: 3px solid var(--yellow);
  margin: 26px auto 0;
}

/* ============ MOBILE: FREE BOILER GRANT ADD-ON ============ */
@media (max-width: 900px){
  .fbg-grid{
    grid-template-columns: 1fr;
  }
  .fbg-curve{
    display:none;
  }
  .toc-box{
    padding: 28px 22px;
  }
}

/* ================================================ */
/* ======== FREE HEAT PUMP GRANT PAGE ADD-ON ======= */
/* ================================================ */

.hp-icon-wrap{
  position: relative;
  display:flex;
  justify-content:center;
}
.hp-icon-wrap svg{
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* ---- Dark section: image + free installation copy ---- */
.hp-dark-section{
  background: linear-gradient(160deg, var(--mid-green), var(--dark-green));
  padding: 70px 0;
  color: var(--white);
}
.hp-dark-grid{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items:center;
}
.hp-dark-img{
  position: relative;
  border-radius: 0 120px 0 0;
  overflow:hidden;
}
.hp-dark-img img{
  width: 100%;
  display:block;
  border-radius: 0 120px 0 0;
}
.hp-dark-copy h2{
  font-size: clamp(24px, 3vw, 32px);
  font-weight:700;
  margin-bottom: 18px;
}
.hp-dark-copy h3{
  font-size: 18px;
  font-weight:600;
  line-height:1.6;
  margin-bottom: 20px;
  color: #eaf7e6;
}
.hp-dark-copy p{
  font-size: 15px;
  line-height:1.9;
  color: #dff1da;
  margin-bottom: 22px;
}
.hp-dark-copy .checklist li{
  color: var(--white);
}
.hp-dark-copy .checklist li i{
  color: #eaf7e6;
}

/* ---- Light section: professional installers ---- */
.hp-installer-section{
  background: var(--light-green);
  padding: 70px 0;
}
.hp-installer-grid{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items:center;
}
.hp-installer-copy h2{
  font-size: clamp(24px, 3vw, 32px);
  color: var(--dark-green);
  font-weight:700;
  margin-bottom: 18px;
}
.hp-installer-copy p{
  font-size: 16px;
  line-height:1.9;
  color: #35513f;
  margin-bottom: 22px;
}
.hp-installer-copy p a{
  text-decoration: underline;
  color: var(--dark-green);
  font-weight:600;
}
.hp-installer-copy .checklist{
  margin-bottom: 26px;
}

.hp-question-box{
  background: var(--yellow);
  border-radius: 10px;
  padding: 22px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  max-width: 380px;
}
.hp-question-box p{
  font-size: 17px;
  color: var(--text-dark);
  margin: 0;
  line-height:1.5;
}
.hp-question-box strong{
  display:block;
  font-size: 18px;
}
.hp-question-box i{
  background: var(--dark-green);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
  flex-shrink:0;
}

.hp-installer-img{
  position: relative;
  border-radius: 120px 0 0 0;
  overflow:hidden;
  background: var(--light-green);
}
.hp-installer-img img{
  width: 100%;
  display:block;
}

/* ============ MOBILE: HEAT PUMP ADD-ON ============ */
@media (max-width: 900px){
  .hp-dark-grid,
  .hp-installer-grid{
    grid-template-columns: 1fr;
  }
  .hp-dark-img,
  .hp-installer-img{
    border-radius: 20px;
  }
  .hp-dark-img img,
  .hp-installer-img img{
    border-radius: 20px;
  }
  .hp-question-box{
    max-width: 100%;
  }
}



/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: var(--light-green);
}

/* ---------- FOOTER TOP ---------- */

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 60px 24px 40px;
}

/* ---------- FOOTER BRAND ---------- */

.footer-brand .footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand .tagline {
  color: var(--mid-green);
  margin-bottom: 20px;
}

/* ---------- FREE EXPERT ADVICE ---------- */
/* Desktop par button content ke according rahega */

.footer-brand a {
  display: inline-flex !important;
  width: fit-content !important;
  max-width: max-content !important;
  align-items: center;
  justify-content: center;
}

/* ---------- FOOTER COLUMNS ---------- */

.footer-col h3 {
  color: var(--dark-green);
  font-size: 20px;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--dark-green);
  font-weight: 500;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: var(--mid-green);
}

/* ---------- PARTNERS ---------- */

.footer-partners {
  background: var(--white);
  padding: 40px 24px;
  text-align: center;
}

.footer-partners h3 {
  color: var(--mid-green);
  font-size: 22px;
  margin-bottom: 24px;
}

.footer-partners h3:not(:first-child) {
  margin-top: 40px;
}

.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.logo-row img {
  max-height: 45px;
  width: auto;
}

/* ---------- FOOTER BOTTOM ---------- */

.footer-bottom {
  background: var(--dark-green);
  color: var(--white);
  padding: 20px 24px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--white);
  text-decoration: none;
}

/* ---------- DISCLAIMER ---------- */

.footer-disclaimer {
  background: var(--mid-green);
  color: var(--white);
  font-size: 13px;
  line-height: 1.6;
  padding: 18px 24px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom .container {
    flex-direction: column;
    align-items: flex-start;
  }

}


/* =========================================================
   MOBILE / PHONE
========================================================= */

@media (max-width: 600px) {

  .footer-top {
    grid-template-columns: 1fr;
    padding: 40px 20px 30px;
    gap: 30px;
  }

  /* Free Expert Advice mobile par hide */
  .footer-brand a {
    display: none !important;
  }

  .footer-brand .footer-logo {
    height: 40px;
  }

  .footer-col h3 {
    font-size: 19px;
  }

  .footer-bottom {
    padding: 18px 20px;
  }

  .footer-bottom .container {
    align-items: center;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-disclaimer {
    padding: 16px 20px;
    font-size: 12px;
    text-align: center;
  }

}