
:root{
  --red:#d00607;
  --blue:#204376;
  --dark:#0f243d;
  --light:#f5f8ff;
  --whatsapp:#25D366;
}

body{
  overflow-x:hidden;
}

.us-modern-hero{
  position:relative;
  padding:90px 0;
  overflow:hidden;
  background:
    radial-gradient(circle at top right, rgba(208,6,7,.12), transparent 35%),
    radial-gradient(circle at bottom left, rgba(32,67,118,.15), transparent 35%),
    linear-gradient(135deg,#ffffff 0%,#f3f7ff 100%);
}

.us-modern-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(32,67,118,.05) 1px, transparent 1px),
    linear-gradient(90deg,rgba(32,67,118,.05) 1px, transparent 1px);
  background-size:42px 42px;
  opacity:.25;
}

.hero-inner{
  position:relative;
  z-index:2;
}

.hero-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  color:var(--blue);
  font-weight:800;
  box-shadow:0 10px 30px rgba(15,36,61,.08);
}

.hero-title{
  font-size:clamp(38px,5.5vw,72px);
  line-height:1.05;
  font-weight:950;
  color:var(--blue);
  margin:18px 0;
}

.hero-title span{
  color:var(--red);
}

.hero-text{
  font-size:18px;
  color:#475569;
  max-width:640px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn-call-back{
  background:linear-gradient(135deg,#d00607,#ff3b3b);
  color:#fff !important;
  border:none;
  border-radius:18px;
  padding:15px 26px;
  font-weight:900;
  letter-spacing:.2px;
  box-shadow:0 16px 35px rgba(208,6,7,.28);
  transition:.25s ease;
}

.btn-call-back:hover{
  background:linear-gradient(135deg,#b80506,#d00607);
  transform:translateY(-3px);
  box-shadow:0 22px 45px rgba(208,6,7,.35);
}

.btn-whatsapp{
  background:var(--whatsapp);
  color:#fff !important;
  border:none;
  border-radius:18px;
  padding:15px 26px;
  font-weight:900;
  letter-spacing:.2px;
  box-shadow:0 16px 35px rgba(37,211,102,.28);
  transition:.25s ease;
}

.btn-whatsapp:hover{
  background:#1ebe5d;
  color:#fff !important;
  transform:translateY(-3px);
  box-shadow:0 22px 45px rgba(37,211,102,.35);
}

.btn-second{
  background:#fff;
  color:var(--blue) !important;
  border:1px solid rgba(32,67,118,.18);
  border-radius:18px;
  padding:15px 26px;
  font-weight:900;
  transition:.25s;
}

.btn-second:hover{
  background:var(--blue);
  color:#fff !important;
}

.booking-card{
  position:relative;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.8);
  border-radius:28px;
  padding:32px;
  box-shadow:0 30px 80px rgba(15,36,61,.16);
  z-index:2;
}

.booking-card h3{
  color:var(--blue);
  font-weight:950;
}

.form-control,
.form-select{
  height:54px;
  border-radius:14px;
  border:1px solid #dbe4f0;
}

.form-control:focus,
.form-select:focus{
  border-color:var(--red);
  box-shadow:0 0 0 .18rem rgba(208,6,7,.12);
}

.floating-card{
  position:absolute;
  background:#fff;
  border-radius:22px;
  padding:16px 18px;
  box-shadow:0 18px 45px rgba(15,36,61,.12);
  z-index:1;
  animation:floatCard 4s ease-in-out infinite;
}

.floating-card.one{
  top:70px;
  right:37%;
}

.floating-card.two{
  bottom:65px;
  right:5%;
  animation-delay:1s;
}

@keyframes floatCard{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-14px)}
}

.quick-strip{
  margin-top:-35px;
  position:relative;
  z-index:5;
}

.quick-box{
  background:#fff;
  border-radius:24px;
  padding:25px;
  box-shadow:0 20px 55px rgba(15,36,61,.1);
}

.counter-num{
  color:var(--red);
  font-size:34px;
  font-weight:950;
}

.section-space{
  padding:75px 0;
}

.section-title{
  color:var(--blue);
  font-weight:950;
  font-size:clamp(30px,4vw,46px);
}

.process-card{
  background:#fff;
  border-radius:24px;
  padding:30px;
  height:100%;
  border:1px solid rgba(32,67,118,.08);
  box-shadow:0 18px 45px rgba(15,36,61,.07);
  transition:.25s;
}

.process-card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 70px rgba(15,36,61,.12);
}

.step-icon{
  width:62px;
  height:62px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#eef4ff;
  color:var(--blue);
  font-size:24px;
  margin-bottom:18px;
}

.cta-section{
  background:
    linear-gradient(135deg,rgba(32,67,118,.96),rgba(15,36,61,.96)),
    url("https://flytouchoverseas.com/wp-content/themes/astrid/htmlwebsite/assets/images/us-visa.webp");
  background-size:cover;
  background-position:center;
  color:#fff;
  border-radius:34px;
  padding:50px;
  overflow:hidden;
}

.cta-section h2{
  font-weight:950;
}

.sticky-mobile-cta{
  display:none;
}

.reveal{
  opacity:0;
  transform:translateY(35px);
  transition:.7s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:991px){
  .us-modern-hero{
    padding-top:105px !important;
    padding-bottom:55px;
  }

  .booking-card{
    margin-top:35px;
  }

  .floating-card{
    display:none;
  }

  .quick-strip{
    margin-top:0;
  }
}

@media(max-width:576px){
  .us-modern-hero{
    text-align:center;
    padding-top:80px !important;
    padding-bottom:35px;
  }

  .hero-actions a,
  .btn-call-back,
  .btn-whatsapp{
    width:100%;
  }

  .booking-card{
    padding:24px;
    text-align:left;
  }

  .quick-box{
    text-align:center;
  }

  .cta-section{
    padding:30px 22px;
    border-radius:24px;
    text-align:center;
  }

  .sticky-mobile-cta{
    display:flex;
    position:fixed;
    bottom:0;
    left:0;
    right:0;
    z-index:9999;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(14px);
    padding:12px;
    gap:10px;
    box-shadow:0 -10px 30px rgba(0,0,0,.12);
    border-top-left-radius:20px;
    border-top-right-radius:20px;
  }

  .sticky-mobile-cta a{
    padding:13px 10px;
    font-size:14px;
    border-radius:15px;
  }

  body{
    padding-bottom:90px;
  }
}


/* FIX: stop this page CSS from affecting header/footer links */
header a,
footer a,
.site-header a,
.main-navigation a,
.navbar a,
.footer a{
  text-decoration:none !important;
}

/* FIX: better mobile spacing */
@media(max-width:576px){

  .us-modern-hero{
    padding-top:80px !important;
    padding-bottom:35px !important;
  }

  .hero-title{
    font-size:34px;
    line-height:1.12;
    margin-top:14px;
  }

  .hero-text{
    font-size:15px;
    line-height:1.6;
  }

  .hero-tag{
    font-size:12px;
    padding:9px 12px;
  }

  .booking-card{
    margin-top:22px;
    padding:20px;
    border-radius:22px;
  }

  .quick-box{
    margin-top:18px;
    padding:20px 14px;
  }

  .section-space{
    padding:45px 0;
  }

  .process-card{
    padding:22px;
  }

  .cta-section{
    padding:26px 18px;
  }
}
.section-light{
  background:#f5f8ff;
  border-radius: 20px;
      margin: 20px 2px;
}


.ft-visa-tabs-wrap{
  padding:60px 0 20px;
  background:#fff;
}

.ft-tabs-nav{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  display:flex;
  justify-content:center;
  gap:38px;
  border-bottom:1px solid #edf1f7;
  padding:18px 10px;
  margin-bottom:55px;
}

.ft-tabs-nav a{
  color:#475569;
  font-weight:800;
  text-decoration:none;
  padding:10px 4px;
  border-bottom:3px solid transparent;
}

.ft-tabs-nav a.active,
.ft-tabs-nav a:hover{
  color:#204376;
  border-color:#4f5cf8;
}

.ft-premium-section{
  padding-bottom:20px;
  scroll-margin-top:10px;
}

.ft-premium-section h2{
  color:#111827;
  font-weight:950;
  font-size:clamp(30px,4vw,46px);
  line-height:1.15;
}

.ft-premium-section p{
  color:#64748b;
  font-size:16px;
  line-height:1.7;
}

.ft-timeline-card{
  background:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:0 20px 55px rgba(15,36,61,.10);
  border:1px solid #eef2f7;
  margin-top:30px;
}

.ft-badge{
  background:linear-gradient(90deg,#e8f3ff,#eef2ff);
  color:#204376;
  padding:10px 15px;
  border-radius:14px;
  font-weight:900;
  text-align:center;
  margin-bottom:25px;
}

.ft-line-box{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:25px 10px;
}

.ft-line-box:before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:#cbd5e1;
  z-index:1;
}

.ft-dot{
  width:13px;
  height:13px;
  background:#fff;
  border:2px solid #94a3b8;
  border-radius:50%;
  position:relative;
  z-index:2;
}

.ft-dot.active{
  background:#4f5cf8;
  border-color:#4f5cf8;
}

.ft-price-card{
  background:#fff;
  border-radius:28px;
  padding:24px;
  border:8px solid #e6e9f2;
  box-shadow:0 25px 70px rgba(15,36,61,.14);
}

.ft-price-top{
  color:#204376;
  font-weight:900;
  background:#eef2ff;
  padding:13px 15px;
  border-radius:16px;
  margin-bottom:18px;
}

.ft-select-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  border:1px solid #e2e8f0;
  border-radius:18px;
  overflow:hidden;
}

.ft-select-row div{
  padding:16px;
}

.ft-select-row div:first-child{
  border-right:1px solid #e2e8f0;
}

.ft-select-row label{
  display:block;
  font-size:12px;
  color:#64748b;
  margin-bottom:5px;
}

.ft-select-row strong{
  color:#111827;
}

.ft-traveller-row{
  display:flex;
  justify-content:space-between;
  padding:18px 3px;
  border-bottom:1px solid #e2e8f0;
  font-weight:900;
}

.ft-price-main{
  text-align:center;
  padding:25px 0;
}

.ft-price-main h3{
  font-size:38px;
  font-weight:950;
  color:#111827;
  margin:0;
}

.ft-price-main small{
  font-weight:800;
  color:#64748b;
  text-transform:uppercase;
}

.ft-price-breakup{
  background:#f8fafc;
  border-radius:20px;
  padding:18px;
}

.ft-price-breakup div{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid #e2e8f0;
}

.ft-price-breakup div:last-child{
  border-bottom:0;
}

.ft-note{
  font-size:12px !important;
  margin:14px 0 0;
  text-align:center;
}

.section-light-box{
  background:#f8fbff;
  border-radius:34px;
  padding-left:35px;
  padding-right:35px;
  margin-bottom:10px;
}

.ft-info-card,
.ft-review-card{
  background:#fff;
  border-radius:22px;
  padding:25px;
  height:100%;
  box-shadow:0 16px 45px rgba(15,36,61,.07);
  border:1px solid #eef2f7;
}

.ft-info-card i{
  font-size:28px;
  color:#d00607;
  margin-bottom:15px;
}

.ft-info-card h4,
.ft-review-card h4{
  color:#204376;
  font-weight:900;
}

.ft-review-card strong{
  color:#f59e0b;
  display:block;
  margin-bottom:10px;
}

.ft-review-card span{
  font-weight:800;
  color:#204376;
}

@media(max-width:768px){
  .ft-tabs-nav{
    overflow-x:auto;
    justify-content:flex-start;
    gap:22px;
    white-space:nowrap;
    margin-bottom:25px;
  }

  .ft-premium-section{
    padding:35px 0;
  }

  .section-light-box{
    padding-left:18px;
    padding-right:18px;
    border-radius:24px;
  }

  .ft-select-row{
    grid-template-columns:1fr;
  }

  .ft-select-row div:first-child{
    border-right:0;
    border-bottom:1px solid #e2e8f0;
  }
}



.ft-mini-select{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  font-weight:900;
  color:#111827;
  padding:0;
}

.traveller-control{
  display:flex;
  align-items:center;
  gap:12px;
}

.traveller-control button{
  width:28px;
  height:28px;
  border-radius:50%;
  border:1px solid #cbd5e1;
  background:#fff;
  font-weight:900;
  line-height:1;
}

.traveller-control button:hover{
  background:#204376;
  color:#fff;
}


.ft-popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(15,36,61,.65);
  backdrop-filter:blur(8px);
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
}

.ft-popup-overlay.active{
  display:flex;
}

.ft-popup-box{
  width:100%;
  max-width:430px;
  background:#fff;
  border-radius:26px;
  padding:28px;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.ft-popup-box h3{
  color:#204376;
  font-weight:950;
}

.ft-popup-box p{
  color:#64748b;
}

.ft-popup-close{
  position:absolute;
  top:12px;
  right:16px;
  border:0;
  background:#f1f5f9;
  width:34px;
  height:34px;
  border-radius:50%;
  font-size:24px;
  line-height:1;
}


/* STRONG FOOTER LINK UNDERLINE FIX */
body footer a,
body footer a *,
body .footer a,
body .footer a *,
body .site-footer a,
body .site-footer a *,
body #footer a,
body #footer a *{
  text-decoration:none !important;
  border-bottom:none !important;
  box-shadow:none !important;
  background-image:none !important;
}

body footer a:before,
body footer a:after,
body .footer a:before,
body .footer a:after,
body .site-footer a:before,
body .site-footer a:after,
body #footer a:before,
body #footer a:after{
  display:none !important;
  content:none !important;
  border:0 !important;
  background:none !important;
}


.hero-disclaimer{
  margin-top:12px;
  font-size:13px;
  color:#5b6472;
  font-weight:500;
}