
:root {
  --font-primary: "Outfit", sans-serif;
  --font-heading: "Outfit", sans-serif;
  --color-primary: #C89D3F;
}

body {
  font-family: var(--font-primary);
  background: #EEF0F7;
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1 {
  font-size: 55px;
  font-weight: 700;
}

h1 span{
  color: var(--color-primary);
  font-size: 30px;
}

h2 {
  font-size: 45px;
  font-weight: 700;
}

h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
}

p.tag {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 1.3px;
  margin-bottom: 0px;
}

p.top{
  font-size: 24px;
}

.heading-divider {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  margin: 16px auto 24px;
}

.section {
  padding-top: 80px;
}

.mt-8{
  margin-top: 80px;
}

.py-8{
  padding: 80px 0px;
}

/* Buttons */
.btn-red,
.btn-white,
.btn-outline-white,
.btn-dark,
.btn-outline-dark {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 18px;
  padding: 13px 32px;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
}

.btn-red {
  border: none;
  background: var(--color-primary);
  color: #fff;
}

.btn-white {
  border: 1px solid #fff;
  background: #FFF;
  color: #000;
}

.btn-outline-white {
  border: 1px solid rgba(243, 240, 232, 0.70);
  background: #FFF;
  color: #000;
}

.btn-dark {
  border: none;
  background: #1A1714;
  color: #fff;
}

.btn-outline-dark {
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
}

.btn-red:hover,
.btn-white:hover,
.btn-outline-white:hover,
.btn-dark:hover,
.btn-outline-dark:hover, .call-btn:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

header.fixed-top {
  transition: transform 0.3s ease;
}

header.fixed-top.scrolled {
  transform: translateY(-100%);
}

/* Header: social icons + call pill */
.social-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
}

.header-bar {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.10);
  padding: 5px 30px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar-brand {
  min-width: 0;
}

.navbar-brand img {
  width: auto;
  max-width: 100%;
}

.header-bar.header-transparent {
  background: transparent;
  box-shadow: none;
}

.call-btn {
  background: var(--color-primary);
  border-radius: 10px;
  padding: 10px 30px;
  color: #fff;
  text-decoration: none;
  flex: 0 0 auto;
 box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
  transition: 0.3s ease-in-out;
}

.call-label {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  opacity: 0.9;
}

.call-number {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}


/* landing-banner */

.landing-banner{
  background: url('../land-img/banner-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 110px;
}

.landing-banner .content-area{
  padding: 90px 0px;
}

.landing-banner .content-area p{
  font-size: 24px;
}

.landing-banner .banner-usps{
  margin-top: 40px;
}

.landing-banner .banner-form,
.landing-cta-form .banner-form {
  background: rgba(15, 20, 15, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid var(--color-primary);
  border-radius: 20px;
  padding: 32px;
}

.landing-banner .banner-form .content,
.landing-cta-form .banner-form .content {
  margin-bottom: 24px;
}


.landing-banner .banner-form .content h2,
.landing-cta-form .banner-form .content h2 {
  font-size: 28px;
}

.landing-banner .banner-form .form-label,
.landing-cta-form .banner-form .form-label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 700;
}

.landing-banner .banner-form .form-control,
.landing-cta-form .banner-form .form-control {
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
}

.landing-cta-form .banner-form textarea.form-control {
  resize: none;
}

/* white variant of the estimate form card (hero banner + bottom CTA) */

.landing-banner .banner-form.banner-form-white,
.landing-cta-form .banner-form.banner-form-white{
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.18);
}

.landing-banner .banner-form.banner-form-white .content h2,
.landing-cta-form .banner-form.banner-form-white .content h2{
  color: #000;
  font-size: 24px;
}

.landing-banner .banner-form.banner-form-white .content p,
.landing-cta-form .banner-form.banner-form-white .content p{
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  margin-bottom: 0;
}

.landing-banner .banner-form.banner-form-white .form-label,
.landing-cta-form .banner-form.banner-form-white .form-label{
  color: #000;
}

.landing-banner .banner-form.banner-form-white .form-control,
.landing-cta-form .banner-form.banner-form-white .form-control{
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #fff;
  color: #000;
}

.landing-banner .banner-form.banner-form-white .form-note,
.landing-cta-form .banner-form.banner-form-white .form-note{
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  margin: 16px 0 0;
}

.landing-banner .banner-form.banner-form-white .btn-red,
.landing-cta-form .banner-form.banner-form-white .btn-red{
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
}

/* landing-cta-form */

.landing-cta-form{
  position: relative;
  background-image: url('../land-img/cta-bg-bottom.webp');
  background-size: 100% 58%;
  background-position: bottom center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.landing-cta-form .content-area{
  padding: 50px 0px 0px;
}

.landing-cta-form .cta-person{
  position: absolute;
  right: 40px;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: none;
  z-index: 1;
}

/* landing-why-choose */

.landing-why-choose .feature-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-why-choose .feature-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.landing-why-choose .feature-item p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  margin-bottom: 0;
}

.landing-why-choose .checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #F5F5F5 0%, rgba(255, 255, 255, 0.00) 203.92%);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 12px;
  font-weight: 500;
}

.landing-why-choose .checklist li:last-child {
  margin-bottom: 0;
}

.landing-why-choose .checklist-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* landing-get-started */

.landing-get-started{
  background: url('../land-img/cta-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* landing-hvac-services */

.landing-hvac-services .service-media{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}

.landing-hvac-services .service-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-hvac-services .service-media-content{
  position: absolute;
  left: 0;
  right: 0;
  top: 20px;
  margin: 0px auto !important;
  text-align: center;
}

.landing-hvac-services .service-media-content h3{
  color: #fff;
  font-size: 20px;
  margin-bottom: 60px;
}

.landing-hvac-services .service-card h4{
  font-size: 20px;
  font-weight: 700;
}

.landing-hvac-services .service-media .btn-red{
  padding: 8px 20px;
  font-size: 14px;
}

.landing-hvac-services .service-card{
  border-radius: 10px;
  border: 1.5px solid #F9F9F9;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(25px);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
}



/* landing-hvac-experts */

.landing-hvac-experts .experts-card{
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 32px 60px 32px 32px;
  height: 100%;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.landing-hvac-experts .experts-list li{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 500;
}

.landing-hvac-experts .experts-list li:last-child{
  margin-bottom: 0;
}

.landing-hvac-experts .checklist-icon{
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.landing-hvac-experts .experts-watermark {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: auto;
}



/* landing-process */

.landing-process .process-steps{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 8px;
}

.landing-process .process-steps::before{
  content: "";
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  border-top: 2px dashed rgba(200, 157, 63, 0.35);
}

.landing-process .step{
  position: relative;
  flex: 1;
  text-align: center;
  padding: 0 12px;
}

.landing-process .step-icon{
  display: block;
  width: 64px;
  margin: 0 auto 20px;
  position: relative;
}

.landing-process .step h3{
  font-size: 18px;
  margin-bottom: 8px;
}

.landing-process .step p{
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  margin-bottom: 0;
}

.landing-process .step-arrow{
  position: relative;
  flex: 0 0 auto;
  margin-top: 22px;
  color: var(--color-primary);
  font-size: 18px;
}

/* landing-gallery */

.landing-gallery .gallery-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.landing-gallery .gallery-grid img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}



/* landing-quick-help */

.landing-quick-help .item{
  background: url('../land-img/quick-help-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.landing-quick-help .quick-help-bar{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(25px);
}

.landing-quick-help .quick-help-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s ease-in-out;
}

.landing-quick-help .quick-help-item:last-child{
  border-right: none;
}

.landing-quick-help .quick-help-item:hover{
  background: rgba(255, 255, 255, 0.08);
}

/* landing-testimonials */

.landing-testimonials .testimonials-row{
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.landing-testimonials .testimonials-row .row{
  flex: 1;
}

.landing-testimonials .testimonials-nav{
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.landing-testimonials .testimonials-nav:hover{
  background: var(--color-primary);
  color: #fff;
}

.landing-testimonials .testimonial-card{
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
}

.landing-testimonials .quote-icon{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(200, 157, 63, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.landing-testimonials .stars{
  color: var(--color-primary);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.landing-testimonials .testimonial-text{
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 24px;
}

.landing-testimonials .testimonial-author{
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 16px;
}

.landing-testimonials .author-avatar{
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: #1A1714;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}

.landing-testimonials .author-location{
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}

.landing-testimonials .review-source{
  color: #4285F4;
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  line-height: 1.3;
}

/* landing-faqs */

.landing-faqs .accordion-item{
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  background: #FFF;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
  margin-bottom: 16px;
  overflow: hidden;
}

.landing-faqs .accordion-item:last-child{
  margin-bottom: 0;
}

.landing-faqs .accordion-button{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: #000;
  background: transparent;
  padding: 20px;
  box-shadow: none;
}

.landing-faqs .accordion-button:not(.collapsed){
  color: #000;
  background: transparent;
  box-shadow: none;
}

.landing-faqs .accordion-button:focus{
  box-shadow: none;
}

.landing-faqs .accordion-body{
  padding: 0px 20px 20px;
  color: rgba(0, 0, 0, 0.6);
}


/* landing-footer */

.landing-footer{
  background: #111111;
  padding-top: 80px;
}


.landing-footer .footer-tagline{
  color: rgb(255, 255, 255);
}

.landing-footer .footer-contact{
  color: rgb(255, 255, 255);
}

.landing-footer .footer-contact i{
  color: var(--color-primary);
}

.landing-footer .footer-contact a{
  color: rgb(255, 255, 255);
  text-decoration: none;
}

.landing-footer hr{
  border-color: rgba(243, 240, 232, 0.10);
  margin: 0;
  opacity: 1;
}

.landing-footer .footer-bottom p{
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.landing-footer .footer-bottom strong{
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.05em;
}