/* ============================================================
   ONTIME BIRD SERVICES — style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Nunito+Sans:wght@300;400;600;700;800&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --navy:   #0a2463;
  --navy2:  #1a3a7c;
  --orange: #f97316;
  --green:  #16a34a;
  --light:  #f0f4ff;
  --light2: #f8fafc;
  --border: #e2e8f0;
  --muted:  #64748b;
  --r:      14px;
  --r2:     10px;
  --sh:     0 4px 24px rgba(10,36,99,.10);
  --sh2:    0 8px 40px rgba(10,36,99,.16);
  --tr:     0.28s;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: #1e293b;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 {
  font-family: 'Nunito', sans-serif;
  line-height: 1.25;
  font-weight: 800;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.sr.sl  { transform: translateX(-32px); }
.sr.sr2 { transform: translateX(32px); }
.sr.on  { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }
.d6 { transition-delay: .48s; }
.d7 { transition-delay: .56s; }
.d8 { transition-delay: .64s; }

/* ── LAYOUT ── */
.w { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 20px; }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  padding: 7px 20px;
  font-size: .82rem;
  color: #a8bfe0;
}
.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar a { color: #a8bfe0; transition: color var(--tr); }
.topbar a:hover { color: #fff; }
.topbar i { margin-right: 5px; }

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 900;
  height: 68px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(10,36,99,.08);
  transition: box-shadow var(--tr);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(10,36,99,.14); }
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span:first-child {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--navy);
}
.logo-text span:last-child {
  font-size: .7rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: .02em;
}
/* Desktop Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a, .nav-links button {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  color: #334155;
  padding: 6px 13px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--tr), background var(--tr);
  background: none;
}
.nav-links a:hover,
.nav-links button:hover,
.nav-links a.active,
.nav-links button.dd-btn.active { color: var(--navy); background: var(--light); }
.nav-links .nav-cta {
  background: var(--orange);
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: #ea6c0a; color: #fff; }
.dd-btn .dd-arr { font-size: .75rem; transition: transform var(--tr); }
.dd-btn.open .dd-arr { transform: rotate(180deg); }
/* Hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--light);
  padding: 6px;
}
.ham span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--tr);
}
.ham.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── DESKTOP DROPDOWN ── */
.dropdown {
  position: fixed;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--r) var(--r);
  box-shadow: 0 12px 40px rgba(10,36,99,.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
  transform: translateY(-6px);
  z-index: 800;
}
.dropdown.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.dd-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  gap: 32px;
}
.dd-col { flex: 1; min-width: 160px; }
.dd-col h5 {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.dd-col a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 8px;
  border-radius: var(--r2);
  color: #334155;
  font-size: .9rem;
  font-weight: 600;
  transition: background var(--tr), color var(--tr);
}
.dd-col a:hover { background: var(--light); color: var(--navy); }
.dd-col a i { color: var(--orange); width: 16px; text-align: center; }
.dd-single { width: 280px; }
.dd-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,36,99,.25);
  z-index: 799;
}
.dd-overlay.on { display: block; }

/* ── MOBILE SIDEBAR ── */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,36,99,.45);
  z-index: 1090;
}
.mob-overlay.open { display: block; }
.mob-menu {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: 320px;
  background: #fff;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mob-menu.open { transform: translateX(0); }
.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--light);
}
.mob-header .logo-text span:first-child { font-size: .95rem; }
.mob-close {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
}
.mob-close:hover { background: #ffd7b5; }
.mob-nav { padding: 12px 0; flex: 1; }
.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  color: #1e293b;
  cursor: pointer;
  transition: background var(--tr), color var(--tr);
}
.mob-link:hover, .mob-link.active { background: var(--light); color: var(--navy); }
.mob-link i:last-child { font-size: .8rem; transition: transform var(--tr); }
.mob-link.open i:last-child { transform: rotate(180deg); }
.mob-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  background: #f8fafc;
}
.mob-sub.open { max-height: 600px; }
.mob-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px 9px 36px;
  font-size: .88rem;
  font-weight: 600;
  color: #475569;
  transition: color var(--tr), background var(--tr);
}
.mob-sub a:hover { color: var(--navy); background: var(--light); }
.mob-sub a i { color: var(--orange); width: 14px; }
.mob-cta-area {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r2);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  transition: all var(--tr);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-orange {
  background: linear-gradient(135deg, #f97316, #ea6c0a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(249,115,22,.3);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(249,115,22,.4); color: #fff; }
.btn-green {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  box-shadow: 0 4px 16px rgba(22,163,74,.28);
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(22,163,74,.38); color: #fff; }
.btn-navy {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  box-shadow: 0 4px 16px rgba(10,36,99,.22);
}
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(10,36,99,.32); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
  box-shadow: var(--sh);
}
.btn-white:hover { border-color: var(--navy); transform: translateY(-2px); color: var(--navy); }
.btn-wh {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-wh:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

/* ── SECTION HEADING ── */
.sh { text-align: center; margin-bottom: 54px; }
.sh .tag {
  display: inline-block;
  background: var(--light);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 12px;
  border: 1px solid #c7d7f8;
}
.sh h2 { font-size: 2.1rem; color: var(--navy); margin-bottom: 12px; }
.sh p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1rem; }
.divider {
  width: 52px; height: 4px;
  background: linear-gradient(90deg, var(--orange), #fbbf24);
  border-radius: 4px;
  margin: 14px auto 0;
}

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 64px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; }
.page-hero h1 { color: #fff; font-size: 2.6rem; font-weight: 900; margin-bottom: 12px; }
.breadcrumb { color: #93c5fd; font-size: .85rem; margin-top: 10px; }
.breadcrumb a { color: #93c5fd; transition: color var(--tr); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #fbbf24; }
.breadcrumb i { margin: 0 6px; font-size: .7rem; }

/* ── HERO (HOME) ── */
.hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: url('1000110310.jpg.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,36,99,.92) 0%, rgba(26,58,124,.78) 60%, rgba(10,36,99,.55) 100%);
}
.hero-inner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.hero-content { color: #fff; }
.disc-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f97316, #fbbf24);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge { 0%,100%{box-shadow:0 0 0 0 rgba(249,115,22,.5)} 50%{box-shadow:0 0 0 8px rgba(249,115,22,0)} }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #93c5fd;
  font-size: .82rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #f97316, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-type-line {
  font-size: 1.2rem;
  color: #bfdbfe;
  min-height: 1.8rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.typed-cursor {
  display: inline-block;
  width: 2px;
  height: 1.2em;
  background: var(--orange);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink .75s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-desc { color: #cbd5e1; font-size: 1.05rem; max-width: 520px; margin-bottom: 28px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #93c5fd;
  font-size: .85rem;
  font-weight: 600;
}
.trust-item i { color: #fbbf24; }
/* Hero stat card */
.hero-stat-card {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 32px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-item {
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
}
.stat-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-label { font-size: .78rem; color: #93c5fd; margin-top: 4px; font-weight: 600; }

/* ── QUICK INFO BAR ── */
.quick-bar {
  background: linear-gradient(135deg, var(--orange), #ea6c0a);
  padding: 18px 20px;
}
.quick-bar-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}
.quick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.quick-item i { font-size: 1.3rem; }
.quick-item strong { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: .95rem; display: block; }
.quick-item span { font-size: .82rem; opacity: .9; }

/* ── SERVICE OVERVIEW CARDS ── */
.svc-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 10px;
}
.svc-ov-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh);
  transition: transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}
.svc-ov-card:hover { transform: translateY(-6px); box-shadow: var(--sh2); }
.svc-ov-top {
  padding: 32px 28px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.svc-ov-top.blue { background: linear-gradient(135deg, #0a2463, #1e40af); }
.svc-ov-top.green2 { background: linear-gradient(135deg, #064e3b, #16a34a); }
.svc-ov-top.purple { background: linear-gradient(135deg, #3b0764, #7c3aed); }
.svc-ov-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.svc-ov-top h3 { font-size: 1.4rem; margin-bottom: 8px; }
.svc-ov-top p { font-size: .9rem; opacity: .85; }
.svc-ov-body {
  padding: 22px 28px;
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-ov-list { margin-bottom: 20px; flex: 1; }
.svc-ov-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-size: .9rem;
  color: #334155;
  border-bottom: 1px solid var(--border);
}
.svc-ov-list li:last-child { border: none; }
.svc-ov-list li i { color: var(--green); flex-shrink: 0; }

/* ── SERVICE GRID (inner pages) ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}
.svc-card {
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh);
  overflow: hidden;
  transition: transform var(--tr), box-shadow var(--tr);
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--sh2); }
.svc-top {
  height: 170px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  position: relative;
  overflow: hidden;
}
.svc-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--tr);
}
.svc-card:hover .svc-top img { transform: scale(1.06); }
.svc-top-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,36,99,.8), rgba(26,58,124,.6));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 16px;
}
.svc-top-grad i { font-size: 2rem; margin-bottom: 8px; }
.svc-top-grad h3 { font-size: 1.05rem; }
.svc-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.svc-body h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.svc-body p { font-size: .88rem; color: var(--muted); flex: 1; margin-bottom: 14px; }
.svc-body a { margin-top: auto; }

/* ── WHY CHOOSE US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-items { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 50px; height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
}
.why-text h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.why-text p { font-size: .88rem; color: var(--muted); }
.why-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-box {
  background: #fff;
  border-radius: var(--r);
  padding: 24px 20px;
  box-shadow: var(--sh);
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: border-color var(--tr), transform var(--tr);
}
.why-box:hover { border-color: var(--orange); transform: translateY(-3px); }
.why-box i { font-size: 1.8rem; color: var(--orange); margin-bottom: 10px; }
.why-box h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.why-box p { font-size: .82rem; color: var(--muted); }

/* ── WHY CARDS (about page) ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.feat-card {
  background: #fff;
  border-radius: var(--r);
  padding: 28px 24px;
  box-shadow: var(--sh);
  border-top: 4px solid var(--orange);
  transition: transform var(--tr), box-shadow var(--tr);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--sh2); }
.feat-card i { font-size: 1.8rem; color: var(--orange); margin-bottom: 14px; }
.feat-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
.feat-card p { font-size: .88rem; color: var(--muted); }

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 20px; /* room for .step-num badge overflowing top */
}
.step {
  text-align: center;
  padding: 36px 20px 28px;
  background: #fff;
  border-radius: var(--r);
  box-shadow: var(--sh);
  position: relative;
  transition: transform var(--tr), box-shadow var(--tr);
  border-bottom: 3px solid transparent;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh2); border-bottom-color: var(--orange); }
.step-num {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--orange), #fbbf24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: .88rem;
  color: #fff;
  box-shadow: 0 4px 14px rgba(249,115,22,.40);
  border: 3px solid #fff;
}
.step i { font-size: 2.2rem; color: var(--navy); margin-bottom: 12px; margin-top: 8px; }
.step h4 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; font-weight: 800; }
.step p { font-size: .85rem; color: var(--muted); }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  padding: 50px 20px;
}
.stats-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-box { color: #fff; }
.stat-box .big-num {
  font-family: 'Nunito', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
}
.stat-box p { font-size: .88rem; color: #93c5fd; margin-top: 6px; }

/* ── TESTIMONIALS ── */
.tt-wrap { position: relative; overflow: hidden; }
.tt-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tt-slide { min-width: 100%; padding: 0 20px; }
.tt-card {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--sh2);
  text-align: center;
}
.tt-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; }
.tt-text { font-size: 1.05rem; color: #334155; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.tt-author { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--navy); }
.tt-loc { font-size: .82rem; color: var(--muted); }
.tt-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.tt-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
}
.tt-dot.a { background: var(--orange); transform: scale(1.3); }
.tt-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.tt-arr {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--tr);
}
.tt-arr:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ── ABOUT 2-COL ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh2);
  position: relative;
}
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .9rem;
}
.about-text .tag {
  display: inline-block;
  background: var(--light);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
  border: 1px solid #c7d7f8;
}
.about-text h2 { font-size: 2rem; color: var(--navy); margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 14px; }
.about-points { margin: 20px 0; }
.about-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.about-point:last-child { border: none; }
.about-point i { color: var(--green); margin-top: 3px; }
.about-point span { font-size: .92rem; color: #334155; font-weight: 600; }

/* ── MISSION CARDS ── */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.mission-card {
  background: #fff;
  border-radius: var(--r);
  padding: 32px 24px;
  box-shadow: var(--sh);
  text-align: center;
  transition: transform var(--tr);
}
.mission-card:hover { transform: translateY(-4px); }
.mission-card .m-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--light);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
}
.mission-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.mission-card p { font-size: .88rem; color: var(--muted); }

/* ── SPECS TABLE ── */
.specs-section {
  background: linear-gradient(135deg, var(--navy), #0d2d6b);
  padding: 60px 20px;
  color: #fff;
}
.specs-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.specs-title { text-align: center; margin-bottom: 36px; }
.specs-title h2 { color: #fff; font-size: 2rem; margin-bottom: 8px; }
.specs-title p { color: #93c5fd; }
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}
.specs-table th {
  background: rgba(255,255,255,.1);
  padding: 14px 20px;
  text-align: left;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #93c5fd;
}
.specs-table td {
  padding: 13px 20px;
  font-size: .92rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.specs-table tr:nth-child(even) td { background: rgba(255,255,255,.04); }
.specs-table td:first-child { color: #cbd5e1; font-weight: 600; }
.specs-table td:last-child { color: #fbbf24; font-weight: 700; }
.spec-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.spec-badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.spec-badge i { color: var(--orange); }

/* ── BIRD PROBLEM / SPORTS ICONS ── */
.bird-problem-grid, .sports-cover-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.bird-prob-card, .sport-icon-card {
  background: #fff;
  border-radius: var(--r);
  padding: 24px 20px;
  box-shadow: var(--sh);
  text-align: center;
  transition: transform var(--tr);
}
.bird-prob-card:hover, .sport-icon-card:hover { transform: translateY(-4px); }
.bird-prob-card i { font-size: 2rem; color: var(--orange); margin-bottom: 12px; }
.bird-prob-card h3 { font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.bird-prob-card p { font-size: .85rem; color: var(--muted); }
.sport-icon-card i { font-size: 2.2rem; color: var(--navy); margin-bottom: 12px; }
.sport-icon-card h3 { font-size: .95rem; color: var(--navy); font-weight: 700; }

/* ── GALLERY ── */
.gal-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.gal-btn {
  padding: 9px 22px;
  border-radius: 40px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  background: var(--light);
  color: var(--navy);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--tr);
}
.gal-btn:hover, .gal-btn.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.gal-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform var(--tr);
}
.gal-item:hover { transform: scale(1.02); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gal-item:hover img { transform: scale(1.08); }
.gal-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,36,99,.9), transparent);
  color: #fff;
  padding: 28px 14px 14px;
  font-size: .85rem;
  font-weight: 700;
  transform: translateY(100%);
  transition: transform var(--tr);
}
.gal-item:hover .gal-caption { transform: translateY(0); }
.gal-item.hidden { display: none; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.fi {
  background: #fff;
  border-radius: var(--r2);
  box-shadow: var(--sh);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--tr);
}
.fi:hover { box-shadow: var(--sh2); }
.fi-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: .97rem;
  color: var(--navy);
  gap: 12px;
}
.fi-q i:last-child { font-size: .8rem; transition: transform var(--tr); flex-shrink: 0; }
.fi.open .fi-q i:last-child { transform: rotate(180deg); }
.fi.open .fi-q { color: var(--orange); }
.fi-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding var(--tr);
  padding: 0 22px;
}
.fi.open .fi-a { max-height: 400px; padding: 0 22px 18px; }
.fi-a p { color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.contact-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--light);
  border-radius: var(--r2);
  padding: 16px 18px;
  transition: transform var(--tr);
}
.contact-card:hover { transform: translateX(4px); }
.contact-card-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
}
.contact-card-icon.orange { background: var(--orange); }
.contact-card-icon.green  { background: var(--green); }
.contact-card-icon.navy   { background: var(--navy); }
.contact-card-icon.blue   { background: #3b82f6; }
.contact-card-body strong { font-family: 'Nunito', sans-serif; font-weight: 800; color: var(--navy); font-size: .88rem; display: block; }
.contact-card-body a, .contact-card-body p { font-size: .9rem; color: #334155; }
.contact-card-body a:hover { color: var(--orange); }
.hours-box {
  background: var(--navy);
  color: #fff;
  border-radius: var(--r);
  padding: 22px 20px;
}
.hours-box h4 { margin-bottom: 12px; font-size: 1rem; color: #93c5fd; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .88rem;
}
.hours-row:last-child { border: none; }
.hours-row span:last-child { color: #fbbf24; font-weight: 700; }

/* Form */
.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--sh2);
}
.contact-form h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 6px; }
.contact-form > p { color: var(--muted); font-size: .9rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: var(--r2);
  font-family: inherit;
  font-size: .92rem;
  color: #1e293b;
  background: var(--light2);
  transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,36,99,.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .78rem; color: var(--muted); margin-top: 10px; }

/* ── AREAS GRID ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.area-tag {
  background: var(--light);
  border: 1px solid #c7d7f8;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy);
  transition: all var(--tr);
}
.area-tag:hover { background: var(--navy); color: #fff; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #dc6209 100%);
  padding: 64px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-inner { position: relative; max-width: 700px; margin: 0 auto; }
.cta-band h2 { color: #fff; font-size: 2rem; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,.88); margin-bottom: 28px; font-size: 1.02rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── FOOTER ── */
footer {
  background: #070e1f;
  color: #94a3b8;
  padding: 64px 20px 0;
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand .logo-text span:first-child { color: #fff; font-size: 1.1rem; }
.footer-brand .logo-text span:last-child { color: var(--orange); }
.footer-brand p { font-size: .88rem; margin: 14px 0 18px; line-height: 1.7; color: #64748b; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: .95rem;
  transition: all var(--tr);
}
.footer-socials a:hover { background: var(--orange); color: #fff; }
.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: #e2e8f0;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: .88rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--tr), padding-left var(--tr);
}
.footer-col ul li a:hover { color: var(--orange); padding-left: 4px; }
.footer-col ul li a i { width: 14px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .85rem;
}
.footer-contact-item i { color: var(--orange); margin-top: 3px; min-width: 14px; }
.footer-contact-item a { color: #64748b; transition: color var(--tr); }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: #475569;
}
.footer-bottom a { color: var(--orange); }

/* ── FABs ── */
.fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 700;
}
.fab-wa {
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  animation: wa-pulse 2.5s infinite;
  text-decoration: none;
  transition: transform var(--tr);
}
.fab-wa:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.12); }
}
.fab-call {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 16px rgba(10,36,99,.3);
  text-decoration: none;
  transition: transform var(--tr);
}
.fab-call:hover { transform: scale(1.1); }
/* WA bubble */
.wa-bubble {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--sh2);
  padding: 16px 20px;
  max-width: 260px;
  z-index: 699;
  display: none;
  animation: bubble-in .3s ease;
}
.wa-bubble.show { display: block; }
@keyframes bubble-in { from{opacity:0;transform:scale(.8) translateY(10px)} to{opacity:1;transform:none} }
.wa-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 30px;
  width: 16px; height: 16px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 4px 4px 6px rgba(0,0,0,.05);
}
.wa-bubble p { font-size: .88rem; color: #334155; margin-bottom: 10px; }
.wa-bubble-close {
  position: absolute;
  top: 8px; right: 10px;
  background: none;
  font-size: 1rem;
  color: var(--muted);
  cursor: pointer;
  border: none;
  line-height: 1;
}
/* Back to top */
.btt {
  position: fixed;
  bottom: 28px;
  left: 24px;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--sh);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr), transform var(--tr);
  border: none;
  z-index: 700;
}
.btt.show { opacity: 1; pointer-events: auto; }
.btt:hover { transform: translateY(-3px); background: var(--orange); }

/* ── MAP ── */
.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--sh);
  margin-top: 32px;
}

/* ── STILL HAVE Q ── */
.still-q {
  max-width: 640px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  color: #fff;
}
.still-q h3 { font-size: 1.4rem; margin-bottom: 8px; }
.still-q p { color: #93c5fd; margin-bottom: 20px; }
.still-q-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ── INTRO TEXT ── */
.intro-text {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.intro-text h2 { color: var(--navy); font-size: 1.8rem; margin-bottom: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .ham { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stat-card { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 56px 16px; }
  .hero { min-height: 70vh; }
  .sh h2 { font-size: 1.65rem; }
  .page-hero h1 { font-size: 1.9rem; }
  .svc-overview-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .why-boxes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { flex-wrap: wrap; gap: 10px; }
  .contact-form { padding: 24px 18px; }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-btns { flex-direction: column; }
  .cta-band h2 { font-size: 1.5rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding: 40px 16px; }
  .mob-menu { width: 100%; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  .quick-bar-inner { flex-direction: column; align-items: flex-start; }
}
