 :root {
      --brand-red: #e42c38;
      --brand-blue: #0073d1;
      --brand-dark: #212529;
      --brand-soft: #f7f7f9;
    }

    * {
      box-sizing: border-box;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--brand-dark);
      scroll-behavior: smooth;
      background: #ffffff;
    }

    a {
      text-decoration: none;
    }

    /* NAVBAR --------------------------------------------------- */
    .navbar {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      background-color: #fff;
    }

    .navbar-brand img {
      height: 160px;
    }

    .nav-link {
      font-weight: 500;
    }

    /* HERO --------------------------------------------------- */
    .hero {
      padding: 5rem 0 4rem;
      background:
        radial-gradient(circle at top left, rgba(237, 28, 36, 0.12), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0, 115, 209, 0.12), transparent 55%);
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .35rem .9rem;
      border-radius: 999px;
      font-size: .8rem;
      font-weight: 500;
      background: rgba(237, 28, 36, 0.06);
      color: var(--brand-red);
    }

    .hero-tag span.dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--brand-red);
    }

    .hero-title {
      font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .hero-lead {
      font-size: 1.05rem;
      color: #555;
    }

    .hero-badges {
      gap: .8rem;
      flex-wrap: wrap;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .4rem .85rem;
      border-radius: 999px;
      background: #fff;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
      font-size: .85rem;
      color: #444;
    }

    .hero-badge i {
      font-size: 1.1rem;
    }

    .hero-image {
      position: relative;
    }

    .hero-image::before {
      content: "";
      position: absolute;
      inset: 15% 10% auto auto;
      border-radius: 24px;
      border: 2px solid rgba(255, 255, 255, 0.9);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    .hero-image-inner {
      border-radius: 24px;
      overflow: hidden;
      position: relative;
    }

    .hero-image-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.02);
      min-height: 420px;
    }

    @media (max-width: 991.98px) {
      .hero-image-inner img {
        min-height: 280px;
      }
    }

    /* BUTTONS --------------------------------------------------- */
    .btn-brand-primary {
      position: relative;
      border-radius: 999px;
      font-weight: 600;
      padding: .75rem 1.7rem;
      border: none;
      color: #fff;
      background-color: #e42c38;
    }

    .btn-brand-primary:hover,
    .btn-brand-primary:focus-visible {
      color: #fff;
      background-color: #000;
    }

    .btn-brand-outline {
      border-radius: 999px;
      font-weight: 500;
      padding: .75rem 1.6rem;
      border: 1px solid rgba(33, 37, 41, 0.3);
      color: var(--brand-dark);
      background: #fff;
      transition: all .18s ease-out;
    }

    .btn-brand-outline:hover,
    .btn-brand-outline:focus-visible {
      border-color: var(--brand-dark);
      background: var(--brand-dark);
      color: #fff;
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
    }

    /* SECTION GENERIC --------------------------------------------------- */
    section {
      padding: 4rem 0;
    }

    .section-title {
      font-weight: 600;
      margin-bottom: .4rem;
    }

    .section-subtitle {
      color: #666;
    }

    /* REVEALS --------------------------------------------------- */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .7s ease, transform .7s ease;
      will-change: opacity, transform;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      transform: translateX(-18px);
    }

    .reveal-right {
      transform: translateX(18px);
    }

    .reveal-up {
      transform: translateY(18px);
    }

    .reveal-left.is-visible,
    .reveal-right.is-visible,
    .reveal-up.is-visible {
      transform: translate(0, 0);
    }

    /* SPOTLIGHTS (IMAGE FOCUSED) ---------------------------------------- */
    .spotlights, #why-us {
      background: var(--brand-soft);
    }

    .spotlight-card {
      height: 100%;
      border-radius: 20px;
      background: #fff;
      border: 1px solid rgba(33, 37, 41, 0.05);
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
      position: relative;
      overflow: hidden;
      transition: transform .2s ease-out, box-shadow .2s ease-out, border-color .2s ease-out;
      padding: 0;
      display: flex;
      flex-direction: column;
    }

    .spotlight-card::after {
      content: "";
      position: absolute;
      left: 1.35rem;
      bottom: 0;
      width: 0;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand-red));
      transition: width .25s ease-out;
      z-index: 3;
    }

    .spotlight-media {
      position: relative;
      border-radius: 20px 20px 0 0;
      overflow: hidden;
      aspect-ratio: 16/9;
    }

    .spotlight-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
      transition: transform .35s ease;
    }

    .spotlight-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 45%, rgba(33, 37, 41, .85) 100%);
      pointer-events: none;
    }

    .spotlight-card:hover .spotlight-media img {
      transform: scale(1.08);
    }

    .spotlight-badge {
      position: absolute;
      left: 14px;
      bottom: 14px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .35rem .75rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, .92);
      color: var(--brand-dark);
      font-size: .8rem;
      font-weight: 600;
      backdrop-filter: blur(6px);
    }

    .spotlight-body {
      padding: 1.25rem 1.35rem 1.4rem;
      display: flex;
      flex-direction: column;
      gap: .65rem;
    }

    .spotlight-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: .9rem;
      color: #555;
    }

    .spotlight-list li {
      display: flex;
      gap: .35rem;
      align-items: baseline;
    }

    .spotlight-list li::before {
      content: "•";
      color: var(--brand-red);
    }

    /* EMERGENCY BAND --------------------------------------------------- */
    .emergency-band {
       background:
        radial-gradient(circle at top left, rgba(237, 28, 36, 0.12), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0, 115, 209, 0.12), transparent 55%),
        var(--brand-soft);
      color: #f9fafb;
      border-radius: 26px;
      padding: 2.5rem 2.3rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .emergency-band-inner {
      position: relative;
      z-index: 1;
    }

    .emergency-pill {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .35rem .9rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.65);
      font-size: .8rem;
    }

    .emergency-pill span.dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: #facc15;
      box-shadow: 0 0 0 5px rgba(250, 204, 21, 0.35);
    }

    /* BATHROOMS SECTION ------------------------------------------------ */
    .bathrooms {
      background: #fff;
    }

    .bathrooms-card {
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
      background: #fff;
    }

    .bathrooms-img {
      position: relative;
      min-height: 340px;
    }

    .bathrooms-img img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bathrooms-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top left, rgba(237, 28, 36, .18), transparent 55%),
        linear-gradient(to bottom, rgba(0, 0, 0, .05) 0%, rgba(33, 37, 41, .25) 100%);
      pointer-events: none;
    }

    @media (max-width: 991.98px) {
      .bathrooms-img {
        min-height: 240px;
      }
    }

    /* WHY US --------------------------------------------------- */
    .why-us-badge {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      padding: .35rem .85rem;
      background: rgba(0, 0, 0, 0.04);
      border-radius: 999px;
      font-size: .8rem;
    }

    .stats-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
    }

    .stat {
      flex: 1 1 140px;
    }

    .stat-number {
      font-size: 1.8rem;
      font-weight: 600;
    }

    .stat-label {
      color: #666;
      font-size: .9rem;
    }

    /* TESTIMONIALS --------------------------------------------------- */
    .testimonial-card {
      border-radius: 20px;
      padding: 1.5rem 1.6rem;
      background: #fff;
      box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
      border: 1px solid rgba(15, 23, 42, 0.04);
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: .9rem;
    }

    .testimonial-name {
      font-weight: 600;
    }

    .testimonial-meta {
      font-size: .85rem;
      color: #777;
    }

    /* CONTACT --------------------------------------------------- */
    .contact {
      background: var(--brand-soft);
    }

    .contact-card {
      border-radius: 24px;
      background: #fff;
      padding: 2rem;
      box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
    }

    .contact-sidebar {
      border-radius: 20px;
      padding: 1.5rem 1.8rem;
      background: #fff;
      color: #000;
    }

    .contact-sidebar a {
      color: #333;
    }

    .contact-sidebar a:hover {
      color: #333;
    }

    .form-control:focus {
      border-color: rgba(237, 28, 36, 0.7);
      box-shadow: 0 0 0 0.2rem rgba(237, 28, 36, 0.18);
    }

    /* FOOTER --------------------------------------------------- */
    footer {
      padding: 2rem 0 1.2rem;
      border-top: 1px solid rgba(148, 163, 184, 0.25);
      font-size: .9rem;
    }

    footer a {
      color: inherit;
    }

    footer a:hover {
      color: var(--brand-red);
    }

    /* UTILITIES --------------------------------------------------- */
    .text-brand-red {
      color: var(--brand-red);
    }

    .text-brand-blue {
      color: var(--brand-blue);
    }

    /* MOBILE NAV: FULL VIEWPORT HEIGHT -------------------------- */
    @media (max-width: 991.98px) {
      .navbar .navbar-collapse {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        padding: 1rem 1rem 1.5rem;
        background: rgba(255, 255, 255, .96);
        backdrop-filter: blur(10px);
        z-index: 1050;
        overflow-y: auto;
        transform: translateY(-8px);
      }

      .navbar-nav .nav-link {
        font-size: 1.15rem;
        padding: .85rem 0;
      }

      .navbar .navbar-collapse .d-flex.align-items-center {
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid rgba(15, 23, 42, .08);
      }


    }

    /* MEDIA QUERIES --------------------------------------------------- */
    @media (max-width: 991.98px) {
      .hero {
        padding-top: 4rem;
      }

      .emergency-band {
        padding: 2rem 1.6rem;
      }

      .contact-card {
        padding: 1.6rem;
      }
    }

html, body {
  width: 100%;
  overflow-x: hidden;
}



 /* QUOTE SECTION --------------------------------------------------- */
    .quote-section {
      background:
        radial-gradient(circle at top left, rgba(237, 28, 36, 0.12), transparent 55%),
        radial-gradient(circle at bottom right, rgba(0, 115, 209, 0.12), transparent 55%),
        var(--brand-soft);
      padding: 4.5rem 0;
    }
    .quote-card {
      border-radius: 26px;
      border: 1px solid rgba(15, 23, 42, 0.06);
      box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
      overflow: hidden;
      background: #fff;
    }
    .quote-card-header {
      padding: 1.6rem 1.8rem 1.1rem;
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent);
    }
    .quote-title { font-weight: 700; margin-bottom: .2rem; }
    .quote-subtitle { color: #666; margin: 0; font-size: .95rem; }

    .step-pill {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      padding: .35rem .9rem;
      border-radius: 999px;
      font-size: .82rem;
      font-weight: 600;
      background: rgba(228, 44, 56, 0.08);
      color: var(--brand-red);
    }
    .step-pill i { font-size: .9rem; }

    .quote-card-body { padding: 1.6rem 1.8rem 1.8rem; }

    .progress {
      height: 10px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.08);
      overflow: hidden;
    }
    .progress-bar {
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
      transition: width .25s ease;
    }

    /* ICON OPTIONS --------------------------------------------------- */
    .option-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1rem;
    }

    .option-card {
      border: 1px solid rgba(15, 23, 42, 0.10);
      border-radius: 18px;
      padding: 1.1rem 1rem;
      text-align: center;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      background: #fff;
      box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
      position: relative;
      user-select: none;
    }

    .option-card input { display: none; }

    .option-card i {
      font-size: 2rem;
      margin-bottom: .55rem;
      color: var(--brand-blue);
    }

    .option-card:hover {
      transform: translateY(-2px);
      border-color: rgba(0, 115, 209, 0.45);
      box-shadow: 0 16px 38px rgba(15, 23, 42, 0.09);
    }

    .option-card.active {
      border-color: rgba(228, 44, 56, 0.65);
      background: rgba(228, 44, 56, 0.05);
      box-shadow: 0 18px 44px rgba(228, 44, 56, 0.12);
    }

    .option-card.active i { color: var(--brand-red); }

    .quote-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: .75rem;
      margin-top: 1.4rem;
    }

    .btn-quote-back { border-radius: 999px; padding: .75rem 1.4rem; }
    .btn-quote-next { border-radius: 999px; padding: .75rem 1.6rem; font-weight: 600; box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10); }

    .quote-total {
      border-radius: 18px;
      border: 1px solid rgba(0, 115, 209, 0.20);
      background: rgba(0, 115, 209, 0.06);
      padding: 1rem 1.1rem;
    }

    .quote-total strong { color: var(--brand-dark); }
    .quote-total .price { font-weight: 800; color: var(--brand-dark); letter-spacing: -0.02em; }
    .hint { font-size: .9rem; color: #666; }

    /* Step 2 radiator card: make the select look integrated */
    #radiatorQty.form-select {
      border-radius: 999px;
      padding-left: .9rem;
      padding-right: 2rem;
    }

    /* Auto "active" look when qty chosen */
    .option-card.is-filled {
      border-color: rgba(228, 44, 56, 0.65);
      background: rgba(228, 44, 56, 0.05);
      box-shadow: 0 18px 44px rgba(228, 44, 56, 0.12);
    }

    .option-card.is-filled i { color: var(--brand-red); }


    /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation: pop 1s 1.5s cubic-bezier(.37,1.4,.52,1) both;
  }
  .whatsapp-float a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 14px 22px 14px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    transition: transform .2s, box-shadow .2s;
  }
  .whatsapp-float a:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 30px rgba(37,211,102,.5); }
  .whatsapp-float img { width: 28px; height: 28px; }
  .whatsapp-float .wa-text { font-size: .85rem; }

/* ── Grav Form Bootstrap Overrides ── */
.form-wrapper .form-field {
  margin-bottom: 1rem;
}
.form-wrapper label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #212529;
}
.form-wrapper input[type="text"],
.form-wrapper input[type="email"],
.form-wrapper input[type="tel"],
.form-wrapper textarea,
.form-wrapper select {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-wrapper input[type="text"]:focus,
.form-wrapper input[type="email"]:focus,
.form-wrapper input[type="tel"]:focus,
.form-wrapper textarea:focus,
.form-wrapper select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-wrapper textarea {
  min-height: 120px;
  resize: vertical;
}
.form-wrapper .form-errors,
.form-wrapper .messages {
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}
.form-wrapper .form-errors {
  background: #f8d7da;
  border: 1px solid #f5c2c7;
  color: #842029;
}
.form-wrapper .messages {
  background: #d1e7dd;
  border: 1px solid #badbcc;
  color: #0f5132;
}
.form-wrapper .buttons {
  margin-top: 1.5rem;
}
.form-wrapper .buttons input[type="submit"],
.form-wrapper .buttons button[type="submit"] {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border: none;
  border-radius: 0.375rem;
  background-color: var(--brand-red, #e63946);
  color: #fff;
  transition: background-color 0.15s ease-in-out;
}
.form-wrapper .buttons input[type="submit"]:hover,
.form-wrapper .buttons button[type="submit"]:hover {
  background-color: var(--brand-red-dark, #c1121f);
}
.form-wrapper .form-field-wrapper {
  margin-bottom: 1rem;
}
    