/* =====================================================================
   WHITE COLLAR TOURS — home.css
   ===================================================================== */

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; padding: 118px 0 70px;
  display: flex; align-items: center; overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 0%, #173a5c 0%, transparent 55%),
    radial-gradient(100% 100% at 0% 100%, #0c1d31 0%, transparent 50%),
    linear-gradient(160deg, #0E2238 0%, #0A1726 60%, #081320 100%);
  color: #fff;
}
/* animated aurora blobs */
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; pointer-events: none; }
.hero-blob.b1 { width: 460px; height: 460px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(201,162,75,.55), transparent 70%); animation: floaty 9s var(--ease-soft) infinite; }
.hero-blob.b2 { width: 380px; height: 380px; bottom: -120px; left: -60px; background: radial-gradient(circle, rgba(40,110,170,.6), transparent 70%); animation: floaty 11s var(--ease-soft) infinite reverse; }
/* dotted world map texture */
.hero::before {
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.4px);
  background-size: 26px 26px; mask-image: radial-gradient(120% 80% at 70% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 50px; align-items: center; width: 100%; }

.hero-pill { margin-bottom: 24px; }
.hero h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.7rem, 6.5vw, 5.1rem); line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 22px;
}
.hero h1 .ital { font-style: italic; color: var(--gold-light); }
.hero h1 .word { display: inline-block; opacity: 0; transform: translateY(28px); animation: heroWord .8s var(--ease) forwards; }
@keyframes heroWord { to { opacity: 1; transform: none; } }
.hero-lead { font-size: clamp(1rem, 2vw, 1.18rem); color: rgba(255,255,255,.78); max-width: 500px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }

.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--display); font-weight: 700; font-size: 2.2rem; color: #fff; line-height: 1; }
.hero-stat .num .plus { color: var(--gold-light); }
.hero-stat .lbl { font-size: 0.8rem; color: rgba(255,255,255,.6); margin-top: 6px; letter-spacing: 0.03em; }

/* hero flags showcase (replaces the quick form) */
.hero-visual { position: relative; min-height: 440px; }
.hero-orb {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #2b6aa0, #0c2840 72%);
  box-shadow: inset -16px -16px 44px rgba(0,0,0,.5), 0 0 60px rgba(43,106,160,.4);
  display: grid; place-items: center; text-align: center;
  animation: floaty 7s var(--ease-soft) infinite; z-index: 1;
}
.hero-orb::before { content:""; position:absolute; inset:-32px; border-radius:50%; border:1.5px dashed rgba(230,203,135,.32); animation: spin-slow 24s linear infinite; }
.hero-orb::after { content:"✈"; position:absolute; top:-14px; left:calc(50% - 8px); font-size:1.3rem; color:var(--gold-light); animation: spin-slow 24s linear infinite; transform-origin: 8px 114px; }
.hero-orb .orb-num { font-family: var(--display); font-weight:700; font-size:2.7rem; line-height:1; color: var(--gold-light); }
.hero-orb .orb-lbl { font-size:0.7rem; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.78); margin-top:5px; }

.hflag {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 9px 16px 9px 11px; border-radius: 15px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0,0,0,.28); z-index: 2;
  animation: floaty 6s var(--ease-soft) infinite; animation-delay: var(--d, 0s);
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.hflag:hover { transform: translateY(-5px) scale(1.05); border-color: var(--gold-light); background: rgba(255,255,255,.17); }
.hflag .he { font-size: 1.7rem; line-height: 1; filter: drop-shadow(0 3px 6px rgba(0,0,0,.35)); }
.hflag .ht { line-height: 1.12; }
.hflag .ht strong { display:block; font-size:0.9rem; font-weight:700; color:#fff; white-space:nowrap; }
.hflag .ht small { font-size:0.66rem; color: var(--gold-light); letter-spacing:.02em; }

/* ---------- LOGO / TRUST STRIP ---------- */
.trust-strip { background: var(--navy); padding: 22px 0; overflow: hidden; }
.trust-track { display: flex; gap: 60px; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.trust-strip:hover .trust-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.6); font-weight: 600; font-size: 0.92rem; white-space: nowrap; }
.trust-item svg { width: 20px; height: 20px; color: var(--gold-light); }

/* ---------- SECTION SHELL ---------- */
.section { padding: 100px 0; }
.section-head { max-width: 640px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 16px; }

.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 54px; }
.head-row .section-head { margin-bottom: 0; }

/* ---------- DESTINATIONS ---------- */
.dest-section { background: var(--paper); }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dest-card {
  position: relative; border-radius: var(--radius-l); overflow: hidden; min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  color: #fff; box-shadow: var(--sh-md); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  isolation: isolate;
}
.dest-card::before { content:""; position:absolute; inset:0; z-index:-2; background: var(--cardbg, linear-gradient(160deg,#1a3a5c,#0e2238)); transition: transform .8s var(--ease); }
.dest-card::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(to top, rgba(8,15,28,.88) 0%, rgba(8,15,28,.25) 50%, rgba(8,15,28,.45) 100%); }
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.dest-card:hover::before { transform: scale(1.08); }
.dest-flag { position: absolute; top: 22px; left: 22px; font-size: 2.4rem; filter: drop-shadow(0 4px 10px rgba(0,0,0,.4)); transition: transform .5s var(--ease); }
.dest-card:hover .dest-flag { transform: scale(1.12) rotate(-4deg); }
.dest-rate {
  position: absolute; top: 24px; right: 22px; font-size: 0.74rem; font-weight: 700;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.28); backdrop-filter: blur(8px);
  padding: 6px 12px; border-radius: 999px; display: flex; align-items: center; gap: 5px;
}
.dest-rate svg { width: 13px; height: 13px; color: #8ee6a6; }
.dest-region { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); font-weight: 600; margin-bottom: 8px; }
.dest-card h3 { font-family: var(--display); font-weight: 600; font-size: 1.85rem; line-height: 1.05; margin-bottom: 8px; }
.dest-card .dest-meta { display: flex; gap: 16px; font-size: 0.84rem; color: rgba(255,255,255,.78); margin-bottom: 16px; flex-wrap: wrap; }
.dest-card .dest-meta span { display: flex; align-items: center; gap: 6px; }
.dest-card .dest-meta svg { width: 15px; height: 15px; color: var(--gold-light); }
.dest-link {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem;
  color: #fff; align-self: flex-start; padding: 9px 16px; border-radius: 999px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); transition: .35s var(--ease);
}
.dest-link svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.dest-card:hover .dest-link { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.dest-card:hover .dest-link svg { transform: translateX(4px); }

/* ---------- SERVICES / VISA TYPES ---------- */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border-radius: var(--radius-l); padding: 32px;
  border: 1px solid var(--line); transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  position: relative; overflow: hidden;
}
.service-card::after { content:""; position:absolute; top:0; left:0; width:100%; height:3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-ico {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(150deg, var(--navy), var(--navy-soft)); color: var(--gold-light);
  transition: transform .5s var(--ease);
}
.service-ico svg { width: 27px; height: 27px; }
.service-card:hover .service-ico { transform: rotate(-8deg) scale(1.06); }
.service-card h3 { font-size: 1.22rem; font-weight: 700; color: var(--navy); margin-bottom: 9px; }
.service-card p { font-size: 0.94rem; color: var(--slate); line-height: 1.65; }

/* ---------- PROCESS ---------- */
.process-section { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.process-section .section-title { color: #fff; }
.process-section::before { content:""; position:absolute; top:0; right:0; width:50%; height:100%; background: radial-gradient(circle at 80% 30%, rgba(201,162,75,.1), transparent 60%); pointer-events:none; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step {
  position: relative; padding: 30px 24px; border-radius: var(--radius-l);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  transition: transform .45s var(--ease), background .45s;
}
.step:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); }
.step-num {
  font-family: var(--display); font-weight: 700; font-size: 2.6rem; color: var(--gold-light);
  line-height: 1; margin-bottom: 16px; opacity: .9;
}
.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 9px; }
.step p { font-size: 0.9rem; color: rgba(255,255,255,.66); line-height: 1.6; }
.step .step-ico { position: absolute; top: 28px; right: 26px; color: rgba(255,255,255,.2); }
.step .step-ico svg { width: 28px; height: 28px; }

/* ---------- WHY US ---------- */
.why-section { background: var(--paper); }
.why-wrap { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.why-visual {
  position: relative; border-radius: var(--radius-xl); min-height: 460px; overflow: hidden;
  background: linear-gradient(160deg, #173a5c, #0a1726); display: grid; place-items: center;
  box-shadow: var(--sh-lg);
}
.why-visual::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1.4px); background-size: 22px 22px; }
.globe {
  width: 230px; height: 230px; border-radius: 50%; position: relative;
  background: radial-gradient(circle at 32% 30%, #2b6aa0, #0c2840 70%);
  box-shadow: inset -18px -18px 50px rgba(0,0,0,.5), 0 0 70px rgba(43,106,160,.4);
  animation: floaty 6s var(--ease-soft) infinite;
}
.globe::before, .globe::after { content:""; position:absolute; inset:0; border-radius:50%; border: 1.5px solid rgba(230,203,135,.35); }
.globe::before { transform: rotateX(72deg); }
.globe::after { transform: rotateY(72deg); }
.orbit { position: absolute; inset: -36px; border-radius: 50%; border: 1.5px dashed rgba(230,203,135,.3); animation: spin-slow 26s linear infinite; }
.orbit::before { content:"✈"; position: absolute; top: -12px; left: 50%; font-size: 1.4rem; color: var(--gold-light); }
.why-badge {
  position: absolute; bottom: 26px; left: 26px; right: 26px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(12px); border-radius: var(--radius);
  padding: 18px 20px; display: flex; align-items: center; gap: 16px;
}
.why-badge .ring { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: var(--navy); font-weight: 800; flex: none; animation: pulse-ring 2.6s infinite; }
.why-badge strong { color: #fff; display: block; font-size: 1.02rem; }
.why-badge small { color: rgba(255,255,255,.65); font-size: 0.82rem; }

.why-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.why-item { display: flex; gap: 18px; padding: 18px; border-radius: var(--radius); transition: background .35s; }
.why-item:hover { background: var(--cream); }
.why-item .wi-ico { width: 50px; height: 50px; border-radius: 14px; flex: none; display: grid; place-items: center; background: rgba(201,162,75,.14); color: var(--gold-deep); }
.why-item .wi-ico svg { width: 24px; height: 24px; }
.why-item h4 { font-size: 1.08rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.why-item p { font-size: 0.92rem; color: var(--slate); line-height: 1.6; }

/* ---------- TESTIMONIALS ---------- */
.tst-section { background: var(--cream); }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tst-card {
  background: var(--white); border-radius: var(--radius-l); padding: 30px;
  border: 1px solid var(--line); box-shadow: var(--sh-sm); transition: transform .45s var(--ease), box-shadow .45s;
  display: flex; flex-direction: column;
}
.tst-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.tst-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.tst-stars svg { width: 18px; height: 18px; }
.tst-card p { font-size: 1rem; color: var(--ink); line-height: 1.7; flex: 1; margin-bottom: 22px; }
.tst-author { display: flex; align-items: center; gap: 13px; }
.tst-avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; flex: none; }
.tst-author strong { display: block; font-size: 0.96rem; color: var(--navy); }
.tst-author small { font-size: 0.82rem; color: var(--slate-2); }

/* ---------- LEAD CTA ---------- */
.lead-section { padding: 110px 0; background: var(--paper); }
.lead-wrap {
  background: linear-gradient(150deg, #0E2238, #0a1726 70%); border-radius: var(--radius-xl);
  padding: 0; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; box-shadow: var(--sh-lg);
  position: relative;
}
.lead-info { padding: 56px 50px; color: #fff; position: relative; }
.lead-info::before { content:""; position:absolute; top:-60px; left:-60px; width:260px; height:260px; border-radius:50%; background: radial-gradient(circle, rgba(201,162,75,.18), transparent 70%); }
.lead-info .eyebrow { margin-bottom: 18px; }
.lead-info h2 { font-family: var(--display); font-weight: 600; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.06; margin-bottom: 18px; }
.lead-info h2 .ital { font-style: italic; color: var(--gold-light); }
.lead-info > p { color: rgba(255,255,255,.74); font-size: 1.02rem; line-height: 1.7; margin-bottom: 30px; max-width: 420px; }
.lead-points { display: flex; flex-direction: column; gap: 16px; }
.lead-point { display: flex; gap: 13px; align-items: center; font-size: 0.96rem; color: rgba(255,255,255,.86); }
.lead-point .lp-ico { width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center; background: rgba(201,162,75,.16); color: var(--gold-light); }
.lead-point .lp-ico svg { width: 18px; height: 18px; }

.lead-form { background: var(--white); padding: 48px 44px; }
.lead-form h3 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.lead-form p.fp { font-size: 0.92rem; color: var(--slate); margin-bottom: 26px; }
.lead-form .field label { color: var(--slate); }
.lead-form .field input, .lead-form .field select, .lead-form .field textarea {
  background: var(--paper); border: 1.5px solid var(--line); color: var(--ink);
}
.lead-form .field input::placeholder, .lead-form .field textarea::placeholder { color: var(--slate-2); }
.lead-form .field select option { color: var(--ink); }
.lead-form .field input:focus, .lead-form .field select:focus, .lead-form .field textarea:focus { border-color: var(--gold); background: var(--white); }
.lead-form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form .btn { margin-top: 8px; }
/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { min-height: auto; display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-start; }
  .hero-orb { display: none; }
  .hflag { position: static !important; animation: none; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .why-wrap { grid-template-columns: 1fr; gap: 40px; }
  .tst-grid { grid-template-columns: 1fr; }
  .lead-wrap { grid-template-columns: 1fr; }
  .lead-info { padding: 44px 36px; }
}
@media (max-width: 620px) {
  .section { padding: 72px 0; }
  .hero { padding: 104px 0 56px; }
  .hero-stats { gap: 22px; }
  .hero-stat .num { font-size: 1.7rem; }
  .hflag .ht small { display: none; }
  .hflag { padding: 8px 13px 8px 10px; }
  .dest-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .lead-form .two { grid-template-columns: 1fr; }
  .lead-form { padding: 36px 26px; }
  .head-row { flex-direction: column; align-items: flex-start; }
}
