/* ====================================================
   FRANKLY K9 — BRAND TOKENS
   Colors pulled directly from the logo: navy ring/triangle,
   forest green badge background, burnt orange shepherd fur.
   ==================================================== */
:root {
  --navy: #0C3D63;
  --navy-dark: #001828;
  --forest-green: #184F29;
  --burnt-orange: #E8862E;
  --burnt-orange-dark: #C96B1D;
  --cream: #F7F4EE;
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --gray: #5A6470;

  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --radius: 10px;
  --shadow: 0 8px 24px rgba(0, 24, 40, 0.12);
  --transition: all 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--navy);
}

h2 { font-size: 2rem; text-transform: uppercase; margin-bottom: 1rem; }
h2.light { color: var(--white); }
h3 { font-size: 1.25rem; text-transform: uppercase; }
h4 { font-size: 1.1rem; text-transform: uppercase; }

p.light, li.light { color: rgba(255,255,255,0.85); }

.label {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--burnt-orange);
  margin-bottom: 0.5rem;
}
.label-light { color: var(--burnt-orange); }

.section-intro, .philosophy-intro, .services-subtext, .contact-sub {
  max-width: 640px;
  color: var(--gray);
  margin-bottom: 2rem;
}
.philosophy-intro, .contact-sub { color: rgba(255,255,255,0.85); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  min-height: 44px;
  line-height: 1;
  text-align: center;
}
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dark); transform: scale(1.03); }
.btn-accent { background: var(--burnt-orange); color: var(--white); }
.btn-accent:hover { background: var(--burnt-orange-dark); transform: scale(1.03); }
.btn-outline { border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: scale(1.03); }
.btn-outline-navy { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: scale(1.03); }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
}
.navbar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ---------- Brand Lockup (icon + live text, always matches site fonts) ---------- */
.brand-lockup { display: flex; align-items: center; }
.brand-lockup--row { gap: 0.6rem; }
.brand-lockup--stack { flex-direction: column; gap: 0.35rem; }
.brand-text {
  font-family: var(--font-head);
  letter-spacing: 1px;
  line-height: 1;
  color: var(--navy);
  white-space: nowrap;
}

.navbar-logo .brand-icon { height: 56px; transition: var(--transition); }
.navbar.shrink .navbar-logo .brand-icon { height: 42px; }
.navbar-logo .brand-text { font-size: 1.3rem; }
.navbar.shrink .navbar-logo .brand-text { font-size: 1.1rem; }

.navbar-links {
  display: none; /* mobile-first: hidden, JS toggles */
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  flex-direction: column;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}
.navbar-links.open { display: flex; }
.navbar-links a {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 0.75rem 0;
  color: var(--navy);
  border-bottom: 1px solid #eee;
}

.navbar-cta { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(232,134,46,0.15), transparent 60%);
}
.hero-content { position: relative; max-width: 720px; margin: 0 auto; padding: 0 1.25rem; }
.hero-badge { margin: 0 auto 1.5rem; }
.hero-badge .brand-icon { width: 190px; }
.hero-badge .brand-text { font-size: 2.4rem; color: var(--white); }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--burnt-orange);
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}
.hero h1 {
  color: var(--white);
  font-size: 2.1rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}
.hero-tagline {
  font-family: 'Caveat', cursive;
  color: var(--burnt-orange);
  font-size: 1.4rem;
}

/* ---------- About Me ---------- */
.about { padding: 4rem 0; background: var(--cream); }
.about-inner { display: grid; gap: 2rem; align-items: center; text-align: center; }
.about-photo img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}
.about-text h2 { margin-bottom: 0.75rem; }

/* ---------- Why / Pain Points ---------- */
.why { padding: 4rem 0; background: var(--cream); }
.why h2 { margin-bottom: 2rem; font-size: 1.6rem; }
.why-grid { display: grid; gap: 1.5rem; }
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--burnt-orange);
}
.why-icon {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--burnt-orange);
  margin-bottom: 0.5rem;
}
.why-card p { color: var(--gray); }

/* ---------- Philosophy ---------- */
.philosophy { background: var(--forest-green); padding: 4rem 0; }
.philosophy h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.pillars-grid { display: grid; gap: 1.5rem; margin: 2rem 0; }
.pillar-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.pillar-card h3 { color: var(--burnt-orange); margin-bottom: 0.25rem; }
.pillar-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.pillar-card ul li {
  color: rgba(255,255,255,0.85);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.philosophy-footer {
  margin-top: 1.5rem;
  font-style: italic;
  max-width: 700px;
}

/* ---------- Services / Pricing ---------- */
.services { padding: 4rem 0; background: var(--cream); }
.services-subhead { font-size: 1.4rem; margin-bottom: 0.5rem; }
.pricing-grid { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 4px solid var(--navy);
}
.price-card.featured { border-top: 4px solid var(--burnt-orange); }
.price-tag {
  position: absolute;
  top: -12px;
  right: 1.25rem;
  background: var(--burnt-orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
}
.price-for { color: var(--gray); font-size: 0.9rem; margin: 0.5rem 0 1rem; min-height: 42px; }
.price-amount { font-family: var(--font-head); font-size: 2rem; color: var(--navy); }
.price-meta { color: var(--gray); font-size: 0.85rem; margin-bottom: 0.5rem; }
.price-returning { color: var(--forest-green); font-weight: 600; font-size: 0.9rem; }
.price-includes { margin-top: 1rem; }
.price-includes li {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}
.price-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--burnt-orange);
  font-weight: 700;
}
.services-footnote {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 1rem;
}
.addon-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.addon-banner p { font-size: 0.95rem; }
.quote-cta { text-align: center; margin-top: 2rem; }

/* ---------- How It Works ---------- */
.how-it-works { padding: 4rem 0; background: var(--white); }
.how-it-works h2 { font-size: 1.6rem; }
.steps-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
.step { text-align: center; padding: 1.5rem; }
.step-number {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--burnt-orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step p { color: var(--gray); }

/* ---------- Video Feature ---------- */
.video-feature { padding: 4rem 0; background: var(--white); }
.video-feature-inner { display: grid; gap: 2rem; align-items: center; }
.video-feature-player video {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--navy-dark);
  display: block;
}

/* ---------- Service Area ---------- */
.service-area { background: var(--navy-dark); padding: 4rem 0; }
.service-area h2 { font-size: 1.6rem; margin-bottom: 2rem; }
.area-grid { display: grid; gap: 1.25rem; }
.area-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.area-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--burnt-orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.9rem;
}
.area-icon svg { width: 24px; height: 24px; }
.area-card h3 { color: var(--white); margin-bottom: 0.4rem; }
.area-tag { color: var(--burnt-orange); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.area-card p:last-child { color: rgba(255,255,255,0.8); }

/* ---------- Rescue Banner ---------- */
.rescue-banner { background: var(--burnt-orange); padding: 3rem 0; }
.rescue-inner { text-align: center; }
.rescue-inner h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.75rem; }
.rescue-inner p { color: rgba(255,255,255,0.95); max-width: 640px; margin: 0 auto; }

/* ---------- Travel / Boarding Referral ---------- */
.travel-partner { background: var(--cream); padding: 3.5rem 0; border-top: 1px solid rgba(12,61,99,0.1); }
.travel-partner-inner { text-align: center; }
.travel-partner-inner h2 { color: var(--navy); font-size: 1.5rem; margin-bottom: 0.75rem; }
.travel-partner-inner p { color: var(--navy); max-width: 600px; margin: 0 auto 1.25rem; }
.travel-partner-tag { color: var(--burnt-orange); font-weight: 600; font-size: 0.95rem; margin-top: -0.5rem; }

/* ---------- FAQ ---------- */
.faq { padding: 4rem 0; background: var(--cream); }
.faq h2 { font-size: 1.6rem; margin-bottom: 2rem; }
.faq-list { max-width: 720px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}
.faq-item summary {
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--navy);
  list-style: none;
}
.faq-item p { margin-top: 0.75rem; color: var(--gray); }

/* ---------- Contact ---------- */
.contact { background: var(--navy); padding: 4rem 0; }
.contact-grid { display: grid; gap: 2.5rem; }
.contact h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.contact-methods { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.contact-method {
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.contact-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 0.5rem;
}
.contact-form input, .contact-form textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  min-height: 44px;
}
.contact-form button { margin-top: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); padding: 3rem 0 2rem; text-align: center; }
.footer-logo { margin: 0 auto 0.75rem; }
.footer-logo .brand-icon { width: 70px; }
.footer-logo .brand-text { font-size: 1.3rem; color: var(--white); }
.footer-tagline { font-family: 'Caveat', cursive; color: var(--burnt-orange); font-size: 1.3rem; margin-bottom: 1.5rem; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1.25rem; }
.footer-nav a { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.footer-social { display: flex; justify-content: center; gap: 1.25rem; margin-bottom: 1.5rem; }
.footer-social a { color: var(--burnt-orange); font-weight: 600; font-size: 0.9rem; }
.footer-social a:hover { color: var(--white); }
.footer-copyright { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* ---------- Scroll Fade-Ins ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}