/* ===========================
   CSS Variables
   =========================== */
:root {
  --primary: #0F96CD;
  --secondary: #000000;
  --white: #ffffff;
  --body-text: #676767;
  --heading-color: #333333;
}

/* ===========================
   General Styles
   =========================== */
body {
  font-family: 'Inter', sans-serif;
  color: var(--body-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: var(--heading-color);
}

a {
  text-decoration: none;
}

section {
  padding-top: 100px;
}

.bg-light{
    background-color: #F4F4F4;
}

/* ===========================
   Button Classes
   =========================== */
.btn-primary-custom {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: 10px 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-white-custom {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  padding: 10px 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.btn-white-custom:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary);
}

.btn-dark-custom {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  border-radius: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.btn-dark-custom:hover {
  opacity: 0.9;
  color: var(--white);
}

.btn-dark-custom .btn-icon {
    font-size: 24px;
}
.btn-dark-custom .btn-label {
  font-size: 12px;
  font-weight: 400;
  display: block;
  line-height: 1;
}

.btn-dark-custom .btn-number {
  font-size: 18px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

/* ===========================
   Header
   =========================== */
header .header-logo {
  max-width: 180px;
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
  background: url('../img/banner-image.jpg') no-repeat top center/cover;
}

.hero-section .hero-content {
  padding: 140px 0;
}

/* ===========================
   Quote Section
   =========================== */
.quote-section {
  margin-top: -60px;
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}
.quote-section p {
    margin: 0;
    width: 100%;
}
.quote-section .wpcf7-spinner{
  display: none !important;
}

/* ===========================
   About Section
   =========================== */
.about-section .bi-check-circle-fill {
  color: var(--primary) !important;
}

/* ===========================
   Solution Section
   =========================== */
.solution-section{
    margin-top: 80px;
}
.solution-section .solution-content {
  max-width: 700px;
}

.solution-section .solution-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   Proper Insulation Section
   =========================== */

/* ===========================
   Extreme Protection Section
   =========================== */


.extreme-section .extreme-card {
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.3s ease;
}

/* ===========================
   Services Section
   =========================== */
.services-section__card {
  border: 1px solid #e0e0e0;
}

/* ===========================
   Testimonials Section
   =========================== */
.testimonials-section__card {
  border: 1px solid #e0e0e0;
}

.testimonials-section__avatar {
  width: 48px;
  height: 48px;
}

.testimonials-section__google {
  max-width: 80px;
}

.testimonials-section__nav {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.testimonials-section__nav.carousel-control-prev {
  left: -20px;
}

.testimonials-section__nav.carousel-control-next {
  right: -20px;
}

.testimonials-section__nav i {
  color: var(--white);
  font-size: 18px;
}

/* ===========================
   USP / Blown-In Section
   =========================== */
.usp-section {
  background: url('../img/usp-bg.jpg') no-repeat center center/cover;
  padding-bottom: 100px;
  margin-top: 80px;
}

/* ===========================
   Professional Installation Section
   =========================== */
.installation-section__card {
  border: 1px solid #DADADA;
  min-height: 120px;
  color: #333333;
}

/* ===========================
   Material Systems Section
   =========================== */


/* ===========================
   Process Section
   =========================== */
.process-section__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.process-section__icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.process-section .col-lg-3:not(:last-child) .process-section__icon-wrap::after {
  content: '';
  position: absolute;
  top: 35%;
  left: 100%;
  width: calc(100% + 70px);
  height: 2px;
  background-color: var(--primary);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.process-section .col-lg-3:not(:first-child) .process-section__icon-wrap::before {
  content: '';
  position: absolute;
  top: 35%;
  right: 100%;
  width: calc(100% + 150px);
  height: 2px;
  background-color: var(--primary);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

/* ===========================
   CTA Form Section
   =========================== */

   
.cta-form-section {
  background: url('../img/form-bg.jpg') no-repeat center center/cover;
}
   
.cta-form-section .cta-form-section__left {
  border: 1px solid #e0e0e0;
  background-color: #fff;
}

.cta-form-section .cta-form-section__right {
  background-color: var(--white);
  border: 1px solid #e0e0e0;
}

/* ===========================
   CTA Bottom Section
   =========================== */
.cta-bottom-section__banner {
  background: url('../img/cta-bottom.jpg') no-repeat center center/cover;
}

/* ===========================
   Footer
   =========================== */
.footer-section {
  background: url('../img/footer-bg.jpg') no-repeat center center/cover;
  padding: 60px 0 20px;
  border-top: 1px solid #e0e0e0;
  margin-top: 80px;
}

.footer-section__logo {
  max-width: 200px;
}

.footer-section__text {
  max-width: 800px;
}

.footer-section__powered img {
  max-width: 100px;
}

/* ===========================
   Section Styles (to be added per Figma sections)
   =========================== */
