/* ============================================================
   Sports Sitters NJ — Global Stylesheet
   ============================================================ */

:root {
  --navy:         #0a2d5a;
  --navy-dark:    #060f1f;
  --orange:       #ff6b35;
  --orange-lt:    #ff8c5a;
  --lavender:     #9b7fd4;
  --lavender-lt:  #ede8f8;
  --brown:        #8b5e3c;
  --light:        #f7f5ff;
  --white:        #ffffff;
  --gray:         #6c757d;
  --gray-lt:      #e9ecef;
  --dark:         #111111;
  --shadow:       0 4px 24px rgba(10,45,90,.12);
  --shadow-lg:    0 8px 40px rgba(10,45,90,.18);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   .25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1.05rem; color: var(--gray); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .5rem;
}

.section-title {
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 560px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: min(1160px, 92vw);
  margin-inline: auto;
}

section { padding: 5rem 0; }

.text-center { text-align: center; }
.text-navy   { color: var(--navy); }
.text-orange { color: var(--orange); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255,107,53,.4);
}
.btn-primary:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,.5);
}

.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.1rem; }
.btn-sm { padding: .6rem 1.4rem; font-size: .9rem; }

/* ── Navigation ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: .7rem 0;
}

.navbar.scrolled .nav-link { color: var(--navy); }
.navbar.scrolled .logo-text { color: var(--navy); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: .02em;
  white-space: nowrap;
}

.logo-text span { color: var(--orange); }
.navbar.scrolled .logo-text span { color: var(--orange); }

.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-evenly;
  margin-left: .75rem;
}

.nav-link {
  padding: .4rem .5rem;
  color: rgba(255,255,255,.9);
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition);
  font-size: .8rem;
  white-space: nowrap;
  text-align: center;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: rgba(255,107,53,.1);
}

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--orange-lt) !important;
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .hamburger span { background: var(--navy); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1a3070 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/logo.png') center/40% no-repeat;
  opacity: .08;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.hero-particles::before { background: rgba(255,107,53,.13); }
.hero-particles::after  { background: rgba(155,127,212,.13); }

.hero-particles::before {
  width: 600px; height: 600px;
  right: -200px; top: -200px;
  animation: pulse 8s ease-in-out infinite;
}

.hero-particles::after {
  width: 400px; height: 400px;
  left: -150px; bottom: -150px;
  animation: pulse 6s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .12; }
  50% { transform: scale(1.2); opacity: .2; }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-text h1 span { color: var(--orange); }
.hero-text p { color: rgba(255,255,255,.75); font-size: 1.15rem; margin-bottom: 2rem; max-width: 500px; }

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
  padding: 1.2rem;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}

.stat-number { font-size: 2rem; font-weight: 800; color: var(--orange); display: block; }
.stat-label  { font-size: .8rem; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .06em; }

.hero-image-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 520px;
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

.badge-icon { font-size: 2rem; }
.badge-text strong { display: block; font-size: 1rem; color: var(--navy); }
.badge-text span   { font-size: .8rem; color: var(--gray); }

/* ── Trust Bar ──────────────────────────────────────────── */
.trust-bar {
  background: var(--light);
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-lt);
}

.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
}

.trust-item i { color: var(--orange); font-size: 1.3rem; }

/* ── About Section ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}

.about-text p { margin-bottom: 1.5rem; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
}

.feature-item i { color: var(--lavender); font-size: 1.1rem; }

/* ── Services ───────────────────────────────────────────── */
.services { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,107,53,.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card h3 { color: var(--navy); margin-bottom: .6rem; }
.service-card p  { flex: 1; margin-bottom: 1.25rem; }

/* ── How It Works ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--lavender));
  opacity: .2;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  box-shadow: 0 6px 20px rgba(255,107,53,.35);
  position: relative;
  z-index: 1;
}

.step h3 { color: var(--navy); margin-bottom: .5rem; }

/* ── Pricing ────────────────────────────────────────────── */
.pricing { background: var(--navy); }
.pricing .section-title { color: var(--white); }
.pricing .section-label { color: var(--orange); }
.pricing .section-subtitle { color: rgba(255,255,255,.65); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-4px);
}

.pricing-card.featured {
  background: var(--white);
  border-color: var(--orange);
  transform: scale(1.04);
  box-shadow: 0 12px 50px rgba(255,107,53,.3);
}

.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: 1.2rem;
  right: -1.5rem;
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem 2.5rem;
  transform: rotate(35deg);
  letter-spacing: .08em;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: .5rem;
}

.pricing-card.featured .plan-name { color: var(--orange); }

.plan-price {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin: 1rem 0 .25rem;
}

.pricing-card.featured .plan-price { color: var(--navy); }

.plan-price sup { font-size: 1.4rem; font-weight: 700; vertical-align: super; line-height: 0; }
.plan-price sub { font-size: .9rem; font-weight: 400; color: var(--gray); }
.pricing-card.featured .plan-price sub { color: var(--gray); }

.plan-desc {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin-bottom: 2rem;
}

.pricing-card.featured .plan-desc { color: var(--gray); }

.plan-features {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
}

.pricing-card.featured .plan-features li { color: var(--dark); }
.plan-features li i { color: var(--lavender); font-size: 1rem; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  color: var(--orange);
  opacity: .15;
  font-family: serif;
  line-height: 1;
}

.stars { color: #f5c518; margin-bottom: 1rem; font-size: 1.1rem; }

.testimonial-card p { color: var(--dark); font-style: italic; margin-bottom: 1.5rem; }

.reviewer {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gray-lt);
}

.reviewer-info strong { display: block; color: var(--navy); font-size: .95rem; }
.reviewer-info span   { font-size: .82rem; color: var(--gray); }

/* ── Gallery ────────────────────────────────────────────── */
.gallery { background: var(--light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* ── Booking Form ───────────────────────────────────────── */
.booking-section { background: var(--light); }

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-card h2 { color: var(--navy); margin-bottom: .5rem; font-size: 1.8rem; }
.form-card > p { margin-bottom: 2rem; }

.form-group {
  margin-bottom: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: .4rem;
}

input, select, textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,53,.1);
}

textarea { resize: vertical; min-height: 100px; }

.form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  padding: 1rem 0 .5rem;
  border-top: 1px solid var(--gray-lt);
  margin-top: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.card-icons { display: flex; gap: .5rem; margin-top: .5rem; }
.card-icon {
  background: var(--gray-lt);
  border-radius: 4px;
  padding: .2rem .5rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray);
}

.card-icon.visa   { background: #1a1f71; color: white; }
.card-icon.mc     { background: #eb001b; color: white; }
.card-icon.amex   { background: #2e77bc; color: white; }

.payment-secure {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  color: var(--gray);
  margin-top: .75rem;
}

.payment-secure i { color: var(--lavender); }

.booking-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.sidebar-card h3 { color: var(--navy); margin-bottom: 1rem; font-size: 1.2rem; }

.price-summary { display: flex; flex-direction: column; gap: .75rem; }

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
}

.price-line.total {
  border-top: 2px solid var(--navy);
  padding-top: .75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.notify-options {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.notify-toggle {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .9rem 1rem;
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  font-size: .95rem;
  color: var(--navy);
  user-select: none;
}

.notify-toggle.active {
  border-color: var(--orange);
  background: rgba(255,107,53,.05);
}

.notify-toggle i { color: var(--orange); font-size: 1.2rem; }

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 36px;
  height: 20px;
  margin-left: auto;
  flex-shrink: 0;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-lt);
  border-radius: 20px;
  transition: var(--transition);
  cursor: pointer;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider { background: var(--orange); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(16px); }

/* ── Contact ────────────────────────────────────────────── */
.contact-section { background: var(--light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { color: var(--navy); margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--navy);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item strong { display: block; color: var(--navy); margin-bottom: .2rem; }
.contact-item span   { color: var(--gray); font-size: .95rem; }

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p { margin-top: 1rem; color: rgba(255,255,255,.55); line-height: 1.8; }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }

.footer-col a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: var(--transition);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { color: rgba(255,255,255,.4); font-size: .85rem; }

/* ── Notification Toast ─────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--lavender);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: .75rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all .4s cubic-bezier(.34, 1.56, .64, 1);
}

.toast.show { transform: translateY(0); opacity: 1; }
.toast i { font-size: 1.3rem; }

/* ── Modal ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,28,58,.7);
  backdrop-filter: blur(4px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  max-width: 500px;
  width: 92vw;
  text-align: center;
  transform: scale(.9);
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}

.modal-overlay.open .modal { transform: scale(1); }

.modal-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--lavender), #7b5cb8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  margin: 0 auto 1.5rem;
}

.modal h2 { color: var(--navy); margin-bottom: .75rem; }
.modal p  { margin-bottom: 2rem; }

/* ── Floating Book Button ───────────────────────────────── */
.float-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Page Hero ──────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=1200&q=80') center/cover no-repeat;
  opacity: .12;
}

.page-hero h1 { color: var(--white); position: relative; margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.7); position: relative; font-size: 1.1rem; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
  position: relative;
}

.breadcrumb a { color: var(--orange); }

/* ── Team Cards ─────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 { color: var(--navy); margin-bottom: .2rem; font-size: 1.1rem; }
.team-info span { color: var(--orange); font-size: .85rem; font-weight: 600; }
.team-info p { margin-top: .6rem; font-size: .9rem; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { background: var(--light); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
}

.faq-q i {
  color: var(--orange);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-q i { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 1.5rem 1.3rem;
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.7;
}

.faq-item.open .faq-a { display: block; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--navy-dark);
    padding: 6rem 2rem 2rem;
    z-index: 999;
    gap: .5rem;
    align-items: flex-start;
  }
  .nav-link { color: var(--white) !important; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .steps::before { display: none; }
  section { padding: 3.5rem 0; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}

/* ── Service type selectors ─────────────────────────────── */
.service-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.4rem;
}

.service-option {
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius-sm);
  padding: 1rem .75rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray);
}

.service-option i { display: block; font-size: 1.5rem; margin-bottom: .4rem; color: var(--gray); }

.service-option.selected,
.service-option:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,53,.05);
}

.service-option.selected i,
.service-option:hover i { color: var(--orange); }

/* ── Sport & gender selectors ───────────────────────────── */
.sport-options-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .6rem;
  margin-bottom: 1.4rem;
}

.sport-option {
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius-sm);
  padding: .85rem .4rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}

.sport-option span:first-child { font-size: 1.5rem; }

.sport-option.selected,
.sport-option:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,53,.05);
}

.gender-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: .25rem;
}

.gender-option {
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius-sm);
  padding: .9rem .5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray);
}

.gender-option.selected,
.gender-option:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(10,45,90,.05);
}

@media (max-width: 480px) {
  .sport-options-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Child counter ──────────────────────────────────────── */
.counter-input {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.counter-btn {
  width: 44px;
  height: 44px;
  background: var(--light);
  border: none;
  font-size: 1.3rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.counter-btn:hover { background: var(--orange); color: white; }

.counter-value {
  flex: 1;
  text-align: center;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  background: white;
}

/* ── Topic chips (contact form) ─────────────────────────── */
.topic-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border: 2px solid var(--gray-lt);
  border-radius: var(--radius-sm);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.topic-chip i { color: var(--gray); transition: var(--transition); }

.topic-chip.selected,
.topic-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,53,.06);
}

.topic-chip.selected i,
.topic-chip:hover i { color: var(--orange); }

/* ── Age badges ─────────────────────────────────────────── */
.age-options {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.age-badge {
  padding: .4rem .9rem;
  border: 2px solid var(--gray-lt);
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
}

.age-badge.selected,
.age-badge:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,53,.07);
}
