/* ══════════════════════════════════════════════════════════
   good.boy.company — styles.css
   ══════════════════════════════════════════════════════════ */

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

:root {
  --gold:       #C9A84C;
  --gold-light: #E4C47A;
  --gold-dark:  #A8863A;
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E42;
  --navy-soft:  #243650;
  --cream:      #F9F5ED;
  --cream-dark: #EFE8D6;
  --text:       #1A1A2E;
  --text-muted: #6B7280;
  --white:      #FFFFFF;
  --border:     #E5E0D5;
  --success:    #22C55E;
  --danger:     #EF4444;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,.15);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

/* ── Typography ── */
h1,h2,h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
em { font-style: italic; color: var(--gold); }
p { line-height: 1.7; color: var(--text-muted); }
a { text-decoration: none; color: inherit; }

/* ── Buttons ── */
button { cursor: pointer; border: none; outline: none; font-family: inherit; transition: var(--transition); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  letter-spacing: .02em;
  font-size: .95rem;
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,.35); }
.btn-gold.large { padding: 1rem 2.5rem; font-size: 1.05rem; border-radius: 10px; }
.btn-gold.full { width: 100%; }
.btn-ghost { background: transparent; color: var(--text-muted); font-weight: 500; padding: .65rem 1.25rem; border-radius: 8px; border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.05); }
.btn-ghost.full { width: 100%; margin-top: .75rem; }
.btn-ghost.small { padding: .4rem .9rem; font-size: .82rem; }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); padding: .95rem 2.25rem; border-radius: 10px; font-weight: 600; font-size: 1rem; }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: white; }
.btn-dark { background: var(--navy); color: var(--white); padding: .85rem 2rem; border-radius: 8px; font-weight: 600; font-size: .95rem; }
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-danger { background: var(--danger); color: white; padding: .85rem 1.5rem; border-radius: 8px; font-weight: 600; margin-top: 1rem; }
.btn-danger:hover { background: #DC2626; }
.btn-row { display: flex; gap: .75rem; margin-top: 1.5rem; }
.btn-row .btn-ghost { flex: 1; }
.btn-row .btn-gold { flex: 2; }

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--text); margin-bottom: .45rem; letter-spacing: .01em; }
.form-input { width: 100%; border: 1.5px solid var(--border); border-radius: 8px; padding: .75rem 1rem; font-size: .95rem; font-family: inherit; color: var(--text); background: var(--white); transition: var(--transition); }
.form-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
textarea.form-input { resize: vertical; }
.code-input { font-size: 1.3rem; font-weight: 700; letter-spacing: .12em; text-align: center; padding: .9rem 1rem; }

/* ── Page system ── */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,27,42,.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; height: 68px; display: flex; align-items: center; gap: 2rem; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; flex: 1; }
.nav-links a { color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-auth { display: flex; align-items: center; gap: .75rem; }
.nav-auth .btn-ghost { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.25); font-size: .875rem; padding: .5rem 1rem; }
.nav-auth .btn-ghost:hover { color: white; border-color: var(--gold); }
.nav-auth .btn-primary { background: var(--gold); color: white; padding: .5rem 1.25rem; border-radius: 7px; font-weight: 600; font-size: .875rem; }
.nav-auth .btn-primary:hover { background: var(--gold-dark); }
#userChip { display: flex; align-items: center; gap: .75rem; }
#userLabel { color: rgba(255,255,255,.85); font-size: .875rem; font-weight: 500; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: var(--transition); }

/* ── Hero ── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img-wrap { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,.85) 0%, rgba(13,27,42,.55) 60%, rgba(13,27,42,.3) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 8rem 2rem 4rem; width: 100%; }
.hero-badge { display: inline-block; background: rgba(201,168,76,.2); border: 1px solid rgba(201,168,76,.4); color: var(--gold-light); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(2.8rem, 6vw, 5.2rem); color: var(--white); line-height: 1.1; margin-bottom: 1.25rem; max-width: 700px; }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,.75); max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; align-items: center; gap: 2rem; }
.trust-item { display: flex; flex-direction: column; gap: .2rem; }
.trust-num { font-size: 1.5rem; font-weight: 700; color: var(--white); font-family: 'Playfair Display', serif; }
.trust-label { font-size: .75rem; color: rgba(255,255,255,.6); letter-spacing: .05em; }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* ── Section base ── */
.section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-label { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.75rem); color: var(--text); margin-bottom: 1rem; }

/* ── How it works ── */
.how-section { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3.5rem; }
.step-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 2rem; border: 1px solid var(--border); position: relative; transition: var(--transition); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-num { position: absolute; top: 1.25rem; right: 1.5rem; font-size: 3rem; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--cream-dark); line-height: 1; }
.step-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.step-card h3 { font-size: 1.25rem; color: var(--text); margin-bottom: .75rem; }
.step-card p { font-size: .9rem; }

/* ── Gallery ── */
.gallery-section { background: var(--navy); padding: 0; overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; grid-template-rows: 650px; gap: 3px; }
.gallery-item { position: relative; overflow: hidden; }
.gallery-item.tall { grid-row: span 1; }
.gallery-col { display: grid; grid-template-rows: 1fr 1fr; gap: 3px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption { position: absolute; bottom: 1.5rem; left: 1.5rem; color: white; font-weight: 700; font-size: 1.1rem; font-family: 'Playfair Display', serif; text-shadow: 0 2px 8px rgba(0,0,0,.5); }

/* ── Team ── */
.team-section { background: var(--white); }
.team-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.team-text .section-title { margin-bottom: 1.25rem; }
.team-text p { margin-bottom: 2rem; }
.about-stats { display: flex; gap: 2rem; margin: 1.75rem 0 2rem; }
.about-stat { display: flex; flex-direction: column; gap: .2rem; }
.about-stat-num { font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--gold-dark); line-height: 1; }
.about-stat-label { font-size: .78rem; color: var(--text-muted); font-weight: 500; letter-spacing: .02em; }

.team-photo { position: relative; }
.team-photo img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 480px; box-shadow: var(--shadow-lg); }
.team-badge { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); background: var(--gold); color: white; font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; padding: .6rem 1.5rem; border-radius: 100px; white-space: nowrap; }

/* ── Reviews ── */
.testimonials-section { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border); }
.review-card.featured { background: var(--navy); border-color: var(--navy); }
.review-card.featured p, .review-card.featured .stars { color: rgba(255,255,255,.9); }
.review-card.featured .reviewer strong { color: white; }
.review-card.featured .reviewer small { color: rgba(255,255,255,.55); }
.review-dog-photo { width: 100%; border-radius: 10px; margin-top: 1rem; object-fit: cover; height: 220px; object-position: center; }
.stars { font-size: 1.1rem; color: var(--gold); margin-bottom: 1rem; }
.review-card p { font-size: .92rem; margin-bottom: 1.5rem; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: .75rem; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: white; font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.reviewer strong { font-size: .9rem; display: block; }
.reviewer small { color: var(--text-muted); font-size: .8rem; }

/* ── Footer ── */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; padding-bottom: 3rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-bottom: .75rem; }
.footer-brand p { font-size: .9rem; max-width: 300px; }
.footer-links { display: flex; gap: 3rem; }
.footer-col { display: flex; flex-direction: column; gap: .6rem; }
.footer-col strong { color: rgba(255,255,255,.9); font-size: .875rem; margin-bottom: .25rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 2rem; max-width: 1200px; margin: 0 auto; font-size: .8rem; color: rgba(255,255,255,.35); }

/* ══════════════════════════════════════════════════════════
   BOOKING PAGE
   ══════════════════════════════════════════════════════════ */
.page-shell { max-width: 860px; margin: 0 auto; padding: 7rem 1.5rem 4rem; }
.page-header { margin-bottom: 2.5rem; }
.page-header h1 { font-size: 2.2rem; color: var(--text); margin-bottom: 1.25rem; }
.back-btn { background: none; color: var(--text-muted); font-size: .875rem; font-weight: 500; padding: 0; margin-bottom: .75rem; display: flex; align-items: center; gap: .4rem; }
.back-btn:hover { color: var(--gold); }

.progress-bar { display: flex; gap: 0; }
.progress-step { flex: 1; padding: .6rem .5rem; text-align: center; font-size: .75rem; font-weight: 600; color: var(--text-muted); background: var(--cream); border-bottom: 3px solid var(--border); transition: var(--transition); letter-spacing: .02em; }
.progress-step.active { color: var(--gold-dark); border-bottom-color: var(--gold); background: rgba(201,168,76,.06); }
.progress-step.done { color: var(--success); border-bottom-color: var(--success); }

.booking-step { display: none; animation: fadeUp .3s ease; }
.booking-step.active { display: block; }

.booking-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 2.5rem; box-shadow: var(--shadow-md); }
.booking-card h2 { font-size: 1.6rem; color: var(--text); margin-bottom: 1.75rem; }
.step-desc { color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.7; }

/* Time slots */
.time-slots { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; }
.time-slot { background: var(--cream); border: 1.5px solid var(--border); border-radius: 8px; padding: .65rem .5rem; text-align: center; font-size: .875rem; font-weight: 500; cursor: pointer; transition: var(--transition); }
.time-slot:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(201,168,76,.06); }
.time-slot.selected { background: var(--gold); color: white; border-color: var(--gold); }
.time-slot.taken { background: var(--cream); border-color: var(--border); color: var(--text-muted); cursor: not-allowed; opacity: .55; position: relative; display: flex; flex-direction: column; align-items: center; gap: .15rem; }
.time-slot.taken:hover { border-color: var(--border); color: var(--text-muted); background: var(--cream); }
.slot-booked-label { font-size: .65rem; font-weight: 600; color: #dc2626; text-transform: uppercase; letter-spacing: .04em; }
.slots-empty { grid-column: 1 / -1; text-align: center; padding: 1.25rem; color: var(--text-muted); font-size: .9rem; background: var(--cream); border-radius: 8px; border: 1.5px dashed var(--border); }

/* Tracking choice */
.tracking-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.choice-btn { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.25rem; cursor: pointer; text-align: left; display: flex; flex-direction: column; gap: .4rem; transition: var(--transition); }
.choice-btn:hover { border-color: var(--gold); }
.choice-btn.active { border-color: var(--gold); background: rgba(201,168,76,.06); }
.choice-icon { font-size: 2rem; }
.choice-btn strong { font-size: 1rem; color: var(--text); }
.choice-btn small { font-size: .82rem; color: var(--text-muted); line-height: 1.4; }

/* Confirmation */
.confirmation-card { text-align: center; }
.confirm-checkmark { width: 70px; height: 70px; background: var(--success); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: white; margin: 0 auto 1.5rem; }
.confirm-details { background: var(--cream); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.25rem 0; text-align: left; }
.confirm-detail-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid var(--border); }
.confirm-detail-row:last-child { border-bottom: none; }
.confirm-detail-row span:first-child { color: var(--text-muted); font-size: .875rem; }
.confirm-detail-row span:last-child { font-weight: 600; font-size: .95rem; }

.tracking-code-box { background: var(--navy); border-radius: var(--radius); padding: 1.5rem; margin: 1.5rem 0; }
.tc-label { color: rgba(255,255,255,.6); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .5rem; }
.tc-code { font-size: 2rem; font-weight: 800; color: var(--gold); letter-spacing: .18em; font-family: 'Courier New', monospace; margin-bottom: .5rem; }
.tc-hint { color: rgba(255,255,255,.5); font-size: .8rem; }

.calendar-add { margin: 1.5rem 0; }
.cal-label { font-size: .875rem; color: var(--text-muted); margin-bottom: .75rem; }
.cal-buttons { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.cal-btn { padding: .65rem 1.25rem; border-radius: 8px; font-weight: 600; font-size: .875rem; border: 1.5px solid var(--border); transition: var(--transition); display: inline-block; }
.cal-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.cal-btn.google { border-color: #4285F4; color: #4285F4; }
.cal-btn.google:hover { background: #4285F4; color: white; }
.cal-btn.apple { border-color: var(--text); color: var(--text); }
.cal-btn.apple:hover { background: var(--text); color: white; }

/* ══════════════════════════════════════════════════════════
   TRACKING PAGES
   ══════════════════════════════════════════════════════════ */
.tracking-layout { display: grid; grid-template-columns: 320px 1fr; gap: 1.5rem; height: calc(100vh - 160px); min-height: 500px; }
.tracking-sidebar { display: flex; flex-direction: column; gap: 1rem; overflow-y: auto; }
.track-input-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.track-input-card h3 { font-size: 1.15rem; color: var(--text); margin-bottom: 1rem; }

.map-container { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map { width: 100%; height: 100%; }
.map-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--cream); gap: 1rem; }
.map-placeholder.hidden { display: none; }
.map-ph-icon { font-size: 3.5rem; }
.map-placeholder p { color: var(--text-muted); font-size: .95rem; text-align: center; max-width: 200px; }

.walk-info-card { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.walk-status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--text-muted); }
.walk-status-dot.active { background: var(--success); box-shadow: 0 0 0 4px rgba(34,197,94,.2); animation: pulse 1.5s infinite; }
.walk-status-text { font-weight: 600; font-size: .9rem; }
.walk-meta { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }
.walk-timer { font-size: 2.25rem; font-weight: 700; font-family: 'Courier New', monospace; color: var(--navy); letter-spacing: .05em; }
.walk-distance { font-size: .875rem; color: var(--text-muted); }
.gps-indicator { display: flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 600; color: var(--success); }
.gps-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: pulse 1s infinite; }

.walker-status-chip { padding: .4rem 1rem; border-radius: 100px; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; background: var(--cream); color: var(--text-muted); border: 1.5px solid var(--border); }
.walker-status-chip.walking { background: rgba(34,197,94,.1); color: var(--success); border-color: var(--success); }

.walker-bookings-list { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 1.25rem; }
.walker-bookings-list h4 { font-size: .875rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; letter-spacing: .02em; }
.walker-booking-item { padding: .75rem; border-radius: 8px; background: var(--cream); margin-bottom: .5rem; cursor: pointer; transition: var(--transition); }
.walker-booking-item:hover { background: rgba(201,168,76,.1); }
.walker-booking-item .wbi-code { font-weight: 700; font-size: .85rem; color: var(--gold-dark); font-family: 'Courier New', monospace; }
.walker-booking-item .wbi-details { font-size: .8rem; color: var(--text-muted); margin-top: .2rem; }

/* ══════════════════════════════════════════════════════════
   LOGIN MODAL
   ══════════════════════════════════════════════════════════ */
.modal-backdrop { position: fixed; inset: 0; background: rgba(13,27,42,.7); backdrop-filter: blur(6px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-backdrop.open { display: flex; animation: fadeIn .2s ease; }
.modal-box { background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 420px; padding: 2.5rem; position: relative; box-shadow: var(--shadow-lg); animation: slideUp .3s ease; }
.modal-close { position: absolute; top: 1.25rem; right: 1.25rem; background: var(--cream); border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem; color: var(--text-muted); cursor: pointer; transition: var(--transition); }
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); text-align: center; margin-bottom: 1.5rem; }
.auth-mode-tabs { display: flex; gap: .5rem; background: var(--cream); border-radius: 10px; padding: .25rem; margin-bottom: 1.25rem; }
.auth-mode-btn { flex: 1; padding: .6rem; border-radius: 8px; font-size: .95rem; font-weight: 700; background: none; color: var(--text-muted); transition: var(--transition); cursor: pointer; border: none; }
.auth-mode-btn.active { background: var(--gold); color: var(--white); box-shadow: var(--shadow-sm); }
.auth-switch-hint { text-align: center; font-size: .82rem; color: var(--text-muted); margin-top: .75rem; }
.auth-switch-hint a { color: var(--gold); text-decoration: none; font-weight: 600; }
.modal-tabs { display: flex; gap: .5rem; background: var(--cream); border-radius: 10px; padding: .25rem; margin-bottom: 1.75rem; }
.tab-btn { flex: 1; padding: .6rem; border-radius: 8px; font-size: .875rem; font-weight: 600; background: none; color: var(--text-muted); transition: var(--transition); }
.tab-btn.active { background: var(--white); color: var(--text); box-shadow: var(--shadow-sm); }
.modal-error { color: var(--danger); font-size: .85rem; margin-bottom: .75rem; min-height: 1.2em; text-align: center; }
.modal-hint { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: 1rem; }
/* Route map */
.address-input-wrap { display: flex; gap: .6rem; }
.address-input-wrap .form-input { flex: 1; }
.address-input-wrap .btn-gold { white-space: nowrap; padding: .75rem 1.1rem; }
.pickup-confirm { display: flex; align-items: center; justify-content: space-between; background: rgba(34,197,94,.08); border: 1.5px solid #22C55E; border-radius: 8px; padding: .65rem 1rem; font-size: .875rem; color: var(--text); margin-bottom: .5rem; }

/* Walk type selector */
.walk-type-row { display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; margin-bottom: 1.25rem; }
.walk-type-desc { font-size: .9rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
.walk-type-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-bottom: 1.25rem; }
.walk-type-btn { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1rem .9rem; cursor: pointer; text-align: left; display: flex; flex-direction: column; gap: .35rem; transition: var(--transition); }
.walk-type-btn:hover { border-color: var(--gold); }
.walk-type-btn.active { border-color: var(--gold); background: rgba(201,168,76,.07); }
.wt-icon { font-size: 1.5rem; }
.walk-type-btn strong { font-size: .85rem; color: var(--text); display: block; }
.walk-type-btn small { font-size: .75rem; color: var(--text-muted); line-height: 1.4; }

/* Route legend */
.route-legend { display: flex; align-items: center; gap: 1rem; font-size: .8rem; color: var(--text-muted); margin-bottom: .6rem; flex-wrap: wrap; }
.legend-item { display: flex; align-items: center; gap: .35rem; }
.legend-dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.legend-dot.home { background: #22C55E; }
.legend-dot.end  { background: #EF4444; }

/* Stops panel */
.stops-panel { background: var(--cream); border-radius: var(--radius); padding: 1rem 1.1rem; margin-top: .75rem; }
.stops-panel-title { font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .75rem; }
.stops-list { display: flex; flex-direction: column; gap: .5rem; }
.stop-item { display: flex; align-items: center; gap: .6rem; background: white; border-radius: 8px; padding: .6rem .8rem; border: 1px solid var(--border); flex-wrap: wrap; }
.stop-emoji { font-size: 1.1rem; }
.stop-name { font-size: .85rem; font-weight: 600; color: var(--text); flex: 1; min-width: 80px; }
.stop-dur { font-size: .78rem; color: var(--text-muted); white-space: nowrap; }
.stop-dur-btns { display: flex; gap: 3px; }
.stop-dur-btn { padding: 2px 7px; border: 1.5px solid var(--border); border-radius: 5px; font-size: .75rem; font-weight: 600; cursor: pointer; background: white; transition: var(--transition); }
.stop-dur-btn.active { background: var(--gold); color: white; border-color: var(--gold); }
.stop-dur-btn:hover:not(.active) { border-color: var(--gold); }
.stop-remove { background: none; border: none; color: var(--text-muted); font-size: .9rem; cursor: pointer; padding: 2px 4px; border-radius: 4px; }
.stop-remove:hover { color: var(--danger); background: rgba(239,68,68,.08); }

.route-map { width: 100%; height: 340px; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); cursor: crosshair; }
.route-instructions { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-muted); margin-bottom: .75rem; flex-wrap: wrap; }
.route-step-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.route-step-dot.green { background: #22C55E; }
.route-step-dot.red   { background: var(--danger); }
.route-info { margin-top: 1rem; }

.route-time-summary { background: var(--cream); border-radius: var(--radius); padding: .9rem 1.1rem; font-size: .9rem; color: var(--text-muted); display: flex; gap: 1.5rem; margin-bottom: .75rem; }
.route-time-summary strong { color: var(--text); }

.route-suggestion-box { border-radius: var(--radius); padding: 1.25rem; border: 1.5px solid var(--border); margin-bottom: .75rem; }
.route-suggestion-box.warning { border-color: #F59E0B; background: #FFFBEB; }
.suggestion-title { font-size: .95rem; font-weight: 600; color: var(--text); margin-bottom: 1rem; line-height: 1.5; }
.route-suggestion-box.warning .suggestion-title { color: #92400E; }

.suggestion-options { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: .75rem; }
.suggestion-btn { background: var(--white); border: 1.5px solid var(--border); border-radius: 8px; padding: .6rem 1rem; font-size: .85rem; font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: .4rem; transition: var(--transition); color: var(--text); }
.suggestion-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.suggestion-btn.active { border-color: var(--gold); background: rgba(201,168,76,.08); color: var(--gold-dark); font-weight: 600; }

.suggestion-detail { margin-top: .75rem; }
.suggestion-detail label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; }

.extend-options { display: flex; gap: .5rem; margin-top: .4rem; }
.extend-btn { background: var(--cream); border: 1.5px solid var(--border); border-radius: 7px; padding: .5rem 1rem; font-size: .85rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.extend-btn.active { background: var(--gold); color: white; border-color: var(--gold); }
.extend-btn:hover:not(.active) { border-color: var(--gold); }

#googleSignInWrap { display: flex; flex-direction: column; align-items: center; gap: .75rem; margin-bottom: 1.25rem; }
.auth-divider { width: 100%; display: flex; align-items: center; gap: .75rem; color: var(--text-muted); font-size: .78rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.demo-accounts { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.demo-label { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .6rem; }
.demo-row { font-size: .78rem; color: var(--text-muted); margin-bottom: .3rem; }
.demo-row code { background: var(--cream); padding: .1rem .35rem; border-radius: 4px; font-size: .78rem; color: var(--navy); }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════════════════ */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-col { grid-template-rows: 220px 220px; }
  .team-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .tracking-layout { grid-template-columns: 1fr; height: auto; }
  .map-container { height: 380px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy); padding: 1.5rem; gap: 1rem; border-bottom: 1px solid rgba(255,255,255,.08); z-index: 999; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-cta { flex-direction: column; }
  .hero-trust { flex-wrap: wrap; gap: 1rem; }
  .tracking-choice { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .gallery-item.tall, .gallery-item { height: 220px; }
  .gallery-col { grid-template-rows: 220px 220px; }
}
