/* =========================================
   PawRoute International — style.css
   ========================================= */

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

:root {
  --navy:   #0d2240;
  --navy2:  #163354;
  --teal:   #0ea87e;
  --teal2:  #0c9470;
  --sky:    #e8f6f2;
  --warm:   #fff9f0;
  --orange: #f97316;
  --text:   #1a2e1a;
  --muted:  #5a6e5a;
  --border: #ddeedd;
  --white:  #ffffff;
  --card:   #f7fdf9;
  --r: 10px;
  --tr: .22s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* =========================================
   NAVBAR
   ========================================= */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 2.5rem;
  background: var(--navy);
  position: sticky; top: 0; z-index: 99;
  transition: padding var(--tr);
}
nav.scrolled { padding: .65rem 2.5rem; }

.logo-wrap { display: flex; align-items: center; gap: .6rem; }
.logo-icon {
  width: 36px; height: 36px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.logo-text { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: -.5px; }
.logo-text span { color: var(--teal); }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.6); transition: color var(--tr);
  padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: #fff; border-bottom-color: var(--teal); }

.nav-cta {
  background: var(--teal); color: #fff;
  padding: .5rem 1.4rem; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  transition: background var(--tr);
}
.nav-cta:hover { background: var(--teal2); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--tr); }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--navy); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.5rem; font-weight: 800; color: rgba(255,255,255,.7);
  text-transform: uppercase; letter-spacing: .08em;
}
.mobile-nav a:hover { color: var(--teal); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer;
}

/* =========================================
   COMMON
   ========================================= */
section { padding: 5rem 2.5rem; }

.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--sky); color: var(--teal2);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1rem;
}
.chip-light { background: rgba(14,168,126,.15); color: #4dd9a8; }

h2.sec-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800;
  color: var(--navy); line-height: 1.1; margin-bottom: .9rem;
}
h2.sec-title span { color: var(--teal); }
h2.sec-title.light { color: #fff; }

.sec-sub { color: var(--muted); font-size: .95rem; max-width: 540px; line-height: 1.8; }

.btn-green {
  display: inline-block; background: var(--teal); color: #fff;
  padding: .78rem 2rem; border-radius: 50px;
  font-size: .86rem; font-weight: 700; letter-spacing: .04em;
  cursor: pointer; transition: all var(--tr); border: none; font-family: 'Nunito', sans-serif;
}
.btn-green:hover { background: var(--teal2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(14,168,126,.25); }

.btn-outline {
  display: inline-block; background: none;
  color: var(--teal); border: 2px solid var(--teal);
  padding: .68rem 1.8rem; border-radius: 50px;
  font-size: .86rem; font-weight: 700; cursor: pointer; transition: all var(--tr);
}
.btn-outline:hover { background: var(--sky); }

.btn-white {
  display: inline-block; background: #fff; color: var(--navy);
  padding: .78rem 2rem; border-radius: 50px;
  font-size: .86rem; font-weight: 700; cursor: pointer; transition: all var(--tr);
}
.btn-white:hover { background: var(--sky); transform: translateY(-2px); }

/* =========================================
   HERO
   ========================================= */
.hero {
  background: var(--navy); padding: 5.5rem 2.5rem 4rem;
  position: relative; overflow: hidden;
}
.hero-dots {
  position: absolute; inset: 0; opacity: .06;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 3.5rem; align-items: center;
  max-width: 1200px; margin: 0 auto;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(14,168,126,.15); border: 1px solid rgba(14,168,126,.35);
  color: #4dd9a8; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .4rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
}

h1.hero-title {
  font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 900; color: #fff;
  line-height: 1.08; margin-bottom: 1.2rem;
}
h1.hero-title span { color: var(--teal); }

.hero-desc {
  color: rgba(255,255,255,.62); font-size: .98rem; line-height: 1.85;
  max-width: 460px; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-ghost {
  color: rgba(255,255,255,.6); font-size: .86rem; font-weight: 700;
  display: flex; align-items: center; gap: .5rem; cursor: pointer; transition: all var(--tr);
}
.hero-ghost:hover { color: #fff; gap: .8rem; }

.hero-trust { display: flex; align-items: center; gap: .7rem; margin-top: 2.2rem; }
.trust-stars { color: #fbbf24; font-size: .9rem; }
.trust-txt { font-size: .78rem; color: rgba(255,255,255,.5); }
.trust-txt strong { color: rgba(255,255,255,.8); font-weight: 700; }

/* Hero route card */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px; padding: 1.8rem;
}
.hero-card-title {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 1.2rem;
}
.route-visual { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.route-dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(14,168,126,.18); border: 2px solid var(--teal);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.route-line {
  flex: 1; height: 2px; background: var(--teal); opacity: .4; position: relative;
}
.route-plane {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--navy); padding: 0 5px; font-size: 1rem;
}
.route-city { font-size: .92rem; font-weight: 800; color: #fff; margin-bottom: .15rem; }
.route-country { font-size: .72rem; color: rgba(255,255,255,.4); }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1.2rem; }
.mini-stat {
  background: rgba(255,255,255,.07); border-radius: 8px;
  padding: .75rem .8rem; text-align: center;
}
.mini-stat-val { font-size: 1.05rem; font-weight: 800; color: #fff; }
.mini-stat-lbl { font-size: .63rem; color: rgba(255,255,255,.4); margin-top: .2rem; }

/* =========================================
   TICKER
   ========================================= */
.ticker-wrap {
  background: var(--teal); padding: .7rem 0; overflow: hidden;
}
.ticker { display: flex; white-space: nowrap; animation: tick 22s linear infinite; }
.ticker-item {
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 0 2.2rem; color: rgba(255,255,255,.82);
}
.ticker-item span { color: #fff; margin-right: 2.2rem; opacity: .55; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================
   SERVICES
   ========================================= */
.services { background: var(--warm); }
.services > .inner { max-width: 1200px; margin: 0 auto; }

.svc-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem; margin-top: 2.5rem;
}
.svc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.8rem;
  transition: all var(--tr);
}
.svc-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 8px 28px rgba(14,168,126,.1); }
.svc-icon {
  width: 50px; height: 50px; background: var(--sky); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.1rem;
}
.svc-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.svc-card p { font-size: .84rem; color: var(--muted); line-height: 1.8; }
.svc-badge {
  display: inline-block; margin-top: 1rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .28rem .75rem; border-radius: 50px;
  background: var(--sky); color: var(--teal2);
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.hiw { background: var(--white); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.step { text-align: center; padding: 1.8rem 1.2rem; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.step-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.step h3 { font-size: .98rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
.step p { font-size: .82rem; color: var(--muted); line-height: 1.8; }

/* =========================================
   PETS WE SHIP
   ========================================= */
.pets { background: var(--sky); }
.pet-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.pet-card {
  background: var(--white); border-radius: var(--r);
  padding: 1.3rem .9rem; text-align: center;
  border: 1px solid var(--border); transition: all var(--tr);
}
.pet-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.pet-emoji { font-size: 2.4rem; margin-bottom: .6rem; }
.pet-name { font-size: .88rem; font-weight: 800; color: var(--navy); }
.pet-note { font-size: .72rem; color: var(--muted); margin-top: .25rem; }

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--navy); padding: 5rem 2.5rem; }
.testi-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.3rem; margin-top: 2.5rem;
}
.testi-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r); padding: 1.8rem;
}
.testi-stars { color: #fbbf24; font-size: .9rem; margin-bottom: .9rem; }
.testi-text {
  font-size: .9rem; color: rgba(255,255,255,.72);
  line-height: 1.85; font-style: italic; margin-bottom: 1.2rem;
}
.testi-author { display: flex; align-items: center; gap: .8rem; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.testi-name { font-size: .88rem; font-weight: 800; color: #fff; }
.testi-loc { font-size: .72rem; color: rgba(255,255,255,.38); }

/* =========================================
   STATS BAND
   ========================================= */
.stats-band {
  background: var(--teal); padding: 3.2rem 2.5rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem; text-align: center;
}
.band-num { font-size: 2.4rem; font-weight: 900; color: #fff; line-height: 1; }
.band-lbl {
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.68);
  text-transform: uppercase; letter-spacing: .08em; margin-top: .4rem;
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  background: var(--warm); border-top: 1px solid var(--border);
  padding: 4.5rem 2.5rem; text-align: center;
}
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 900; color: var(--navy); margin-bottom: .8rem; }
.cta-band p { color: var(--muted); font-size: .96rem; margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-hero {
  background: var(--navy); padding: 6rem 2.5rem 4rem;
  position: relative; overflow: hidden;
}
.about-hero-inner { position: relative; z-index: 1; max-width: 700px; }
.about-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: 1.1rem;
}
.about-hero h1 span { color: var(--teal); }
.about-hero p { color: rgba(255,255,255,.58); font-size: .98rem; line-height: 1.85; max-width: 540px; }

.mission { background: var(--white); }
.mission-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.mission-img {
  aspect-ratio: 4/3; background: var(--sky); border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5.5rem; border: 2px solid var(--border);
}
.mission-text p { font-size: .92rem; color: var(--muted); line-height: 1.88; margin-bottom: 1rem; }
.mission-text strong { color: var(--text); font-weight: 700; }

.about-values { background: var(--sky); }
.val-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1.3rem; margin-top: 2rem;
}
.val-card {
  background: var(--white); border-radius: var(--r);
  padding: 1.7rem; border: 1px solid var(--border); transition: all var(--tr);
}
.val-card:hover { border-color: var(--teal); transform: translateY(-3px); }
.val-icon { font-size: 1.7rem; margin-bottom: .8rem; }
.val-card h3 { font-size: .98rem; font-weight: 800; color: var(--navy); margin-bottom: .45rem; }
.val-card p { font-size: .84rem; color: var(--muted); line-height: 1.8; }

.team-section { background: var(--white); }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1.8rem; margin-top: 2rem;
}
.team-card { text-align: center; }
.team-av {
  width: 85px; height: 85px; border-radius: 50%;
  margin: 0 auto .9rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; font-weight: 800; color: #fff;
}
.av1 { background: #0ea87e; } .av2 { background: #0d2240; }
.av3 { background: #f97316; } .av4 { background: #7c3aed; }
.team-name { font-size: .95rem; font-weight: 800; color: var(--navy); margin-bottom: .3rem; }
.team-role { font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

.certs { background: var(--sky); padding: 3.5rem 2.5rem; text-align: center; }
.cert-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; margin-top: 1.8rem; }
.cert-pill {
  background: var(--white); border: 1px solid var(--border); border-radius: 50px;
  padding: .6rem 1.4rem; font-size: .82rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: .5rem;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero {
  background: var(--navy); padding: 6rem 2.5rem 3.5rem;
  position: relative; overflow: hidden;
}
.contact-hero-inner { position: relative; z-index: 1; }
.contact-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: .9rem;
}
.contact-hero h1 span { color: var(--teal); }
.contact-hero p { color: rgba(255,255,255,.58); font-size: .96rem; max-width: 520px; line-height: 1.85; }

.contact-body {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem; padding: 4.5rem 2.5rem; background: var(--white);
}
.contact-info h3 { font-size: 1.15rem; font-weight: 800; color: var(--navy); margin-bottom: .7rem; }
.contact-info > p { font-size: .9rem; color: var(--muted); line-height: 1.85; margin-bottom: 2rem; }
.detail-list { display: flex; flex-direction: column; gap: 1.2rem; }
.d-item { display: flex; gap: .9rem; align-items: flex-start; }
.d-icon {
  width: 40px; height: 40px; background: var(--sky); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}
.d-lbl { font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--teal2); }
.d-val { font-size: .9rem; color: var(--text); margin-top: .2rem; }

.form-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 2.4rem;
}
.form-title { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: .35rem; }
.form-sub { font-size: .84rem; color: var(--muted); margin-bottom: 1.8rem; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { margin-bottom: 1.3rem; }
.fg label {
  display: block; font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: .45rem;
}
.fg input, .fg textarea, .fg select {
  width: 100%; background: var(--white);
  border: 1.5px solid var(--border); border-radius: 9px;
  padding: .72rem 1rem; color: var(--text);
  font-family: 'Nunito', sans-serif; font-size: .92rem; outline: none;
  transition: border-color var(--tr); -webkit-appearance: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--teal); }
.fg textarea { resize: vertical; min-height: 110px; }
.fg select option { background: var(--white); }

.form-submit {
  width: 100%; padding: .9rem;
  background: var(--teal); color: #fff; border: none; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: .9rem; font-weight: 700; letter-spacing: .04em;
  cursor: pointer; transition: all var(--tr);
}
.form-submit:hover { background: var(--teal2); transform: translateY(-2px); }
.form-note { font-size: .76rem; color: var(--muted); text-align: center; margin-top: .8rem; }

.success-box { display: none; text-align: center; padding: 3rem 1rem; }
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.success-box h3 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: .7rem; }
.success-box p { color: var(--muted); font-size: .9rem; line-height: 1.8; }

/* =========================================
   CONFIG PAGE
   ========================================= */
.config-hero {
  background: var(--navy); padding: 5rem 2.5rem 3rem;
  position: relative; overflow: hidden;
}
.config-hero-inner { position: relative; z-index: 1; }
.config-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 900; color: #fff;
  line-height: 1.1; margin-bottom: .6rem;
}
.config-hero h1 span { color: var(--teal); }
.config-hero > .config-hero-inner > p { color: rgba(255,255,255,.52); font-size: .92rem; }

.cfg-layout { display: grid; grid-template-columns: 230px 1fr; min-height: 550px; }
.cfg-sb {
  background: var(--card); border-right: 1px solid var(--border); padding: 1.8rem 0;
}
.cfg-sb-lbl {
  font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .13em;
  color: var(--muted); padding: .5rem 1.4rem; display: block; margin-top: .7rem;
}
.cfg-link {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem 1.4rem; font-size: .87rem; font-weight: 600; color: var(--muted);
  cursor: pointer; border-left: 3px solid transparent; transition: all var(--tr);
}
.cfg-link:hover { color: var(--navy); background: var(--sky); }
.cfg-link.active { color: var(--teal2); border-left-color: var(--teal); background: rgba(14,168,126,.06); }
.cfg-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

.cfg-main { padding: 2.2rem; background: var(--white); }
.cfg-panel { display: none; }
.cfg-panel.active { display: block; }
.cfg-panel > h2 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: .4rem; }
.cfg-panel > .cfg-sub { font-size: .86rem; color: var(--muted); margin-bottom: 2rem; }

.cfg-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 1.6rem; margin-bottom: 1.3rem;
}
.cfg-ct {
  font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--muted); padding-bottom: .8rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--border);
}
.cfg-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .7rem 0; border-bottom: 1px solid rgba(0,0,0,.04);
}
.cfg-row:last-child { border-bottom: none; }
.cfg-rl { font-size: .9rem; font-weight: 600; color: var(--text); }
.cfg-rs { font-size: .74rem; color: var(--muted); margin-top: .18rem; }

.cfg-inp {
  background: var(--white); border: 1.5px solid var(--border); color: var(--text);
  font-family: 'Nunito', sans-serif; font-size: .84rem;
  padding: .4rem .8rem; border-radius: 8px; outline: none; width: 170px;
  transition: border-color var(--tr);
}
.cfg-inp:focus { border-color: var(--teal); }
.cfg-sel {
  background: var(--white); border: 1.5px solid var(--border); color: var(--text);
  font-family: 'Nunito', sans-serif; font-size: .84rem;
  padding: .4rem .8rem; border-radius: 8px; cursor: pointer; outline: none;
  -webkit-appearance: none; transition: border-color var(--tr);
}
.cfg-sel:focus { border-color: var(--teal); }

/* Toggle */
.tog { position: relative; width: 44px; height: 24px; flex-shrink: 0; cursor: pointer; }
.tog input { opacity: 0; position: absolute; width: 0; height: 0; }
.tog-tr {
  position: absolute; inset: 0; background: #cbd5e1;
  border-radius: 12px; transition: background var(--tr);
}
.tog input:checked ~ .tog-tr { background: var(--teal); }
.tog-th {
  position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; background: #fff;
  border-radius: 50%; transition: transform var(--tr);
}
.tog input:checked ~ .tog-th { transform: translateX(20px); }

.save-row {
  background: var(--card); border-top: 1px solid var(--border);
  padding: 1rem 2.2rem; display: none;
  justify-content: flex-end; align-items: center; gap: 1rem;
}
.save-row p { font-size: .84rem; color: var(--muted); margin-right: auto; }
.save-btn {
  background: var(--teal); color: #fff; border: none;
  padding: .52rem 1.5rem; border-radius: 50px;
  font-family: 'Nunito', sans-serif; font-size: .82rem; font-weight: 700; cursor: pointer;
  transition: background var(--tr);
}
.save-btn:hover { background: var(--teal2); }
.discard-btn {
  background: none; border: none; color: var(--muted);
  font-size: .84rem; cursor: pointer; font-family: 'Nunito', sans-serif;
}

/* Toast */
.toast {
  position: fixed; bottom: 1.8rem; right: 1.8rem;
  background: var(--teal); color: #fff;
  padding: .75rem 1.5rem; border-radius: 50px;
  font-size: .84rem; font-weight: 700; z-index: 9999;
  opacity: 0; transform: translateY(8px);
  transition: all .3s; pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* =========================================
   FOOTER
   ========================================= */
footer { background: var(--navy); }
.ft-inner {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 2.8rem; padding: 4rem 2.5rem 3rem;
}
.ft-brand p {
  font-size: .84rem; color: rgba(255,255,255,.42);
  line-height: 1.8; margin-top: .8rem; max-width: 240px;
}
.ft-col h4 {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .13em; color: rgba(255,255,255,.38); margin-bottom: 1rem;
}
.ft-col li { margin-bottom: .6rem; }
.ft-col a { font-size: .87rem; color: rgba(255,255,255,.55); transition: color var(--tr); }
.ft-col a:hover { color: #fff; }
.ft-col p { font-size: .87rem; color: rgba(255,255,255,.45); line-height: 1.8; }
.ft-socials { display: flex; gap: .65rem; margin-top: 1.2rem; }
.ft-social {
  width: 35px; height: 35px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.5); transition: all var(--tr);
}
.ft-social:hover { border-color: var(--teal); color: var(--teal); }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 2.5rem; border-top: 1px solid rgba(255,255,255,.08);
  font-size: .77rem; color: rgba(255,255,255,.28);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .mission-split { grid-template-columns: 1fr; }
  .contact-body { grid-template-columns: 1fr; }
  .ft-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 1.5rem; }
  nav { padding: .9rem 1.5rem; }
  nav.scrolled { padding: .7rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 4.5rem 1.5rem 3rem; }
  .cfg-layout { grid-template-columns: 1fr; }
  .cfg-sb { border-right: none; border-bottom: 1px solid var(--border); }
  .frow { grid-template-columns: 1fr; }
  .ft-inner { grid-template-columns: 1fr; padding: 2.5rem 1.5rem 2rem; }
  .ft-bottom { flex-direction: column; gap: .4rem; text-align: center; padding: 1rem 1.5rem; }
}
@media (max-width: 480px) {
  h1.hero-title { font-size: 2rem; }
  h2.sec-title { font-size: 1.7rem; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .form-wrap { padding: 1.5rem; }
}
