/* ============================= */
/* BASE */
/* ============================= */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #222;
  }
  
  /* ============================= */
  /* HEADER */
  /* ============================= */
  .header {
    width: 100%;
    background: #fff;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  
  .logo {
    max-height: 60px;
  }
  
  /* ============================= */
  /* TOP BAR */
  /* ============================= */
  .top-bar {
    background: #cb0000;
    color: #fff;
    padding: 6px;
    font-weight: 700;
  }
  
  /* ============================= */
/* HERO SECTION */
/* ============================= */
.hero-section {
  background: url('https://d3q7porexqyyxj.cloudfront.net/sites/5009/welcome-bg10.jpg') center/cover no-repeat;
  position: relative;

  /* NEW */
  padding: 80px 0;   /* desktop spacing */
}
  
  /* LIGHTER OVERLAY */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.60),
      rgba(0,0,0,0.75)
    );
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  
    display: flex;
    flex-direction: column;
  
    /* CHANGE THIS */
    justify-content: flex-start;
  
    /* REMOVE THIS if exists */
    /* min-height: 100vh; */
  }
  /* ============================= */
  /* FORCE ALL HERO TEXT WHITE */
  /* ============================= */
  .hero-section,
  .hero-section h1,
  .hero-section h2,
  .hero-section h3,
  .hero-section p,
  .hero-section span,
  .hero-section label {
    color: #fff !important;
  }
  
  /* ============================= */
  /* TOP TEXT */
  /* ============================= */
  .hero-top-content {
    max-width: 1200px;
    margin: 0 auto 10px;
    text-align: center;
  }
  
  .main-headline {
   
    font-weight: 800;
    margin-bottom: 10px;
  }
  
  .sub-headline {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .support-line {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  /* ============================= */
  /* STEP SYSTEM (CRITICAL FIX) */
  /* ============================= */
  .step {
    display: none; /* hide all */
    text-align: center;
  }
  
  .step.active {
    display: block; /* show only active */
    animation: fadeStep 0.4s ease;
  }
  
  /* ============================= */
  /* FORM AREA */
  /* ============================= */
  .form-area {
    max-width: 520px;
    margin: 5px auto 0;
  }

  #step1 .form-area {
    max-width: 300px;
  }
  
  /* INPUT GROUP */
  .custom-input {
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid transparent;
  }
  
  /* INPUT ICON */
  .custom-input .input-group-text {
    background: #fff;
    border: none;
    color: #0d3b66;
  }
  
  /* INPUT FIELD (WHITE ONLY) */
  .custom-input .form-control {
    background: #fff !important;
    color: #000 !important;
    border: none;
    padding: 14px;
    box-shadow: none !important;
  }
  .custom-input .form-control:focus {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
  }
  
  /* FOCUS - no colored border */
  .custom-input:focus-within {
    border-color: transparent;
    box-shadow: none;
  }
  
  /* ============================= */
  /* ERROR MESSAGE */
  /* ============================= */
  .error-msg {
    display: none;
    color: #ff6b6b !important;
    font-size: 13px;
    margin-top: 5px;
    text-align: left;
  }

  /* ============================= */
  /* FIELD ERROR (validation) */
  /* ============================= */
  .field-error {
    color: #fff;
    font-size: 0.85rem;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    padding: 0;
    border-radius: 4px;
    display: none;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .field-error:not(:empty) {
    display: block;
    background: rgba(220, 53, 69, 0.85);
    padding: 3px 10px;
    margin-top: 0.35rem;
    margin-bottom: 0.25rem;
  }
  .field-error:empty {
    display: none;
    background: transparent;
  }
  .form-control.is-invalid,
  .form-select.is-invalid {
    border-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }
  .form-control.is-valid,
  .form-select.is-valid {
    border-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }

  /* Override Bootstrap focus glow on validated fields */
  .form-control.is-invalid:focus,
  .form-control.is-valid:focus {
    box-shadow: none !important;
    border: none !important;
  }

  /* When field has validation state, color the wrapper border */
  .custom-input:has(.is-invalid) {
    border-color: #dc3545;
  }
  .custom-input:has(.is-valid) {
    border-color: #198754;
  }

  /* Validation icon inside input-group */
  .validation-icon {
    display: none !important;
    background: #fff;
    border: none;
    font-size: 1.15rem;
    padding: 0 12px !important;
    align-items: center;
    justify-content: center;
    color: transparent;
  }
  .validation-icon.show-valid {
    display: flex !important;
    color: #198754;
  }
  .validation-icon.show-invalid {
    display: flex !important;
    color: #dc3545;
  }
    .validation-icon.show-valid i {
      color: #198754 !important;
    }
    .validation-icon.show-invalid i {
      color: #dc3545 !important;
    }
  
  /* ============================= */
  /* BUTTON */
  /* ============================= */
  .btn-main {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
    border-radius: 50px;
    padding: 14px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
  }
  
  .btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13,110,253,0.35);
    background: linear-gradient(135deg, #0b5ed7, #084298);
  }
  
  /* ============================= */
  /* IMAGE OPTION CARDS */
  /* ============================= */
  .img-card {
    background: #fff;
    padding: 12px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
  
  .img-card img {
    width: auto;

    object-fit: contain;
    margin: 0 auto 8px;
    display: block;
  }
  
  /* TEXT INSIDE CARD (BLACK) */
  .img-card p {
    color: #222 !important;
    font-weight: 600;
  }
  
  .img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  }
  
  /* ============================= */
  /* PREVIOUS BUTTON */
  /* ============================= */
  .prev-btn {
    margin-top: 15px;
    color: #ddd;
    background: none;
    border: none;
  }
  
  .prev-btn:hover {
    color: #fff;
  }
  
  /* ============================= */
  /* FINAL STEP TITLE */
  /* ============================= */
  .final-title {
    color: #fff !important;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  /* DISCLAIMER */
  .disclaimer {
    color: #ccc !important;
    font-size: 13px;
    margin-top: 15px;
  }
  /* ============================= */
/* FIX INPUT ICON COLOR */
/* ============================= */
.custom-input .input-group-text:not(.validation-icon) i {
  color: #0d6efd !important; /* Bootstrap blue */
}
  
  /* optional: change on focus */
  .custom-input:focus-within .input-group-text:not(.validation-icon) i {
    color: #0d6efd !important; /* blue highlight */
  }
  /* ============================= */
  /* ANIMATION */
  /* ============================= */
  @keyframes fadeStep {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ============================= */
  /* MOBILE */
  /* ============================= */
  @media (max-width: 768px) {
    
    .support-line {
      font-size: 16px;
    }
  
    .img-card img {
      height: 100px;
    }
  }
  @media (max-width: 768px) {

  .hero-section {
    min-height: auto !important;
    padding: 40px 0 30px;
  }

  .hero-content {
    min-height: auto !important;
    padding: 0 15px;
    justify-content: flex-start;
  }

  .hero-top-content {
    margin-bottom: 10px;
  }

  .form-area {
    margin-top: 10px;
  }

  .main-headline {
    font-size: 26px;
  }

  .sub-headline {
    font-size: 14px;
  }
}
@media (max-width: 768px) {

  .hero-section {
    padding: 50px 0 40px;
    min-height: auto !important;
  }

  .hero-content {
    padding: 0 15px;
    justify-content: flex-start;
  }

}


  /* ============================= */
  /* WHY SECTION */
  /* ============================= */
  /* WHY SECTION */
.why-section {
  background: #ffffff;
  padding: 80px 0;
}

.why-title {
 
  font-weight: 700;
  margin-bottom: 60px;
  color: #0d3b66; /* deep blue */
}

/* ROW */
.why-row {
  position: relative;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 45px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(13,110,253,0.08); /* soft blue border */
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(13,110,253,0.15); /* blue shadow */
}

/* ICON WRAP */
.icon-wrap {
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7); /* blue gradient */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  position: relative;
  transition: all 0.3s ease;
}

/* ICON GLOW EFFECT */
.icon-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(13,110,253,0.25); /* blue glow */
  transform: scale(1.2);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}

/* HOVER ICON EFFECT */
.why-card:hover .icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.why-card:hover .icon-wrap::after {
  opacity: 1;
  transform: scale(1.4);
}

/* SUBTITLE */
.why-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #0d3b66;
  margin: 30px 0 10px;
}

/* TEXT */
.why-card p {
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .why-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .why-card {
    padding: 35px 20px;
  }
}
  
  /* ============================= */
/* WINDOW SECTION */
/* ============================= */
.window-section {
  background: linear-gradient(180deg, #f8fafc, #eef3f8);
  padding: 90px 0;
}

/* TITLE */
.window-title {
    font-weight: 700;
  margin-bottom: 60px;
  color: #0d3b66; /* deep blue */
}

/* CARD */
.window-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px 20px 30px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid rgba(13,110,253,0.08);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  text-align: center;
}

/* HOVER LIFT */
.window-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(13,110,253,0.12);
}

/* IMAGE WRAPPER */
.window-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  min-height: 140px;
}

/* IMAGE */
.window-img img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: all 0.35s ease;
}

/* IMAGE HOVER */
.window-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* ============================= */
/* 🔵 PREMIUM TOP LINE ANIMATION */
/* ============================= */
.window-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #0d6efd, #0b5ed7);
  transition: all 0.4s ease;
  transform: translateX(-50%);
  border-radius: 10px;
}

.window-card:hover::before {
  width: 80%;
}

/* TEXT */
.window-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d3b66;
}

.window-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ============================= */
/* 🔵 SOFT BLUE GLOW BACKGROUND */
/* ============================= */
.window-card::after {
  content: "";
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(13,110,253,0.06), transparent 60%);
  top: -20%;
  left: -20%;
  opacity: 0;
  transition: 0.4s;
}

.window-card:hover::after {
  opacity: 1;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {
  .window-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .window-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .window-card {
    padding: 20px 15px 25px;
  }

  .window-img {
    min-height: 120px;
  }
}

@media (max-width: 480px) {
  .window-img {
    min-height: 100px;
  }
}
  /* ============================= */
  /* CTA */
  /* ============================= */
  .cta-section {
    background: linear-gradient(135deg, #0d3b66, #1976d2);
    color: #fff;
    padding: 70px 0;
  }
  
  .cta-section .btn-main {
    background: #ffffff;
    color: #0d3b66;
  }
  
  .cta-section .btn-main:hover {
    background: #f1f3f5;
    color: #0d3b66;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  
/* ============================= */
/* CTA 2 - DARK RED (FIXED) */
/* ============================= */
.cta-2 {
  background: linear-gradient(135deg, #b30000, #7a0000);
  color: #fff;
  padding: 90px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* FIXED OVERLAY */
.cta-2::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  top: -20%;
  left: -20%;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* KEEP CONTENT ABOVE */
.cta-2 .container {
  position: relative;
  z-index: 2;
}

/* BUTTON */
.cta-2 .btn-main {
  background: #ffffff;
  color: #b30000;
}

.cta-2 .btn-main:hover {
  background: #f1f3f5;
  color: #7a0000;
}
  /* ============================= */
  /* TRUSTED */
  /* ============================= */
  /* TRUSTED SECTION */
.trusted-section {
  background: #ffffff;
  padding: 80px 0;
}

.trusted-title {
  
  font-weight: 700;
  color: #0d3b66; /* deep blue */
  margin-bottom: 10px;
}

.trusted-subtitle {
  font-size: 15px;
  color: #6c757d;
  max-width: 600px;
  margin: auto;
}

/* CARD */
.trusted-card {
  background: #fff;
  padding: 35px 20px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 110, 253, 0.08); /* soft blue border */
}

/* PREMIUM HOVER EFFECT */
.trusted-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(13,110,253,0.15); /* blue shadow */
}

/* TOP GLOW LINE */
.trusted-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #0b5ed7); /* blue gradient */
  transition: 0.4s;
  transform: translateX(-50%);
}

.trusted-card:hover::before {
  width: 80%;
}

/* ICON */
.trusted-icon {
  font-size: 36px;
  color: #0d6efd; /* main blue */
  margin-bottom: 12px;
  transition: 0.3s;
}

/* ICON EFFECT */
.trusted-card:hover .trusted-icon {
  transform: scale(1.2) rotate(5deg);
  color: #084298; /* darker blue on hover */
}

/* NUMBER */
.trusted-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #0d3b66;
}

/* TEXT */
.trusted-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* BACKGROUND GLOW */
.trusted-card::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(13,110,253,0.08), transparent 60%);
  top: -20%;
  left: -20%;
  opacity: 0;
  transition: 0.4s;
}

.trusted-card:hover::after {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .trusted-title {
    font-size: 26px;
  }

  .trusted-card {
    padding: 25px 15px;
  }
}
  /* ============================= */
  /* FAQ */
  /* ============================= */
  .faq-section {
    background: #f4f7fb;
    padding: 80px 0;
  }
  .faq-title{color: #0d3b66; font-weight: 700;}
  
  .faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: 0.3s;
  }
  
  .faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  
  .faq-item summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
  }
  
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-item p {
    padding: 0 20px 15px;
  }
  
  /* ============================= */
  /* FOOTER */
  /* ============================= */
  .footer {
    max-width: 1150px;
    margin: 0px auto;
    background: #f8f9fb;
    padding: 60px 20px;
  }
  
  .footer-links a {
    color: #0d3b66;
  }
  
  /* ============================= */
  /* MOBILE */
  /* ============================= */
  @media (max-width: 768px) {
    .main-headline {
      font-size: 28px;
    }
  
    .img-card img {
      height: 100px;
    }
  }

  /* ============================= */
/* SUB HERO (PAGE TITLE ONLY) */
/* ============================= */
.sub-hero {
  background: #0d3b66;
  color: #fff;
  padding: 40px 20px;
}

.sub-hero h1 {
  font-size: 32px;
  margin-bottom: 5px;
}

.sub-hero p {
  opacity: 0.9;
  font-size: 14px;
}

/* ============================= */
/* CLEAN THANK YOU SECTION */
/* ============================= */
.thank-clean {
  background: #f5f7fa;
  padding: 56px 20px;
}

/* Reduce spacing when two thank sections stack */
.thank-clean + .thank-clean {
  padding-top: 20px;
}

.thank-clean-main {
  padding-top: 24px;
  padding-bottom: 12px;
}

.thank-clean-main .thank-card {
  max-width: 920px;
  width: 100%;
}

.thank-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

/* CARD */
.thank-card {
  background: #fff;
  padding: 22px 28px;
  border-radius: 16px;
  width: 100%;
  max-width: 920px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

/* ICON */
.success-icon {
  font-size: 46px;
  color: #28a745;
}

/* MINI STEPS */
.mini-step {
  font-size: 14px;
  color: #555;
}

.mini-step i {
  font-size: 22px;
  color: #0d6efd;
  display: block;
  margin-bottom: 8px;
}

.thank-main-title,
.promo-main-title {
  font-size: 2rem;
  line-height: 1.2;
}

.thank-buyer-logo-wrap {
  background-color: #ffffff;
  padding: 0;
  border-radius: 8px;
  margin-bottom: 0;
  line-height: 0;
}

.thank-buyer-logo {
  width: min(100%, 250px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.thank-clean-promo {
  padding-top: 0;
}

.thank-clean-promo .thank-card {
  max-width: 920px;
  width: 100%;
}

.promo-offer-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-offer-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-areas:
    "image title"
    "image copy";
  column-gap: 22px;
  row-gap: 10px;
  align-items: start;
  text-align: left;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e3e7ee;
  background: #f8fbff;
  min-height: 220px;
}

.promo-offer-title {
  grid-area: title;
  margin: 0;
  font-size: 1.25rem;
}

.promo-offer-image {
  grid-area: image;
  min-height: 100%;
  border-radius: 16px;
  border: 2px dashed #c5cfdd;
  background: #eef3fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #355073;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

.promo-offer-image i {
  font-size: 34px;
}

.promo-offer-image span {
  font-size: 14px;
}

.promo-offer-image.has-photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-style: solid;
  border-radius: 16px;
  line-height: 0;
}

.promo-offer-image.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.promo-offer-copy {
  grid-area: copy;
}

.promo-offer-copy p {
  margin: 0 0 14px;
}

.thank-clean-promo a.btn-main:hover,
.thank-clean-promo a.btn-main:focus,
.thank-clean-promo a.btn-main:active {
  color: #fff !important;
}

.thank-clean-promo a.btn-main::after {
  content: " \2192";
  display: inline-block;
  margin-left: 6px;
}

/* MOBILE */
@media (max-width: 768px) {
  .thank-card {
    padding: 35px 20px;
  }

  .thank-main-title,
  .promo-main-title {
    font-size: 1.65rem;
  }

  .promo-offer-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "copy";
    row-gap: 12px;
  }

  .promo-offer-image {
    min-height: 140px;
  }

  .thank-buyer-logo {
    width: min(100%, 280px);
  }

  .promo-offer-image i {
    font-size: 26px;
  }

  .promo-offer-image span {
    font-size: 12px;
  }

  .sub-hero h1 {
    font-size: 24px;
  }
}