/* =====================================================================
   Sky Connect Hubs — SKY INTERNATIONAL LLC
   Theme: deep navy + sky azure + subtle gold. Modern, professional,
   built on top of Bootstrap 5. Unique to this brand.
   ===================================================================== */

:root {
  --navy: #0b2440;
  --navy-2: #12325a;
  --navy-3: #1b4a85;
  --sky: #2b9fe0;
  --sky-soft: #eaf5fc;
  --gold: #d8a838;
  --gold-soft: #f6ecd2;
  --ink: #1d2a3a;
  --muted: #5c6c7e;
  --bg: #f6f9fc;
  --card: #ffffff;
  --line: #e3eaf2;
  --shadow-sm: 0 2px 10px rgba(11, 36, 64, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 36, 64, 0.10);
  --shadow-lg: 0 18px 48px rgba(11, 36, 64, 0.14);
  --radius: 14px;
  --radius-sm: 10px;
  --font-head: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

p { color: #3a4a5c; }
a { color: var(--navy-3); text-decoration: none; }
a:hover { color: var(--sky); }

.text-sky { color: #15679f !important; }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.text-muted-2 { color: var(--muted) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-soft { background: var(--sky-soft) !important; }

.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #15679f;
  margin-bottom: 0.6rem;
}
.lead-2 { font-size: 1.12rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--navy);
  border: 1.5px solid var(--navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--navy-2);
  border-color: var(--navy-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  border: 1.5px solid var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: #c79722;
  border-color: #c79722;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline-light-2 {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-outline-light-2:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}
.btn-outline-navy {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

/* ---------- Navbar ----------
   Transparent over the dark hero at the top; turns solid white on scroll
   (the .is-stuck class is toggled by main.js). */
.site-nav {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  transition: background .28s ease, box-shadow .28s ease, border-color .28s ease, padding .28s ease;
}
.site-nav.is-stuck {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
}
.site-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  color: #fff;
}
.site-nav.is-stuck .navbar-brand { color: var(--navy); }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.4);
}
.site-nav.is-stuck .brand-mark { box-shadow: 0 2px 8px rgba(11, 36, 64, 0.18); }
.brand-mark svg { width: 22px; height: 22px; }
.site-nav .nav-link {
  font-family: var(--font-head);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}
.site-nav .nav-link:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.site-nav .nav-link[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, 0.18); }
.site-nav.is-stuck .nav-link { color: var(--ink); }
.site-nav.is-stuck .nav-link:hover { color: #15679f; background: var(--sky-soft); }
.site-nav.is-stuck .nav-link[aria-current="page"] { color: var(--navy); background: var(--sky-soft); }
/* hamburger toggler — light on transparent, dark when stuck */
.site-nav .navbar-toggler { border-color: rgba(255, 255, 255, 0.5); }
.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.site-nav.is-stuck .navbar-toggler { border-color: var(--line); }
.site-nav.is-stuck .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11,36,64,0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* collapsed mobile menu panel gets a solid background so links stay readable */
@media (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    background: rgba(11, 36, 64, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
  }
  .site-nav.is-stuck .navbar-collapse {
    background: #fff;
    border-color: var(--line);
    box-shadow: var(--shadow-md);
  }
  .site-nav .navbar-collapse .nav-link { color: rgba(255, 255, 255, 0.92); }
  .site-nav.is-stuck .navbar-collapse .nav-link { color: var(--ink); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 82% -10%, rgba(43, 159, 224, 0.30), transparent 60%),
    linear-gradient(120deg, rgba(11, 36, 64, 0.95) 0%, rgba(16, 45, 80, 0.90) 45%, rgba(27, 74, 133, 0.80) 100%),
    url('hero.jpg') center/cover no-repeat;
  background-attachment: scroll;
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.10) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.5vw, 3.3rem); line-height: 1.1; }
.hero p { color: rgba(255, 255, 255, 0.86); }
.hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #eaf5fc;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}
.hero-stat { border-left: 2px solid rgba(255, 255, 255, 0.25); padding-left: 1rem; }
.hero-stat .num { font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: #fff; }
.hero-stat .lbl { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); }

/* page header (interior pages) */
.page-head {
  background:
    radial-gradient(900px 400px at 85% -20%, rgba(43, 159, 224, 0.30), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 96px 0 64px;
}
.page-head h1 { color: #fff; }
.page-head p { color: rgba(255, 255, 255, 0.85); }
.breadcrumb-line { font-size: 0.88rem; color: rgba(255, 255, 255, 0.7); }
.breadcrumb-line a { color: rgba(255, 255, 255, 0.9); }

/* ---------- Cards ---------- */
.card-soft {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  height: 100%;
}
.feature-check span, .feature-check div { color: var(--ink); }
.card-soft:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.icon-tile {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--sky-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.icon-tile svg { width: 28px; height: 28px; stroke: var(--navy-3); }
.icon-tile.gold { background: var(--gold-soft); }
.icon-tile.gold svg { stroke: var(--gold); }

.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}

.feature-check { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 0.9rem; }
.feature-check svg { width: 22px; height: 22px; stroke: var(--sky); flex: 0 0 22px; margin-top: 3px; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.form-label { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 0.92rem; }
.form-control, .form-select {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
}
.form-control:focus, .form-select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 0.2rem rgba(43, 159, 224, 0.15);
}
.consent-box {
  background: var(--sky-soft);
  border: 1px solid #cfe6f6;
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  font-size: 0.86rem;
  color: #324a5e;
}
.consent-box a { color: var(--navy-3); text-decoration: underline; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.85); }

/* ---------- Legal pages ---------- */
.legal-body { background: #fff; }
.legal-body h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.legal-body h3 { font-size: 1.1rem; margin-top: 1.6rem; color: var(--navy-2); }
.legal-body p, .legal-body li { color: #36465a; }
.legal-toc {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}
.legal-toc a { display: block; padding: 0.25rem 0; font-size: 0.92rem; }
.callout {
  background: var(--sky-soft);
  border-left: 4px solid var(--sky);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}
.callout.gold { background: var(--gold-soft); border-left-color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 64px 0 28px;
}
.site-footer h6 {
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.72); }
.site-footer a:hover { color: var(--sky); }
.site-footer .footer-brand { display: flex; align-items: center; gap: 0.6rem; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; }
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 36px;
  padding-top: 22px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 0.5rem; }

/* ---------- Cookie notice ---------- */
#cookieNotice {
  position: fixed; bottom: 18px; left: 18px; right: 18px;
  max-width: 760px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  z-index: 3000;
}

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line); border: 0; }
.note-placeholder { background: #fff7e6; color: #7a5d12; font-weight: 600; border: 1px dashed var(--gold); border-radius: 8px; padding: 0.2rem 0.5rem; }
@media (max-width: 575px) {
  .section { padding: 56px 0; }
  .hero { padding-top: 24px; }
}
