/* =========================================================
   Site Public Stylesheet
   Typeface: Inter (headings + body) — matches index.blade.php
   Palette: Deep Navy, Steel Blue, Amber Gold, Warm White
   NOTE: Colours, fonts and layout tokens are also controlled
         by assets/js/theme.js — edit that file to retheme
         the entire website at once without touching CSS.
   ========================================================= */

/* Inter loaded via theme.js — fallback import kept for safety */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');

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

:root {
  /* ── Brand ──────────────────────────────────────────────────────────
     These are the DEFAULT values. theme.js overrides them at runtime.
     To permanently change a colour edit theme.js → THEME.colors.
     ----------------------------------------------------------------- */
  --navy:         #0d1f3c;
  --navy-mid:     #152d52;
  --navy-light:   #1e3f6e;
  --steel:        #2563b0;
  --steel-light:  #3b82d4;
  --gold:         #c8922a;
  --gold-light:   #e8a83a;
  --gold-pale:    #fef3dc;
  --cream:        #f8f6f1;
  --white:        #ffffff;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-400:     #9ca3af;
  --gray-500:     #6b7280;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --success:      #16a34a;
  --danger:       #dc2626;
  --warning:      #d97706;
  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 20px rgba(13,31,60,.10);
  --shadow-lg:    0 12px 40px rgba(13,31,60,.16);

  /* ── Fonts — Inter matches the Blade template's sans-serif stack ─── */
  --font-serif:   'Inter', system-ui, -apple-system, sans-serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --transition:   .22s cubic-bezier(.4,0,.2,1);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  width: 100%;
}

img { max-width: 100%; display: block; }
a { color: var(--steel); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }
main { flex: 1; }

/* ── Container ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Topbar ─────────────────────────────────────────── */
.topbar-strip {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: .75rem; /* text-xs */
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-strip a { color: rgba(255,255,255,.8); }
.topbar-hours-text { display: inline; }
.topbar-strip a:hover { color: var(--gold-light); }
.topbar-info { display: flex; gap: 24px; align-items: center; }
.topbar-info span::before { content: ''; display: inline-block; }

/* ── Navbar ─────────────────────────────────────────── */
.navbar {
  background: var(--white);
  padding: 0 24px;
  box-shadow: 0 2px 12px rgba(13,31,60,.08);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 3px solid var(--gold);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-brand .brand-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar-brand .brand-icon svg { width: 24px; height: 24px; stroke: var(--gold-light); }
.navbar-brand .brand-text { line-height: 1.1; }
.navbar-brand .brand-name {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1.25rem; /* Blade: text-xl */
  font-weight: 700;
  color: var(--navy);
  display: block;
}
.navbar-brand .brand-tagline {
  font-size: .75rem; /* Blade: text-xs */
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
}
.navbar-nav {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}
.navbar-nav a {
  color: var(--gray-700);
  font-size: 1rem; /* Blade: text-base */
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.navbar-nav a:hover {
  color: var(--navy);
  background: var(--cream);
  text-decoration: none;
}
.navbar-nav a.active { color: var(--navy); font-weight: 700; }
.navbar-nav .btn-nav {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 6px;
}
.navbar-nav .btn-nav:hover {
  background: var(--gold-light);
  color: var(--navy);
  text-decoration: none;
}

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem; /* Blade: text-base */
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-light); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.btn-lg { padding: 14px 34px; font-size: 1.125rem; } /* Blade: text-lg */
.btn-sm { padding: 7px 16px; font-size: .875rem; }  /* Blade: text-sm */

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 50%, #0f2a4a 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
  width: 100%;
  box-sizing: border-box;
}
.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.02'%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");
}
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(200,146,42,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-label {
  display: inline-block;
  background: rgba(200,146,42,.2);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(200,146,42,.3);
  margin-bottom: 22px;
}
.hero-title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem); /* matches Blade text-4xl→text-7xl */
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  color: rgba(255,255,255,.72);
  font-size: 1.25rem; /* matches Blade text-xl */
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-num {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1.875rem; /* matches Blade text-3xl */
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat-label { font-size: .875rem; color: rgba(255,255,255,.55); margin-top: 3px; }

/* Track card in hero */
.track-hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}
.track-hero-card h3 {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1.5rem; /* matches Blade text-2xl */
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.track-hero-card p { font-size: 1rem; color: var(--gray-500); margin-bottom: 22px; }
.track-input-row { display: flex; flex-direction: column; gap: 12px; }
.track-input-row input {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem; /* text-base */
  color: var(--gray-900);
  transition: border-color var(--transition);
  outline: none;
}
.track-input-row input:focus { border-color: var(--steel); }
.track-input-row button { width: 100%; justify-content: center; }
.track-hero-card .track-note { font-size: .75rem; color: var(--gray-400); margin-top: 12px; text-align: center; }

/* ── Section shared ──────────────────────────────────── */
.section { padding: 88px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label {
  display: inline-block;
  font-size: .75rem; /* text-xs */
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 2.25rem); /* Blade: text-3xl md:text-4xl */
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.section-dark .section-title { color: #fff; }
.section-subtitle { font-size: 1.25rem; color: var(--gray-500); max-width: 560px; margin: 0 auto; line-height: 1.7; } /* Blade: text-xl */
.section-dark .section-subtitle { color: rgba(255,255,255,.6); }

/* ── Services grid ───────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--navy); }
.service-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.01em; } /* Blade: text-xl font-semibold */
.service-card p { font-size: 1rem; color: var(--gray-500); line-height: 1.65; } /* Blade: text-gray-600 */
.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 16px;
  transition: gap var(--transition);
}
.service-card:hover .read-more { gap: 10px; }

/* ── Why choose us ───────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; stroke: var(--gold-light); }
.why-item h4 { font-size: 1rem; /* text-base */ font-weight: 700; color: #fff; margin-bottom: 6px; }
.why-item p { font-size: .875rem; /* text-sm */ color: rgba(255,255,255,.55); line-height: 1.6; }

/* ── Stats banner ────────────────────────────────────── */
.stats-bar {
  background: var(--gold);
  padding: 52px 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item-num {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 2.25rem; /* text-4xl */
  color: var(--navy);
  line-height: 1;
}
.stat-item-label { font-size: .75rem; /* text-xs */ color: var(--navy); opacity: .75; margin-top: 6px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── Animal relocation section ───────────────────────── */
.animal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.animal-text h2 {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.animal-text .lead { font-size: 1rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 28px; }
.animal-features { list-style: none; margin-bottom: 34px; }
.animal-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem; /* text-base */
  color: var(--gray-700);
}
.animal-features li:last-child { border-bottom: none; }
.feature-check {
  width: 22px;
  height: 22px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-check svg { width: 12px; height: 12px; stroke: var(--gold); stroke-width: 3; }
.animal-visual {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.animal-badge {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
}
.animal-badge svg { width: 32px; height: 32px; stroke: var(--gold-light); margin: 0 auto 10px; }
.animal-badge span { display: block; font-size: .75rem; /* text-xs */ color: rgba(255,255,255,.65); }
.animal-badge strong { display: block; font-size: 1rem; /* text-base */ color: #fff; margin-bottom: 4px; font-weight: 600; }

/* ── Testimonials ────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px solid var(--gray-200);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text { font-size: .875rem; /* text-sm */ color: var(--gray-700); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #fff; font-size: 1.1rem;
}
.author-name { font-size: .875rem; /* text-sm */ font-weight: 700; color: var(--navy); }
.author-role { font-size: .75rem; color: var(--gray-400); }

/* ── Contact page ────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 52px; align-items: start; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-form-card .sub { font-size: .875rem; /* text-sm */ color: var(--gray-500); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .875rem; /* text-sm */ font-weight: 600; color: var(--gray-700); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem; /* text-base */
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--steel); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: rgba(255,255,255,.7);
}
.contact-info-card h4 { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.25rem; /* text-xl */ color: #fff; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,.08);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--gold-light); }
.contact-detail strong { display: block; color: #fff; font-size: .875rem; /* text-sm */ margin-bottom: 3px; }
.contact-detail span { font-size: .875rem; /* text-sm */ }

/* ── About page ──────────────────────────────────────── */
.about-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
}
.about-hero h1 { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: clamp(2.25rem, 4.5vw, 3.75rem); font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.02em; }
.about-hero p { color: rgba(255,255,255,.65); font-size: 1.125rem; /* text-lg */ max-width: 580px; margin: 0 auto; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.mission-content h2 { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; letter-spacing: -0.01em; }
.mission-content p { color: var(--gray-500); line-height: 1.75; margin-bottom: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.value-item {
  background: var(--cream);
  border-radius: 10px;
  padding: 20px;
  border-left: 3px solid var(--gold);
}
.value-item h5 { font-size: 1rem; /* text-base */ font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-item p { font-size: .75rem; /* text-xs */ color: var(--gray-500); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--steel));
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.875rem; /* text-3xl */ color: #fff;
}
.team-card h5 { font-size: 1rem; /* text-base */ font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card span { font-size: .75rem; /* text-xs */ color: var(--gray-400); }

/* ── Services page ───────────────────────────────────── */
.services-hero {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.services-hero h1 { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: clamp(2.25rem, 4.5vw, 3.75rem); font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.02em; }
.services-hero p { color: rgba(255,255,255,.65); max-width: 540px; margin: 0 auto; }
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-content h3 { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.875rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.01em; }
.service-detail-content p { color: var(--gray-500); line-height: 1.75; margin-bottom: 20px; }
.service-detail-visual {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.service-detail-visual svg { width: 80px; height: 80px; stroke: var(--gold-light); margin: 0 auto; }
.service-detail-visual h4 { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.5rem; /* text-2xl */ color: #fff; margin-top: 22px; }
.service-detail-visual p { font-size: .875rem; /* text-sm */ color: rgba(255,255,255,.55); margin-top: 8px; }

/* ── Track page ──────────────────────────────────────── */
.track-section { padding: 60px 0 80px; }
.track-bar-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 32px;
  display: flex;
  gap: 14px;
  align-items: flex-end;
  box-shadow: var(--shadow);
}
.track-bar-wrap .form-group { flex: 1; margin-bottom: 0; }
.track-bar-wrap label { font-size: .875rem; /* text-sm */ font-weight: 600; color: var(--gray-700); display: block; margin-bottom: 7px; }
.track-bar-wrap input {
  padding: 13px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem; /* text-base */
  width: 100%;
  outline: none;
  transition: border-color var(--transition);
}
.track-bar-wrap input:focus { border-color: var(--steel); }

/* Result card */
.result-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.result-header {
  background: var(--navy);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.result-header .tracking-label {
  font-size: .75rem; /* text-xs */
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.result-header .tracking-num { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.5rem; /* text-2xl */ color: #fff; }
.result-header .status-pill {
  margin-left: auto;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: .875rem; /* text-sm */
  font-weight: 700;
  letter-spacing: .03em;
}
.result-header .location-note { width: 100%; font-size: .875rem; /* text-sm */ color: rgba(255,255,255,.55); margin-top: -8px; }

.progress-section { padding: 24px 36px; background: var(--cream); border-bottom: 1px solid var(--gray-200); }
.progress-labels { display: flex; justify-content: space-between; font-size: .75rem; /* text-xs */ color: var(--gray-500); margin-bottom: 8px; }
.progress-bar { height: 8px; background: var(--gray-200); border-radius: 99px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--navy), var(--steel-light)); border-radius: 99px; transition: width 1s ease; }

.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.info-block {
  padding: 26px 36px;
  border-bottom: 1px solid var(--gray-100);
  border-right: 1px solid var(--gray-100);
}
.info-block:nth-child(2n) { border-right: none; }
.info-block h5 { font-size: .75rem; /* text-xs */ text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.info-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; border-bottom: 1px dashed var(--gray-100); }
.info-row:last-child { border-bottom: none; }
.info-row .lbl { font-size: .75rem; /* text-xs */ color: var(--gray-400); }
.info-row .val { font-size: .875rem; /* text-sm */ font-weight: 600; color: var(--gray-900); text-align: right; max-width: 60%; }

.animal-alert {
  margin: 0 36px 0;
  padding: 14px 20px;
  background: #fef9ec;
  border: 1px solid #f6d860;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 24px 36px;
}
.animal-alert svg { width: 18px; height: 18px; stroke: #92400e; flex-shrink: 0; margin-top: 1px; }
.animal-alert p { font-size: .875rem; /* text-sm */ color: #78350f; line-height: 1.6; }

/* Timeline */
.timeline-section { padding: 30px 36px 36px; }
.timeline-section h4 { font-size: .75rem; /* text-xs */ text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 700; margin-bottom: 22px; }
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 10px; bottom: 10px;
  width: 2px;
  background: var(--gray-200);
}
.tl-item { position: relative; padding-bottom: 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -24px; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  background: var(--white);
  z-index: 1;
}
.tl-dot.active { background: var(--navy); border-color: var(--navy); }
.tl-status { font-size: .875rem; /* text-sm */ font-weight: 700; color: var(--navy); }
.tl-location { font-size: .75rem; /* text-xs */ color: var(--gray-500); margin-top: 2px; }
.tl-note { font-size: .75rem; /* text-xs */ color: var(--gray-700); margin-top: 5px; background: var(--cream); border-radius: 6px; padding: 8px 12px; }
.tl-time { font-size: .75rem; color: var(--gray-400); margin-top: 5px; }

/* ── Alert ───────────────────────────────────────────── */
.alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 1rem; /* text-base */
}
.alert-error { background: #fee2e2; color: #b91c1c; border: 1px solid #fca5a5; }
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #86efac; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 52px;
}
.footer-brand h3 { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.footer-brand p { font-size: .875rem; /* text-sm */ line-height: 1.75; max-width: 280px; }
.footer-col h4 { font-size: .75rem; /* text-xs */ text-transform: uppercase; letter-spacing: .12em; color: var(--gold-light); font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: .875rem; /* text-sm */ transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; font-size: .875rem; /* text-sm */ }
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--gold-light); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .75rem; /* text-xs */
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }
.footer-links { display: flex; gap: 20px; }

/* ── Partners strip ──────────────────────────────────── */
.partners-strip { padding: 44px 0; background: var(--gray-100); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.partners-inner { display: flex; align-items: center; gap: 0; justify-content: space-around; flex-wrap: wrap; }
.partner-logo {
  padding: 10px 28px;
  font-size: 1.25rem; /* text-xl */
  font-weight: 800;
  color: var(--gray-400);
  letter-spacing: -.02em;
  transition: color var(--transition);
}
.partner-logo:hover { color: var(--navy); }
.partner-logo span { font-size: .6em; vertical-align: super; }

/* ── CTA banner ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--steel) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(200,146,42,.15) 0%, transparent 60%);
}
.cta-banner h2 { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: clamp(1.875rem, 3vw, 2.25rem); font-weight: 700; color: #fff; margin-bottom: 14px; position: relative; z-index: 1; letter-spacing: -0.01em; }
.cta-banner p { color: rgba(255,255,255,.7); font-size: 1.25rem; margin-bottom: 34px; position: relative; z-index: 1; }
.cta-banner-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Responsive ──────────────────────────────────────── */

/* =========================================================
   HAMBURGER BUTTON (base — hidden on desktop)
   ========================================================= */
.navbar-actions {
  display: none;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.22s ease;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: var(--cream); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay — hidden on desktop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 250;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Nav CTA item — hidden on desktop (shown in mobile drawer) */
.nav-cta { display: none; }

/* =========================================================
   PAGE HERO BANNER
   ========================================================= */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #0f2a4a 100%);
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}
.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.025'%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");
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero-title {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(2.25rem, 5vw, 3rem); /* Blade: text-4xl md:text-5xl */
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.page-hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.25rem; /* Blade: text-xl */
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem; /* text-sm */
  color: rgba(255,255,255,.55);
}
.breadcrumb a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color 0.22s ease;
}
.breadcrumb a:hover { color: var(--gold-light); }
.bc-sep { color: rgba(255,255,255,.4); }
.bc-current { color: var(--gold-light); font-weight: 600; }

/* =========================================================
   TOPBAR ICONS
   ========================================================= */
.topbar-info {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* =========================================================
   FOOTER QUICK-LINKS — visible arrow icons + tap targets
   ========================================================= */
.footer-col ul li a {
  color: rgba(255,255,255,.6);
  font-size: .875rem; /* text-sm */
  transition: color 0.22s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  min-height: 36px;
}
.footer-col ul li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid var(--gold-light);
  border-top: 1.5px solid var(--gold-light);
  transform: rotate(45deg);
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-col ul li a:hover::before { opacity: 1; transform: rotate(45deg) translateX(2px); }
.footer-contact-item svg { fill: none; }

/* =========================================================
   GLOBAL OVERFLOW FIX
   ========================================================= */
html, body {
  overflow-x: clip;
  max-width: 100%;
}
body { position: relative; }

/* =========================================================
   RESPONSIVE — ALL BREAKPOINTS (single clean block)
   ========================================================= */

/* ── 1024px ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .track-hero-card { max-width: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .animal-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 900px — hamburger kicks in ── */
@media (max-width: 900px) {

  /* Topbar compact for mobile — matches reference layout */
  .topbar-strip {
    padding: 8px 0;
  }
  .topbar-strip .container {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }
  .topbar-info {
    gap: 6px;
    font-size: .75rem;
    flex-shrink: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .topbar-info svg {
    flex-shrink: 0;
  }
  .topbar-info span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* Hide the hours text label on smallest screens, keep icon */
  .topbar-hours-text {
    display: none;
  }

  /* Show hamburger button, hide desktop nav */
  .navbar-actions { display: flex; }
  .navbar { padding: 0 16px; }
  .navbar-inner { position: relative; }

  /* Enable overlay */
  .nav-overlay { display: block; }
  .nav-overlay.visible { opacity: 1; pointer-events: all; }

  /* Hide the full desktop nav list off-screen to the right */
  .navbar-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 0 40px;
    box-shadow: -4px 0 32px rgba(13,31,60,.2);
    z-index: 301;
    transition: right 0.32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    list-style: none;
    /* Override any desktop display rule */
    display: flex !important;
  }
  /* Slide in when open */
  .navbar-nav.open { right: 0; }

  /* Nav items */
  .navbar-nav li {
    border-bottom: 1px solid var(--gray-100);
  }
  .navbar-nav li:last-child { border-bottom: none; }

  .navbar-nav a {
    display: flex !important;
    align-items: center;
    padding: 15px 24px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    border-radius: 0;
    white-space: normal;
    min-height: 52px;
    background: none;
  }
  .navbar-nav a:hover {
    background: var(--cream);
    color: var(--navy);
  }
  .navbar-nav a.active {
    color: var(--navy);
    font-weight: 700;
    background: var(--cream);
    border-left: 3px solid var(--gold);
    padding-left: 21px;
  }

  /* CTA button in drawer */
  .nav-cta {
    display: block !important;
    padding: 16px 24px 8px;
    border-bottom: none !important;
  }
  .nav-cta a.btn {
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 14px 20px !important;
    border-radius: var(--radius) !important;
  }

  /* Override any desktop btn-nav style in drawer context */
  .navbar-nav .btn-nav {
    background: none !important;
    color: var(--gray-800) !important;
    font-weight: 500;
    border-radius: 0 !important;
    padding: 15px 24px !important;
  }

  /* Page hero mobile */
  .page-hero { padding: 48px 0 60px; }
  .page-hero-title { font-size: clamp(1.875rem, 6vw, 2.25rem); /* Blade mobile heading */ }
  .page-hero-sub { font-size: 1rem; /* text-base */ }

  /* Content overflow */
  .container { padding-left: 16px; padding-right: 16px; }
  .section, .hero, .page-hero, .stats-bar, .partners-strip, .cta-banner, .footer, .track-section {
    width: 100%; max-width: 100%; overflow-x: hidden;
  }

  /* Hero stacking */
  .hero-inner { display: flex; flex-direction: column; gap: 28px; }
  .track-hero-card { width: 100%; max-width: 100%; box-sizing: border-box; }
  .hero-title { font-size: clamp(1.7rem, 6vw, 2.5rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; width: 100%; }

  /* Footer mobile */
  .footer-col ul li a { min-height: 44px; padding: 8px 0; }
  .footer-contact-item { min-height: 44px; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Other layout */
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .partners-inner { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .cta-banner { padding: 48px 0; }
  .cta-banner-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-banner-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .navbar-brand .brand-tagline { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .info-block { border-right: none; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .result-header { padding: 20px 16px; }
  .info-block, .timeline-section, .progress-section { padding-left: 16px; padding-right: 16px; }
  .track-bar-wrap { flex-direction: column; align-items: stretch; padding: 20px; }
  .animal-visual { padding: 24px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; text-align: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: clamp(1.4rem, 5.5vw, 2rem); }
}
