/* ===========================================
   HERO COMPONENT
   =========================================== */

.hero {
  background: linear-gradient(135deg, #eaf4fb 0%, #f4f9fd 45%, #eef6fb 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(10,127,127,.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 36px;
  align-items: stretch;
  padding: 28px 0 48px;
  position: relative;
  z-index: 1;
}

/* Left side */
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.hero__avatars {
  display: flex;
}
.hero__avatars img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-right: -11px;
  object-fit: cover;
  background: var(--teal-light);
}
.hero__rating-label strong {
  display: block;
  font-size: 23px;
  font-weight: 700;
  color: var(--teal);
}
.hero__rating-label span {
  font-size: 18px;
  color: var(--text-muted);
}
.hero__title {
  font-size: clamp(28px, 3.5vw, 45px);
  font-weight: 900;
  line-height: 1.17;
  color: #000000;
  margin-bottom: 16px;
}
.hero__sub {
  font-size: 17px;
  color: #000000;
  line-height: 1.75;
  width: 100%;
  /* max-width: 640px; */
  margin-bottom: 30px;
}
.hero__search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #d6e8e8;
  border-radius: var(--r-xl);
  padding: 11px 14px 11px 20px;
  max-width: 440px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  margin-bottom: 22px;
  transition: border-color var(--t), box-shadow var(--t);
}
.hero__search:hover {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,127,127,.1);
}
.hero__search-icon { font-size: 18px; color: var(--teal); flex-shrink: 0; }
.hero__search-text { flex: 1; font-size: 15.5px; color: #000000; }
.hero__search-arrow {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15.5px;
  flex-shrink: 0;
}
.hero__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero__links a {
  font-size: 15px;
  color: var(--teal);
  font-weight: 600;
  display: flex; align-items: center; gap: 4px;
  transition: opacity var(--t);
}
.hero__links a:hover { opacity: .72; }
.hero__links a svg { width: 11px; height: 11px; }
.hero__links-sep { color: #ccc; font-size: 16.5px; }

/* Right form card */
.hero__form-card {
  background: var(--teal);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  color: #fff;
  box-shadow: 0 10px 44px rgba(10,127,127,.28);
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__form-card h3 {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}
.hero__form-card p {
  font-size: 14.5px;
  opacity: .88;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 18px;
}
.form-field { margin-bottom: 10px; }
.form-field input,
.form-field select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.94);
  font-size: 15px;
  color: #000000;
  transition: border-color var(--t);
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--orange);
  background: #fff;
}
.form-field input::placeholder { color: #000000; }
.form-field select { cursor: pointer; }

.form-field--phone {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 8px;
}
.form-field--phone select { padding-left: 8px; padding-right: 4px; font-size: 14.5px; }
.form-field__prefix {
  display: flex; align-items: center;
  background: rgba(255,255,255,.94);
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.22);
  padding: 10px 12px;
  font-size: 15px;
  color: #000000;
  font-weight: 600;
}
.form-field__upload {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px dashed rgba(255,255,255,.35);
  border-radius: 10px;
  font-size: 14.5px;
  color: rgba(255,255,255,.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.06);
}
.form-field__consent {
  font-size: 13px;
  opacity: .78;
  text-align: center;
  line-height: 1.55;
  margin-bottom: 14px;
}
.form-field__consent a { text-decoration: underline; }

.form-promo-note {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(240,151,94,.6);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 13.5px;
  color: #fff;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-submit-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.form-submit {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 13px;
  border-radius: var(--r-xl);
  font-size: 16.5px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background var(--t);
  letter-spacing: .2px;
}
.form-submit:hover { background: var(--orange-dark); }

.form-whatsapp-qr {
  flex-shrink: 0;
  width: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.94);
  transition: transform var(--t);
}
.form-whatsapp-qr:hover { transform: translateY(-2px); }
.form-whatsapp-qr img { width: 38px; height: 38px; object-fit: contain; display: block; }
.form-whatsapp-qr__label { font-size: 11px; font-weight: 700; color: #2ba24c; text-align: center; }
.form-whatsapp-qr--fallback { background: #25d366; }
.form-whatsapp-qr--fallback .form-whatsapp-qr__label { color: #fff; }
.form-whatsapp-qr--fallback::before {
  content: '';
  width: 24px; height: 24px;
  background: #fff;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 2C8.27 2 2 8.27 2 16c0 2.48.65 4.8 1.78 6.82L2 30l7.38-1.76A13.93 13.93 0 0016 30c7.73 0 14-6.27 14-14S23.73 2 16 2zm0 25.6a11.55 11.55 0 01-5.89-1.61l-.42-.25-4.38 1.04 1.07-4.27-.27-.44A11.6 11.6 0 1116 27.6zm6.8-8.4c-.36-.18-2.13-1.05-2.46-1.17-.33-.12-.57-.18-.81.18-.24.36-.93 1.17-1.14 1.41-.21.24-.42.27-.78.09-.36-.18-1.52-.56-2.9-1.79-1.07-.95-1.79-2.13-2-2.49-.21-.36-.02-.55.16-.73.16-.16.36-.42.54-.63.18-.21.24-.36.36-.6.12-.24.06-.45-.03-.63-.09-.18-.81-1.95-1.11-2.67-.29-.7-.59-.6-.81-.62l-.69-.01a1.32 1.32 0 00-.96.45c-.33.36-1.26 1.23-1.26 3s1.29 3.48 1.47 3.72c.18.24 2.54 3.88 6.16 5.44 3.61 1.56 3.61 1.04 4.26.98.65-.06 2.13-.87 2.43-1.71.3-.84.3-1.56.21-1.71-.09-.15-.33-.24-.69-.42z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Journey tabs */
.journey {
  background: #fff;
  padding-bottom: 32px;
}
.journey__card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  overflow: hidden;
  margin-top: -8px;
  position: relative;
  z-index: 5;
}
.journey__header {
  background: var(--teal);
  text-align: center;
  padding: 13px;
}
.journey__header span {
  color: #fff;
  font-size: 16.5px;
  font-weight: 700;
}
.journey__tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: #fff;
  overflow-x: auto;
}
.journey__tab {
  flex: 1;
  min-width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 600;
  color: #000000;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t);
}
.journey__tab:hover { color: var(--teal); }
.journey__tab.is-active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  background: #f9fcff;
}
.journey__tab-icon { display: inline-flex; }
.journey__tab-icon svg { width: 16px; height: 16px; }

.journey__panel { padding: 22px 26px; display: none; }
.journey__panel.is-active { display: block; }
.journey__selects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.journey__select-wrap label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.journey__select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #d8e6f0;
  border-radius: 10px;
  font-size: 15.5px;
  color: #000000;
  background: #fff;
  cursor: pointer;
}
.journey__select:focus { border-color: var(--teal); }
.journey__search-btn {
  display: block;
  margin: 0 auto;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 11px 36px;
  border-radius: var(--r-xl);
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t);
}
.journey__search-btn:hover { background: var(--teal-dark); }

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; padding: 24px 0 40px; }
  .hero__form-card { max-width: 420px; margin: 0 auto; }
  .hero__content { height: auto; }
}
@media (max-width: 600px) {
  .journey__selects { grid-template-columns: 1fr; }
}
.form-promo-note {
    background: #fff3cd;
    border: 2px solid #ff9800;
    border-radius: 10px;

    padding: 10px 12px;

    font-size: 13.5px;
    color: #7a4b00;

    text-align: center;
    margin-bottom: 14px;

    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    /* Visible blinking effect */
    animation: promoBlink 1.2s ease-in-out infinite;

    box-shadow:
        0 0 0 rgba(255, 152, 0, 0);
}


@keyframes promoBlink {

    0% {
        background: #fff3cd;
        border-color: #ff9800;
        color: #7a4b00;
        box-shadow:
            0 0 0 rgba(255, 152, 0, 0);
        transform: scale(1);
    }

    50% {
        background: #ffe082;
        border-color: #ff6d00;
        color: #5d3500;

        box-shadow:
            0 0 16px rgba(255, 152, 0, 0.65),
            0 0 28px rgba(255, 193, 7, 0.35);

        transform: scale(1.015);
    }

    100% {
        background: #fff3cd;
        border-color: #ff9800;
        color: #7a4b00;

        box-shadow:
            0 0 0 rgba(255, 152, 0, 0);

        transform: scale(1);
    }
}

.form-submit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    align-items: stretch;
}

/* Both boxes exactly same size */
.form-submit,
.form-whatsapp-qr {
    width: 100%;
    height: 62px;
    min-height: 62px;
    max-height: 62px;
    box-sizing: border-box;
}


/* Submit */
.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--orange);
    color: #fff;

    padding: 10px;
    border: none;
    border-radius: var(--r-xl);

    font-size: 16.5px;
    font-weight: 800;
    cursor: pointer;
}


/* WhatsApp box */
.form-whatsapp-qr {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 8px;
    padding: 5px 10px;

    background: #fff;
    border: 2px solid #25d366;
    border-radius: var(--r-xl);

    box-sizing: border-box;
    overflow: hidden;

    text-decoration: none;
}


/* QR image — keep it inside the box */
.form-whatsapp-qr img {
    width: 42px;
    height: 42px;
    max-width: 42px;
    max-height: 42px;

    object-fit: contain;
    display: block;
    flex-shrink: 0;
}


/* WhatsApp text */
.form-whatsapp-qr__label {
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    color: #25a244;

    white-space: nowrap;
}


/* Mobile */
@media (max-width: 600px) {

    .form-submit-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .form-submit,
    .form-whatsapp-qr {
        height: 52px;
        min-height: 52px;
        max-height: 52px;
    }

    .form-whatsapp-qr img {
        width: 30px;
        height: 30px;
        max-width: 30px;
        max-height: 30px;
    }

    .form-whatsapp-qr__label {
        font-size: 11px;
    }
}


/* ==========================================
   HERO DISCOUNT WHATSAPP
   ========================================== */

.discount-highlight {
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.discount-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.discount-highlight:focus {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 3px;
}


/* ==========================================
   WHATSAPP QR MODAL
   ========================================== */

.whatsapp-qr-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}


.whatsapp-qr-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}


.whatsapp-qr-modal__box {
  position: relative;
  z-index: 2;

  width: min(400px, 100%);

  background: #ffffff;
  border-radius: 18px;

  padding: 30px 25px;

  text-align: center;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25);

  animation: whatsappModalIn 0.25s ease;
}


@keyframes whatsappModalIn {

  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }

}


.whatsapp-qr-modal__close {
  position: absolute;

  top: 10px;
  right: 12px;

  width: 36px;
  height: 36px;

  border: none;
  background: transparent;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  color: #555;
}


.whatsapp-qr-modal__box h3 {
  margin: 5px 0 10px;

  font-size: 22px;
}


.whatsapp-qr-modal__box p {
  margin: 0 auto 18px;

  color: #666;
  font-size: 14px;
  line-height: 1.5;
}


.whatsapp-qr-modal__qr {
  width: 220px;
  height: 220px;

  margin: 20px auto;

  padding: 10px;

  background: #fff;

  border-radius: 12px;

  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.12);
}


.whatsapp-qr-modal__qr img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


.whatsapp-qr-modal__number {
  font-weight: 600;
  color: #333 !important;
}


.whatsapp-qr-modal__button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 10px 22px;

  border-radius: 8px;

  background: #25d366;
  color: #ffffff;

  text-decoration: none;
  font-weight: 600;

  transition: transform 0.2s ease;
}


.whatsapp-qr-modal__button:hover {
  transform: translateY(-1px);
}


/* Mobile */
@media (max-width: 700px) {

  .whatsapp-qr-modal__box {
    width: min(360px, 100%);
    padding: 25px 20px;
  }

  .whatsapp-qr-modal__qr {
    width: 190px;
    height: 190px;
  }

}