/* ============================================================
   UnXplore — B2B Travel Wholesale
   Brand: orange #fb6303 on deep navy / white
   ============================================================ */

:root {
  --brand: #fb6303;
  --brand-dark: #d95502;
  --brand-soft: #fff1e8;
  --navy: #12233d;
  --navy-2: #1b3357;
  --ink: #24303f;
  --ink-soft: #5b6b7d;
  --line: #e5e9ef;
  --bg: #ffffff;
  --bg-alt: #f7f9fb;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(18, 35, 61, 0.08);
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  font-size: 1.45rem; font-weight: 800; letter-spacing: -0.5px;
  color: var(--navy); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.logo svg { width: 46px; height: 46px; flex-shrink: 0; }
.logo-text span { color: var(--brand); }
.logo small {
  display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 1.6px;
  color: var(--ink-soft); text-transform: uppercase; margin-top: -4px;
}
.nav-links { display: flex; gap: 26px; align-items: center; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--brand); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--navy); cursor: pointer; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 12px 26px; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none; cursor: pointer;
  border: 2px solid transparent; transition: all 0.15s ease;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn-outline:hover { background: var(--brand-soft); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--brand-soft); }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(251, 99, 3, 0.28), transparent 60%),
    radial-gradient(800px 400px at -10% 110%, rgba(251, 99, 3, 0.15), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; padding: 84px 0 72px;
}
.hero-badge {
  display: inline-block; background: rgba(251, 99, 3, 0.18); color: #ffb27d;
  border: 1px solid rgba(251, 99, 3, 0.45);
  padding: 6px 16px; border-radius: 999px; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.15; letter-spacing: -1px; max-width: 720px; }
.hero h1 em { color: var(--brand); font-style: normal; }
.hero p.lead {
  margin: 20px 0 32px; font-size: 1.12rem; color: #c4d0e2; max-width: 620px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 56px; padding-top: 34px; border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-stats .stat b { display: block; font-size: 1.7rem; color: #fff; letter-spacing: -0.5px; }
.hero-stats .stat span { font-size: 0.88rem; color: #9fb0c8; }

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section.alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head .kicker {
  color: var(--brand); font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.4px; font-size: 0.8rem;
}
.section-head h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--navy); letter-spacing: -0.5px; margin-top: 6px; }
.section-head p { color: var(--ink-soft); margin-top: 10px; }

/* ---------- Destination grid ---------- */
.dest-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px;
}
.dest-card {
  border-radius: var(--radius); overflow: hidden; background: #fff;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform 0.15s ease;
}
.dest-card:hover { transform: translateY(-4px); }
.dest-cover {
  height: 150px; position: relative;
  background-color: var(--navy-2);
  background-size: cover; background-position: center;
}
.dest-cover .tag {
  position: absolute; top: 12px; left: 12px; font-size: 0.68rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px;
  border-radius: 999px; background: rgba(255, 255, 255, 0.92); color: var(--navy);
}
.dest-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.dest-body h3 { color: var(--navy); font-size: 1.12rem; }
.dest-body p { color: var(--ink-soft); font-size: 0.9rem; margin: 6px 0 14px; flex: 1; }
.dest-body .meta { font-size: 0.82rem; font-weight: 700; color: var(--brand); }


/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow);
}
.feature .icon {
  width: 46px; height: 46px; border-radius: 12px; background: var(--brand-soft);
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
  margin-bottom: 14px;
}
.feature h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 6px; }
.feature p { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 26px 22px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand); color: #fff; font-weight: 800; margin-bottom: 12px;
}
.step h3 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.step p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--brand) 0%, #ff8b3d 100%);
  border-radius: 20px; color: #fff; padding: 46px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
}
.cta-band h2 { font-size: 1.6rem; letter-spacing: -0.5px; }
.cta-band p { opacity: 0.92; margin-top: 6px; }

/* ---------- Destination detail sections ---------- */
.dest-section { padding: 56px 0; border-bottom: 1px solid var(--line); }
.dest-section:last-of-type { border-bottom: none; }
.dest-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; flex-wrap: wrap; }
.dest-head .emoji {
  width: 72px; height: 72px; border-radius: 16px; flex-shrink: 0;
  background-color: var(--navy-2);
  background-size: cover; background-position: center;
  box-shadow: var(--shadow);
}
.dest-head h2 { color: var(--navy); font-size: 1.6rem; letter-spacing: -0.5px; }
.dest-head .sub { color: var(--ink-soft); font-size: 0.95rem; }
.dest-cols { display: grid; grid-template-columns: 1.4fr 1fr; gap: 34px; align-items: start; }
.dest-cols h4 {
  color: var(--brand); text-transform: uppercase; font-size: 0.78rem;
  letter-spacing: 1.2px; margin-bottom: 10px;
}
.dest-cols ul { list-style: none; }
.dest-cols ul li { padding: 7px 0 7px 26px; position: relative; color: var(--ink); font-size: 0.95rem; border-bottom: 1px dashed var(--line); }
.dest-cols ul li:last-child { border-bottom: none; }
.dest-cols ul li::before { content: "✔"; color: var(--brand); position: absolute; left: 0; font-size: 0.85rem; }
.dest-info {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px;
}
.dest-info .row { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: 0.92rem; }
.dest-info .row:last-of-type { border-bottom: none; }
.dest-info .row b { color: var(--navy); }
.dest-info .row span { color: var(--ink-soft); text-align: right; }
.dest-info .btn { margin-top: 16px; width: 100%; text-align: center; }

/* ---------- Forms ---------- */
.form-wrap {
  max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow); padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-weight: 700; font-size: 0.86rem; color: var(--navy); margin-bottom: 6px; }
label .req { color: var(--brand); }
input, select, textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; color: var(--ink); background: #fff;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(251, 99, 3, 0.15);
}
.form-note {
  background: var(--brand-soft); border: 1px solid #ffd9bd; color: #8a4a12;
  border-radius: 10px; padding: 14px 16px; font-size: 0.88rem; margin: 22px 0;
}
.form-actions { margin-top: 10px; }
.form-actions .btn { width: 100%; text-align: center; font-size: 1.02rem; padding: 15px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff;
  padding: 54px 0 46px;
}
.page-hero h1 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); letter-spacing: -0.5px; }
.page-hero p { color: #c4d0e2; margin-top: 10px; max-width: 640px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b9c6d9; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 0.4px; }
.site-footer a { color: #b9c6d9; text-decoration: none; }
.site-footer a:hover { color: var(--brand); }
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 4px 0; font-size: 0.92rem; }
.footer-logo { font-size: 1.4rem; font-weight: 800; color: #fff; }
.footer-logo span { color: var(--brand); }
.footer-tag { font-size: 0.9rem; margin-top: 10px; max-width: 280px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 42px; padding-top: 22px;
  font-size: 0.85rem; color: #8496ad; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- Footer social icons ---------- */
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.social-row a:hover { background: var(--brand); }
.social-row svg { width: 20px; height: 20px; fill: #ffffff; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 560px) {
  /* single-column footer on small phones */
  .footer-grid { grid-template-columns: 1fr !important; gap: 26px; }
  /* 16px inputs stop iOS Safari from auto-zooming on focus */
  input, select, textarea { font-size: 16px; }
  .cta-band { padding: 32px 24px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 18px 24px; gap: 14px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .dest-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 26px 20px; }
}
