/* =========================================================
   WAY MAKER — Design Tokens
   Display: Fraunces (premium, editorial serif for headings)
   Body:    Inter (clean, modern, highly legible)
   Palette: Trustworthy Blue #0056b3 | Deep Black #1A1A1A
            Energetic Orange #FF8C00 | soft blue/white/orange bg
========================================================= */
:root{
  --blue: #0056b3;
  --blue-dark: #00397d;
  --blue-soft: #eaf4ff;
  --orange: #FF8C00;
  --orange-dark: #e07600;
  --ink: #1A1A1A;
  --ink-soft: #4a4f57;
  --cream: #fff8f0;
  --white: #ffffff;
  --line: rgba(26,26,26,0.08);
  --shadow-soft: 0 20px 45px -20px rgba(0,57,125,0.25);
  --shadow-card: 0 10px 30px -12px rgba(0,0,0,0.15);
  --radius-lg: 22px;
  --radius-md: 14px;
  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:
    radial-gradient(1100px 700px at 8% -5%, #dcecff 0%, rgba(220,236,255,0) 60%),
    radial-gradient(900px 600px at 95% 10%, #ffe6c9 0%, rgba(255,230,201,0) 55%),
    linear-gradient(180deg, #ffffff 0%, #f6faff 40%, #fff9f2 100%);
  background-attachment:fixed;
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
.container{ width:100%; max-width:1180px; margin:0 auto; padding:0 24px; }

h1,h2,h3{ font-family:var(--font-display); color:var(--ink); margin:0 0 .4em; letter-spacing:-0.01em; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  padding:14px 28px; border-radius:100px; font-weight:600; font-size:.98rem;
  border:2px solid transparent; cursor:pointer; transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-orange{ background:var(--orange); color:#fff; box-shadow:0 12px 24px -10px rgba(255,140,0,0.55); }
.btn-orange:hover{ background:var(--orange-dark); }
.btn-blue{ background:var(--blue); color:#fff; box-shadow:0 12px 24px -10px rgba(0,86,179,0.45); }
.btn-blue:hover{ background:var(--blue-dark); }
.btn-ghost{ background:rgba(255,255,255,0.12); color:#fff; border-color:rgba(255,255,255,0.7); backdrop-filter:blur(6px); }
.btn-ghost:hover{ background:rgba(255,255,255,0.22); }
.btn-ghost-dark{ background:transparent; color:#fff; border-color:rgba(255,255,255,0.6); }
.btn-ghost-dark:hover{ background:rgba(255,255,255,0.12); }

/* =============== HEADER =============== */
.site-header{ position:sticky; top:0; z-index:50; }
.topbar{ background:var(--ink); color:#fff; font-size:.82rem; }
.topbar-inner{ display:flex; justify-content:space-between; align-items:center; padding:8px 24px; gap:12px; flex-wrap:wrap; }
.topbar-contact a{ color:#fff; opacity:.92; }
.topbar-contact a:hover{ color:var(--orange); opacity:1; }
.topbar .dot{ margin:0 10px; opacity:.4; }
.topbar-tagline{ opacity:.85; }

.navbar{ display:flex; align-items:center; justify-content:space-between; padding:16px 24px; background:rgba(255,255,255,0.85); backdrop-filter:blur(10px); border-bottom:1px solid var(--line); }
.logo{ display:flex; align-items:center; gap:10px; }
.logo-mark{ width:42px; height:42px; border-radius:12px; background:linear-gradient(135deg, var(--blue), var(--blue-dark)); color:#fff; font-family:var(--font-display); font-weight:700; display:flex; align-items:center; justify-content:center; font-size:1.05rem; box-shadow:0 8px 18px -6px rgba(0,86,179,0.5); }
.logo-text{ font-family:var(--font-display); font-size:1.3rem; font-weight:600; color:var(--ink); }
.logo-text em{ font-style:normal; color:var(--orange); }
.logo-text.light{ color:#fff; }
.logo-text.light em{ color:var(--orange); }

.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-links a{ font-weight:500; color:var(--ink); font-size:.95rem; }
.nav-links a:hover{ color:var(--blue); }
.nav-cta{ background:var(--orange); color:#fff !important; padding:10px 20px; border-radius:100px; font-weight:600; }
.nav-cta:hover{ background:var(--orange-dark); }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:6px; }
.nav-toggle span{ width:24px; height:2px; background:var(--ink); border-radius:2px; }

/* =============== HERO =============== */
.hero{ position:relative; min-height:92vh; display:flex; align-items:center; overflow:hidden; color:#fff; }
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(0,20,45,0.75) 0%, rgba(0,57,125,0.62) 55%, rgba(255,140,0,0.35) 100%);
}
.hero-inner{ position:relative; z-index:2; padding-top:90px; padding-bottom:60px; }
.eyebrow{ text-transform:uppercase; letter-spacing:.14em; font-size:.8rem; font-weight:600; color:#ffd9a8; margin-bottom:16px; }
.hero h1{ font-size:clamp(2.3rem, 5vw, 3.8rem); color:#fff; max-width:820px; line-height:1.08; }
.hero h1 span{ color:var(--orange); }
.hero-sub{ max-width:640px; font-size:1.1rem; color:rgba(255,255,255,0.9); margin-bottom:28px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:48px; }
.hero-stats{ display:flex; gap:40px; flex-wrap:wrap; }
.hero-stats div{ display:flex; flex-direction:column; }
.hero-stats strong{ font-family:var(--font-display); font-size:1.9rem; color:var(--orange); }
.hero-stats span{ font-size:.85rem; color:rgba(255,255,255,0.8); }

.boarding-strip{
  position:relative; z-index:2; display:flex; gap:26px; align-items:center; justify-content:center;
  padding:14px 10px; background:rgba(0,0,0,0.28); border-top:1px dashed rgba(255,255,255,0.3);
  color:#fff; font-family:var(--font-display); letter-spacing:.12em; font-size:.85rem; overflow-x:auto;
}
.boarding-strip i{ color:var(--orange); font-style:normal; }

/* =============== TRUST BAR =============== */
.trust-bar{ background:var(--white); border-bottom:1px solid var(--line); }
.trust-bar-inner{ display:flex; flex-wrap:wrap; justify-content:center; gap:34px; padding:18px 24px; font-weight:600; color:var(--ink-soft); }

/* =============== SECTION HEADERS =============== */
.section-eyebrow{ text-transform:uppercase; letter-spacing:.14em; font-size:.78rem; font-weight:700; color:var(--orange); margin-bottom:10px; }
.section-eyebrow.light{ color:#ffd9a8; }
.section-title{ font-size:clamp(1.8rem, 3.4vw, 2.6rem); max-width:680px; }
.section-title.light{ color:#fff; }
.section-sub{ color:var(--ink-soft); max-width:620px; margin-bottom:40px; }
.section-sub.light{ color:rgba(255,255,255,0.82); }

/* =============== SERVICES =============== */
.services{ padding:90px 0; }
.service-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; }
.service-card{
  background:var(--white); border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-card); transition:transform .25s ease, box-shadow .25s ease;
  border:1px solid var(--line);
}
.service-card:hover{ transform:translateY(-6px); box-shadow:0 24px 45px -18px rgba(0,86,179,0.28); }
.service-img{ position:relative; height:190px; }
.service-img img{ width:100%; height:100%; object-fit:cover; }
.badge{
  position:absolute; top:14px; left:14px; background:rgba(255,255,255,0.92); color:var(--ink);
  font-size:.78rem; font-weight:700; padding:6px 12px; border-radius:100px; box-shadow:0 4px 10px rgba(0,0,0,0.15);
}
.service-body{ padding:22px 22px 26px; }
.service-body h3{ font-size:1.2rem; margin-bottom:8px; }
.service-body p{ color:var(--ink-soft); font-size:.95rem; margin:0; }

/* =============== CALCULATOR (signature) =============== */
.calculator{
  padding:90px 0 110px;
  background:
    radial-gradient(700px 400px at 15% 0%, rgba(255,140,0,0.18), transparent 60%),
    linear-gradient(160deg, var(--blue-dark), var(--blue) 55%, #003a80);
  color:#fff;
}
.calc-card{
  display:grid; grid-template-columns:1fr 1.2fr; gap:36px; align-items:stretch;
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.18);
  border-radius:var(--radius-lg); padding:36px; backdrop-filter:blur(6px);
}
.calc-form{ display:flex; flex-direction:column; gap:20px; }
.calc-field label{ display:block; font-size:.85rem; font-weight:600; color:#ffd9a8; margin-bottom:8px; }
.calc-field select{
  width:100%; padding:14px 16px; border-radius:12px; border:1px solid rgba(255,255,255,0.35);
  background:rgba(255,255,255,0.95); color:var(--ink); font-size:1rem; font-family:var(--font-body);
  appearance:none;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9'><path d='M1 1l6 6 6-6' stroke='%230056b3' stroke-width='2' fill='none' fill-rule='evenodd'/></svg>");
  background-repeat:no-repeat; background-position:right 16px center;
}
.calc-btn{ margin-top:6px; }
.calc-hint{ font-size:.85rem; color:rgba(255,255,255,0.7); margin:0; }

/* Boarding pass result card */
.boarding-pass{
  display:flex; background:var(--white); color:var(--ink); border-radius:16px; overflow:hidden;
  box-shadow:0 24px 50px -20px rgba(0,0,0,0.45); min-height:100%;
}
.bp-main{ flex:1; padding:26px 26px; position:relative; }
.bp-main::after{
  content:""; position:absolute; right:0; top:0; bottom:0; width:1px;
  background-image:linear-gradient(var(--ink) 60%, rgba(0,0,0,0) 0%); background-size:1px 12px; background-repeat:repeat-y; opacity:.15;
}
.bp-row{ margin-bottom:18px; }
.bp-top{ display:flex; align-items:center; justify-content:space-between; }
.bp-label{ display:block; font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color:var(--ink-soft); margin-bottom:4px; }
.bp-top strong{ font-family:var(--font-display); font-size:1.15rem; }
.bp-plane{ color:var(--orange); font-size:1.3rem; transform:rotate(0deg); }
.bp-checklist{ display:grid; grid-template-columns:1fr 1fr; gap:8px 18px; margin-top:8px; }
.bp-checklist li{
  display:flex; align-items:flex-start; gap:8px; font-size:.92rem; padding:6px 0; border-bottom:1px dashed var(--line);
}
.bp-checklist li::before{ content:"✓"; color:var(--blue); font-weight:800; flex-shrink:0; }

.bp-stub{
  width:150px; flex-shrink:0; background:var(--cream); padding:26px 18px; display:flex; flex-direction:column; gap:14px;
  border-left:2px dashed rgba(0,0,0,0.15);
}
.bp-stub strong{ font-family:var(--font-display); }
.bp-barcode{
  margin-top:auto; height:46px;
  background:repeating-linear-gradient(90deg, var(--ink) 0 3px, transparent 3px 6px);
  opacity:.85;
}

/* =============== WHY US =============== */
.why{ padding:100px 0; }
.why-inner{ display:grid; grid-template-columns:1.1fr 1fr; gap:50px; align-items:center; }
.why-list{ display:flex; flex-direction:column; gap:16px; margin:24px 0 30px; }
.why-list li{ padding-left:24px; position:relative; color:var(--ink-soft); }
.why-list li::before{ content:"🧭"; position:absolute; left:0; top:0; }
.why-list strong{ color:var(--ink); }
.why-media img{ border-radius:var(--radius-lg); box-shadow:var(--shadow-soft); }

/* =============== TESTIMONIALS =============== */
.testimonials{ padding:20px 0 100px; }
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.testi-card{
  margin:0; background:var(--white); border:1px solid var(--line); border-radius:var(--radius-md);
  padding:28px; box-shadow:var(--shadow-card);
}
.testi-card p{ font-family:var(--font-display); font-size:1.08rem; line-height:1.5; margin:0 0 16px; }
.testi-card cite{ font-style:normal; font-size:.85rem; color:var(--blue); font-weight:600; }

/* =============== CTA BANNER =============== */
.cta-banner{
  background:linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  color:#fff; padding:70px 0;
}
.cta-inner{ text-align:center; display:flex; flex-direction:column; align-items:center; gap:14px; }
.cta-inner h2{ color:#fff; font-size:clamp(1.7rem,3vw,2.3rem); }
.cta-inner p{ color:rgba(255,255,255,0.92); margin:0 0 10px; }
.cta-actions{ display:flex; gap:16px; flex-wrap:wrap; justify-content:center; }
.cta-actions .btn-orange{ background:var(--ink); }
.cta-actions .btn-orange:hover{ background:#000; }

/* =============== FOOTER =============== */
.site-footer{ background:var(--ink); color:#d8dadd; }
.footer-inner{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:36px; padding:60px 24px 40px; }
.footer-brand p{ color:#a9adb3; font-size:.9rem; margin-top:10px; max-width:280px; }
.footer-col h4{ color:#fff; font-family:var(--font-body); font-size:.85rem; text-transform:uppercase; letter-spacing:.1em; margin-bottom:14px; }
.footer-col p{ margin:0 0 10px; }
.footer-col a:hover{ color:var(--orange); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.1); padding:18px 24px; font-size:.82rem; color:#8a8e94; text-align:center; }

/* =============== WHATSAPP FLOAT =============== */
.whatsapp-float{
  position:fixed; right:24px; bottom:24px; z-index:60;
  width:60px; height:60px; border-radius:50%; background:var(--orange);
  display:flex; align-items:center; justify-content:center; color:#fff;
  box-shadow:0 14px 30px -8px rgba(255,140,0,0.6);
  animation:float-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover{ background:var(--orange-dark); }
@keyframes float-pulse{
  0%,100%{ box-shadow:0 14px 30px -8px rgba(255,140,0,0.6); }
  50%{ box-shadow:0 14px 30px -8px rgba(255,140,0,0.9), 0 0 0 8px rgba(255,140,0,0.15); }
}

/* =============== RESPONSIVE =============== */
@media (max-width: 980px){
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .why-inner{ grid-template-columns:1fr; }
  .why-media{ order:-1; }
  .testi-grid{ grid-template-columns:1fr 1fr; }
  .calc-card{ grid-template-columns:1fr; }
}

@media (max-width: 720px){
  .topbar-tagline{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-links{
    position:absolute; top:100%; left:0; right:0; background:var(--white);
    flex-direction:column; align-items:flex-start; gap:0; max-height:0; overflow:hidden;
    border-bottom:1px solid var(--line); transition:max-height .3s ease;
  }
  .nav-links.open{ max-height:320px; }
  .nav-links li{ width:100%; }
  .nav-links a{ display:block; padding:14px 24px; width:100%; border-bottom:1px solid var(--line); }
  .nav-cta{ margin:14px 24px; display:inline-block; }

  .service-grid{ grid-template-columns:1fr; }
  .testi-grid{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:1 / -1; }
  .boarding-pass{ flex-direction:column; }
  .bp-stub{ width:100%; flex-direction:row; flex-wrap:wrap; border-left:none; border-top:2px dashed rgba(0,0,0,0.15); }
  .bp-barcode{ width:100%; margin-top:10px; }
  .bp-checklist{ grid-template-columns:1fr; }
}

@media (max-width: 480px){
  .hero{ min-height:100vh; }
  .hero-stats{ gap:24px; }
  .footer-inner{ grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}
