/* ===================================================
   QWAY GLOBAL VENTURES — Main Stylesheet
   Primary: #001956  |  Secondary: #00cc7c
   =================================================== */

/* Prevent horizontal overflow globally */
html, body { overflow-x: hidden; }

/* === Custom Properties === */
:root {
  --primary:        #001956;
  --primary-dark:   #001240;
  --primary-light:  #0a2d7a;
  --primary-rgb:    0, 25, 86;
  --secondary:      #00cc7c;
  --secondary-dark: #00a865;
  --secondary-rgb:  0, 204, 124;
  --white:  #ffffff;
  --off:    #f7f9fc;
  --light:  #f2f5fb;
  --border: #e0e8f4;
  --text:   #111827;
  --muted:  #556080;
  --dark:   #080e22;

  --sh-xs: 0 2px 8px  rgba(var(--primary-rgb), 0.06);
  --sh-sm: 0 4px 16px rgba(var(--primary-rgb), 0.09);
  --sh:    0 8px 32px rgba(var(--primary-rgb), 0.12);
  --sh-lg: 0 16px 56px rgba(var(--primary-rgb), 0.18);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 48px;

  --ease: cubic-bezier(.4,0,.2,1);
  --dur:  .35s;
  --nav-h: 72px;
  --max-w: 1200px;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* === Typography === */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.85;
}

/* === Layout === */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5.5rem 0; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: var(--r-xl);
  font-size: .95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(var(--secondary-rgb), .38);
}
.btn-primary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(var(--secondary-rgb),.48); }
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn svg { width: 18px; height: 18px; }

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed; inset: 0;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  z-index: 99999;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }

.pre-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.pre-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}
.pre-logo-text em { color: var(--secondary); font-style: normal; }
.pre-ring {
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: all var(--dur) var(--ease);
}
#navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 24px rgba(var(--primary-rgb),.1);
}

.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: .75rem; min-width: 150px; }
.nav-logo-img { height: 44px; width: auto; max-width: 210px; object-fit: contain; vertical-align: middle; display: none; }
#navbar:not(.scrolled).has-menu-logo .nav-logo-img-menu { display: inline-block; }
#navbar.scrolled.has-sticky-logo .nav-logo-img-sticky { display: inline-block; }
#navbar:not(.scrolled).has-menu-logo .nav-logo-text,
#navbar.scrolled.has-sticky-logo .nav-logo-text { display: none; }
.nav-logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--primary);
  transition: color var(--dur) var(--ease);
}
.nav-logo-text em { color: var(--secondary); font-style: normal; }
.nav-logo-text small {
  margin-top: .18rem;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--secondary);
}
#navbar:not(.scrolled) .nav-logo-text { color: #fff; }
#navbar.scrolled .nav-logo-text { color: var(--primary); }

/* Footer logo — uses the same full color logo selected for the sticky bar */
.footer-logo { display: inline-flex; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.footer-logo-img { height: 46px; width: auto; max-width: 230px; object-fit: contain; display: none; }
footer.has-footer-logo .footer-logo-img { display: inline-block; }
footer.has-footer-logo .footer-logo-text { display: none; }
.footer-logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  font-size: 1.62rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #fff;
}
.footer-logo-text em { color: var(--secondary); font-style: normal; }
.footer-logo-text small {
  margin-top: .18rem;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  padding: .5rem .9rem;
  font-size: .88rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
}
#navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,.88); }
#navbar:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { color: var(--primary); background: var(--light); }

/* CTA area */
.nav-cta { display: flex; align-items: center; gap: 1rem; }

.nav-phone {
  display: flex; align-items: center; gap: .5rem;
  font-weight: 600; font-size: .9rem;
  padding: .55rem 1.25rem;
  border-radius: var(--r-xl);
  transition: all var(--dur) var(--ease);
}
#navbar:not(.scrolled) .nav-phone { color: #fff; border: 1.5px solid rgba(255,255,255,.4); }
#navbar:not(.scrolled) .nav-phone:hover { background: rgba(255,255,255,.12); border-color: #fff; }
#navbar.scrolled .nav-phone { color: var(--primary); background: var(--light); }
#navbar.scrolled .nav-phone:hover { background: var(--primary); color: #fff; }
.nav-phone svg { width: 16px; height: 16px; }

/* Mobile call button — visible on mobile between logo & hamburger */
.mobile-call-btn {
  display: none;
  align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700;
  padding: .45rem 1rem;
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  white-space: nowrap;
  transition: all var(--dur) var(--ease);
}
.mobile-call-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
#navbar.scrolled .mobile-call-btn { color: var(--primary); border-color: var(--primary); background: var(--light); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: all var(--dur) var(--ease);
}
#navbar.scrolled .hamburger span { background: var(--primary); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--primary);
  z-index: 999;
  display: flex; flex-direction: column;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: rgba(255,255,255,.88);
  font-size: 1.35rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: color var(--dur) var(--ease);
}
.mobile-nav a:hover { color: var(--secondary); }
.mobile-nav .mobile-phone {
  display: flex; align-items: center; gap: .75rem;
  margin-top: 2rem;
  color: var(--secondary);
  font-size: 1.1rem;
  font-weight: 700;
  border-bottom: none;
}

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 40%, rgba(0,204,124,.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(0,40,128,.5) 0%, transparent 50%),
    linear-gradient(145deg, #001956 0%, #001540 45%, #002a85 75%, #001956 100%);
}
.hero-dots {
  position: absolute; inset: 0; z-index: 1; opacity: .035;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-glow {
  position: absolute; z-index: 1;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,204,124,.15) 0%, transparent 70%);
  right: -100px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  min-height: 100vh;
  align-content: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 1.5rem 4rem;
}

.hero-content {}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,204,124,.12);
  border: 1px solid rgba(0,204,124,.3);
  color: var(--secondary);
  padding: .4rem 1rem;
  border-radius: var(--r-xl);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s var(--ease) both;
}
.hero-badge::before { content: ''; display: block; width: 7px; height: 7px; background: var(--secondary); border-radius: 50%; }

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s .1s var(--ease) both;
}
.hero-title .accent { color: var(--secondary); }
.hero-title .underline-anim {
  position: relative; display: inline-block;
}
.hero-title .underline-anim::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  animation: growX 1s .7s var(--ease) both;
  transform-origin: left;
}
@keyframes growX { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.78);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.85;
  animation: fadeUp .6s .2s var(--ease) both;
}

.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeUp .6s .3s var(--ease) both;
}

.hero-trust {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeUp .6s .4s var(--ease) both;
}
.trust-item {
  display: flex; flex-direction: column; gap: .2rem;
}
.trust-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: var(--secondary);
  line-height: 1;
}
.trust-label { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 500; }

/* Hero destinations visual */
.hero-visual {
  display: flex; align-items: center; justify-content: flex-end;
  animation: fadeUp .6s .5s var(--ease) both;
}
.hv-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 2rem 1.75rem 1.75rem;
  width: 100%; max-width: 360px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.hv-header { display: flex; align-items: center; gap: .875rem; margin-bottom: 1.5rem; }
.hv-globe-ico {
  width: 44px; height: 44px;
  background: rgba(0,204,124,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hv-globe-ico svg { width: 22px; height: 22px; fill: none; stroke: var(--secondary); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.hv-head-txt { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; }
.hv-head-txt small { display: block; font-family: 'Inter', sans-serif; font-size: .73rem; font-weight: 400; color: rgba(255,255,255,.5); margin-top: .1rem; }
.hv-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .6rem; margin-bottom: 1.25rem; }
.hv-tile {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: .75rem .5rem .6rem;
  text-align: center;
  cursor: default;
  transition: all .3s var(--ease);
}
.hv-tile:hover { background: rgba(255,255,255,.13); border-color: rgba(0,204,124,.35); transform: translateY(-3px); }
.hv-tile img { width: 34px; height: 22px; border-radius: 3px; object-fit: cover; display: block; margin: 0 auto .45rem; }
.hv-tile span { font-size: .68rem; color: rgba(255,255,255,.7); font-weight: 500; display: block; line-height: 1.3; }
.hv-more { text-align: center; font-size: .78rem; color: var(--secondary); font-weight: 600; margin-bottom: 1.25rem; }
.hv-cert {
  display: flex; align-items: center; gap: .6rem;
  padding: .75rem .875rem;
  background: rgba(0,204,124,.1);
  border: 1px solid rgba(0,204,124,.22);
  border-radius: 12px;
}
.hv-cert svg { width: 18px; height: 18px; fill: var(--secondary); flex-shrink: 0; }
.hv-cert-txt { font-size: .75rem; color: rgba(255,255,255,.8); font-weight: 600; line-height: 1.35; }
.hv-cert-txt em { color: var(--secondary); font-style: normal; display: block; font-size: .68rem; font-weight: 400; }

/* Legacy hero card styles (kept for safety) */
.hcard {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  color: var(--white);
}
.hcard:nth-child(2) { margin-left: 2.5rem; }
.hcard-icon {
  width: 42px; height: 42px;
  background: var(--secondary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .875rem;
}
.hcard-icon svg { width: 22px; height: 22px; }
.hcard-num { font-size: 1.75rem; font-weight: 800; font-family: 'Poppins',sans-serif; color: var(--secondary); }
.hcard-label { font-size: .82rem; color: rgba(255,255,255,.65); margin-top: .2rem; }
.hcard-float { animation: float 4s ease-in-out infinite; }
.hcard-float2 { animation: float 4s 2s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   ABOUT
   ============================================= */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--sh-lg);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-pill {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--secondary);
  color: #fff;
  border-radius: var(--r);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(var(--secondary-rgb),.42);
  min-width: 130px;
}
.about-pill-num { font-size: 2.25rem; font-weight: 800; font-family: 'Poppins',sans-serif; display: block; line-height: 1; }
.about-pill-txt { font-size: .8rem; font-weight: 600; opacity: .9; margin-top: .25rem; }

.about-copy { padding-left: 1.5rem; }

.about-feats {
  display: flex; flex-direction: column; gap: .875rem;
  margin-top: 2rem;
}
.afeat {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--light);
  border-radius: var(--r-sm);
  border-left: 3px solid transparent;
  transition: all .3s var(--ease);
}
.afeat:hover { background: rgba(var(--secondary-rgb),.07); border-left-color: var(--secondary); transform: translateX(4px); }
.afeat-ico {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.afeat-ico svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.afeat-body h4 { font-size: .93rem; font-weight: 700; margin-bottom: .2rem; color: var(--primary); }
.afeat-body p { font-size: .84rem; color: var(--muted); line-height: 1.55; }

.license-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(var(--primary-rgb),.06);
  border: 1px solid rgba(var(--primary-rgb),.15);
  color: var(--primary);
  padding: .6rem 1.25rem;
  border-radius: var(--r-xl);
  font-size: .8rem;
  font-weight: 700;
  margin-top: 1.75rem;
}
.license-badge svg { width: 16px; height: 16px; fill: none; stroke: var(--secondary); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* =============================================
   SERVICES
   ============================================= */
#services { background: var(--off); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.scard {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--sh-xs);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}
.scard::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.scard:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); border-color: transparent; }
.scard:hover::after { transform: scaleX(1); }

.scard-ico {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  transition: all .35s var(--ease);
}
.scard:hover .scard-ico { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); transform: scale(1.05) rotate(-3deg); }
.scard-ico svg { width: 28px; height: 28px; fill: none; stroke: #fff; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.scard h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: .625rem; }
.scard p { font-size: .875rem; color: var(--muted); line-height: 1.75; }

/* =============================================
   INDUSTRIES
   ============================================= */
#industries { background: var(--white); }

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.icard {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 2rem 1rem;
  background: var(--off);
  border-radius: var(--r);
  border: 1px solid var(--border);
  transition: all var(--dur) var(--ease);
  cursor: default;
}
.icard:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
}
.icard-emoji { font-size: 2.4rem; margin-bottom: .875rem; line-height: 1; }
.icard-name { font-size: .88rem; font-weight: 700; }

/* =============================================
   DESTINATIONS
   ============================================= */
#destinations {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}
#destinations::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 90% 50%, rgba(var(--secondary-rgb),.09) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 5% 80%, rgba(0,40,128,.4) 0%, transparent 60%);
}
#destinations .section-title { color: #fff; }
#destinations .section-desc { color: rgba(255,255,255,.65); }
#destinations .label { color: var(--secondary); }

.dest-tabs {
  display: inline-flex;
  gap: .375rem;
  background: rgba(255,255,255,.08);
  padding: .35rem;
  border-radius: var(--r-xl);
  margin: 2.5rem 0 2rem;
}
.dtab {
  padding: .6rem 1.625rem;
  border-radius: var(--r-xl);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--dur) var(--ease);
}
.dtab.active, .dtab:hover { color: #fff; }
.dtab.active { background: var(--secondary); }

.dest-panel { display: none; }
.dest-panel.active { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.dcard {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r);
  padding: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: all var(--dur) var(--ease);
  cursor: default;
}
.dcard:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(var(--secondary-rgb),.5);
  transform: translateY(-4px);
}
.dcard-flag { flex-shrink: 0; width: 44px; height: 32px; border-radius: 4px; overflow: hidden; }
.dcard-flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dcard-info h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .2rem; }
.dcard-info p { font-size: .78rem; color: rgba(255,255,255,.48); }

/* =============================================
   STATS
   ============================================= */
#stats {
  background: var(--secondary);
  padding: 4.5rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-sep {
  width: 1px;
  background: rgba(255,255,255,.2);
  justify-self: stretch;
  display: none;
}
.sstat { color: #fff; }
.sstat-num {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  display: block;
  line-height: 1;
}
.sstat-lbl { font-size: .95rem; font-weight: 500; opacity: .85; margin-top: .5rem; display: block; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
#why { background: var(--off); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-img-wrap { position: relative; }
.why-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--sh-lg);
}
.why-img img { width: 100%; height: 100%; object-fit: cover; }

.why-badge {
  position: absolute;
  bottom: 2rem; left: -2rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--r);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--sh-lg);
  max-width: 200px;
}
.why-badge-ico { font-size: 1.75rem; margin-bottom: .5rem; }
.why-badge h4 { font-size: .95rem; font-weight: 700; }
.why-badge p { font-size: .78rem; opacity: .7; margin-top: .2rem; }

.why-copy { padding-left: 1.5rem; }

.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.witem {
  display: flex; align-items: flex-start; gap: .875rem;
}
.witem-check {
  width: 28px; height: 28px;
  background: rgba(var(--secondary-rgb),.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.witem-check svg { width: 14px; height: 14px; fill: none; stroke: var(--secondary); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.witem-text { font-size: .9rem; font-weight: 600; color: var(--text); line-height: 1.45; }

/* =============================================
   CONTACT
   ============================================= */
#contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  margin-top: 3rem;
}

.cinfo h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: .875rem; }
.cinfo > p { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; font-size: .95rem; }

.cinfo-items { display: flex; flex-direction: column; gap: .875rem; }
.citem {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: var(--off);
  border-radius: var(--r-sm);
  transition: all var(--dur) var(--ease);
}
.citem:hover { background: rgba(var(--secondary-rgb),.06); }
.citem-ico {
  width: 42px; height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.citem-ico svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.citem-lbl { font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .2rem; }
.citem-val { font-size: .93rem; font-weight: 600; color: var(--text); }
.citem-val a:hover { color: var(--secondary); }

.csocial { display: flex; gap: .75rem; margin-top: 1.5rem; }
.csocial a {
  width: 42px; height: 42px;
  background: var(--off);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: all var(--dur) var(--ease);
}
.csocial a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.csocial svg { width: 20px; height: 20px; }

/* Form */
.cform-wrap {
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 2.75rem;
}
.cform-wrap h3 { font-size: 1.35rem; color: var(--primary); margin-bottom: 1.75rem; }
.fgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.125rem; }
.fgroup { display: flex; flex-direction: column; gap: .45rem; }
.fgroup.full { grid-column: 1 / -1; }
.flabel { font-size: .8rem; font-weight: 700; color: var(--text); }
.finput {
  padding: .875rem 1.125rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-size: .9rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.finput:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(var(--secondary-rgb),.12); }
.finput::placeholder { color: #aab0c0; }
textarea.finput { resize: vertical; min-height: 120px; }
select.finput { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='%23556080' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .875rem center; background-size: 18px; padding-right: 2.5rem; }
.fsubmit { width: 100%; justify-content: center; margin-top: .5rem; padding: 1rem; font-size: 1rem; }
.form-success {
  display: none;
  padding: 1.25rem;
  background: rgba(var(--secondary-rgb),.1);
  border: 1px solid rgba(var(--secondary-rgb),.3);
  border-radius: var(--r-sm);
  color: var(--secondary-dark);
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 4.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.fbrand p { font-size: .88rem; line-height: 1.85; margin: 1rem 0 1.5rem; max-width: 270px; }
.fbrand-social { display: flex; gap: .625rem; }
.fbrand-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all var(--dur) var(--ease);
}
.fbrand-social a:hover { background: var(--secondary); color: #fff; transform: translateY(-3px); }
.fbrand-social svg { width: 18px; height: 18px; }

.fcol h4 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 1.25rem; }
.fcol-links { display: flex; flex-direction: column; gap: .625rem; }
.fcol-links a { font-size: .875rem; transition: color var(--dur) var(--ease); }
.fcol-links a:hover { color: var(--secondary); }

.fcontact-item { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: .875rem; }
.fcontact-item svg { width: 17px; height: 17px; fill: none; stroke: var(--secondary); stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }
.fcontact-item span { font-size: .875rem; line-height: 1.65; }
.fcontact-item a:hover { color: var(--secondary); }

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .82rem; }
.footer-bottom a { color: var(--secondary); }

.f-license {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(var(--secondary-rgb),.1);
  border: 1px solid rgba(var(--secondary-rgb),.2);
  color: var(--secondary);
  padding: .375rem .875rem;
  border-radius: var(--r-xl);
  font-size: .76rem;
  font-weight: 700;
}

/* =============================================
   BACK TO TOP
   ============================================= */
#backTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all var(--dur) var(--ease);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(var(--primary-rgb),.3);
  border: none;
}
#backTop.show { opacity: 1; visibility: visible; }
#backTop:hover { background: var(--secondary); transform: translateY(-4px); }
#backTop svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-l.in { opacity: 1; transform: none; }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-r.in { opacity: 1; transform: none; }
.d1{transition-delay:.1s}.d2{transition-delay:.2s}.d3{transition-delay:.3s}.d4{transition-delay:.4s}.d5{transition-delay:.5s}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-call-btn { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-panel.active { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-img-wrap { max-width: 480px; }
  .why-badge { display: none; }
  .why-copy { padding-left: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-pill { display: none; }
  .about-copy { padding-left: 0; }
}

@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .section { padding: 3.5rem 0; }
  .services-grid { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-panel.active { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .why-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-title { font-size: 2rem; }
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .5rem;
    width: 100%;
  }
  .trust-item { min-width: 0; }
  .trust-num { font-size: clamp(1.25rem, 6vw, 1.65rem); }
  .trust-label { font-size: .62rem; line-height: 1.2; }
  .fgrid { grid-template-columns: 1fr; }
  .cform-wrap { padding: 1.5rem; }
}


@media (max-width: 380px) {
  .hero-trust { gap: .35rem; }
  .trust-num { font-size: 1.15rem; }
  .trust-label { font-size: .56rem; }
}
