/* ============================================
   Tots Taxi marketing site - styles.css
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f0f8ff;
  color: #1e3a8a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  font-size: 0.95rem;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 1.05rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.btn-primary { background: #1e3a8a; color: white; }
.btn-primary:hover { background: #1e40af; }
.btn-pink { background: #ec4899; color: white; }
.btn-pink:hover { background: #db2777; }
.btn-yellow { background: #facc15; color: #1e3a8a; }
.btn-yellow:hover { background: #fde047; }
.btn-white { background: white; color: #1e3a8a; }
.btn-white:hover { background: #f0f9ff; }

/* ============================================
   TOP NAV
   ============================================ */
.topnav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.nav-logo img { height: 50px; width: auto; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #1e3a8a;
  font-size: 0.95rem;
}
.nav-phone:hover { color: #1e40af; }
@media (min-width: 640px) {
  .nav-phone { display: inline-flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  min-height: 600px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(186, 230, 253, 0.3) 0%, rgba(240, 248, 255, 0.1) 60%, rgba(240, 248, 255, 0.95) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 1fr; }
}
.hero-kids {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
}
.hero-content { text-align: center; }
@media (min-width: 900px) {
  .hero-content { text-align: left; }
  .hero-kids { order: 2; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #facc15;
  color: #1e3a8a;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.75rem);
  color: #1e3a8a;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-highlight { color: #ec4899; }
.hero-sub {
  font-size: 1.1rem;
  color: #1e40af;
  margin-bottom: 28px;
  max-width: 540px;
}
@media (min-width: 900px) {
  .hero-sub { margin-left: 0; margin-right: 0; }
}
@media (max-width: 899px) {
  .hero-sub { margin-left: auto; margin-right: auto; }
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 900px) {
  .hero-actions { justify-content: flex-start; }
}

/* ============================================
   TRUST BAND
   ============================================ */
.trust-band {
  background: linear-gradient(90deg, #1e3a8a 0%, #1e40af 50%, #1e3a8a 100%);
  color: white;
  padding: 40px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
@media (min-width: 700px) {
  .trust-inner { flex-direction: row; text-align: left; }
}
.trust-shield {
  width: 100px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(250, 204, 21, 0.4));
}
.trust-text h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  color: #facc15;
  margin-bottom: 4px;
}
.trust-text p { color: #dbeafe; font-size: 1rem; }

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 70px 0;
}
.section-light { background: #f0f9ff; }
.section-white { background: white; }
.section-sky { background: linear-gradient(180deg, #e0f2fe 0%, #fce7f3 100%); }

.section-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: #1e40af;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: white; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
.service-card {
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.service-card-yellow { background: linear-gradient(135deg, #fef9c3 0%, #fef3c7 100%); }
.service-card-pink   { background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%); }
.service-card-teal   { background: linear-gradient(135deg, #ccfbf1 0%, #a7f3d0 100%); }
.service-img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  margin: 0 auto 16px;
}
.service-emoji {
  font-size: 5rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #1e3a8a;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: #1e40af;
}

/* ============================================
   ACTION FOR CHILDREN
   ============================================ */
.afc-card {
  background: linear-gradient(90deg, #ccfbf1, #dbeafe, #fce7f3);
  border: 3px solid #2dd4bf;
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 4px 25px rgba(45, 212, 191, 0.15);
}
@media (min-width: 700px) {
  .afc-card { flex-direction: row; text-align: left; }
}
.afc-img {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  object-fit: contain;
}
.afc-text h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #134e4a;
  margin-bottom: 6px;
}
.afc-text p { color: #115e59; font-size: 1rem; }

/* ============================================
   SCHOOLS
   ============================================ */
.schools { background: #f0f9ff; }
.schools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .schools-grid { grid-template-columns: 1fr 1fr; }
}
.school-pill {
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  font-weight: 700;
  color: #1e3a8a;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.schools-note {
  text-align: center;
  margin-top: 30px;
  color: #475569;
  font-size: 0.95rem;
}
.schools-note a { color: #1e40af; font-weight: 700; text-decoration: underline; }

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
.pricing-card {
  border-radius: 28px;
  padding: 30px;
  border: 3px solid;
  position: relative;
}
.pricing-oneway {
  background: linear-gradient(135deg, #fef9c3, #fce7f3);
  border-color: #facc15;
}
.pricing-roundtrip {
  background: linear-gradient(135deg, #fce7f3, #dbeafe);
  border-color: #ec4899;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: #ec4899;
  color: white;
  font-weight: 700;
  font-size: 0.7rem;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}
.pricing-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1e40af;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.pricing-amount {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #1e3a8a;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period {
  color: #1e40af;
  margin-bottom: 14px;
}
.pricing-addon {
  font-size: 0.85rem;
  color: #475569;
}
.pricing-note {
  text-align: center;
  margin-top: 30px;
  color: #115e59;
  font-size: 0.95rem;
}

/* ============================================
   VAN FEATURE
   ============================================ */
.van-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 800px) {
  .van-feature { grid-template-columns: 1.2fr 1fr; }
}
.van-img {
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
  width: 100%;
}
.van-text h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #1e3a8a;
  margin-bottom: 12px;
}
.van-text p {
  color: #1e40af;
  font-size: 1.1rem;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #312e81 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.cta h2 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 14px;
}
.cta p {
  color: #dbeafe;
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   INQUIRY FORM
   ============================================ */
.form-section {
  background: linear-gradient(180deg, #fef3c7 0%, #fce7f3 100%);
}
.inquiry-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  border-radius: 28px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
@media (min-width: 600px) {
  .inquiry-form { padding: 50px; }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-weight: 700;
  color: #1e3a8a;
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.req {
  color: #ec4899;
  font-weight: 700;
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #f8fafc;
  color: #1e3a8a;
  transition: border-color 0.15s, background 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #1e40af;
  background: white;
}
.form-field textarea {
  resize: vertical;
  font-family: inherit;
}
.radio-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.radio-stack {
  flex-direction: column;
  gap: 10px;
}
.radio-label {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  cursor: pointer;
  margin-bottom: 0 !important;
}
.radio-label input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #1e40af;
  cursor: pointer;
}
.form-error {
  background: #fee2e2;
  border: 2px solid #fecaca;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.budget-hint {
  background: #fef3c7;
  border: 2px solid #fde68a;
  color: #78350f;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
/* AFC banner inside form */
.afc-banner {
  background: linear-gradient(90deg, #ccfbf1, #dbeafe);
  border: 2px solid #2dd4bf;
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #134e4a;
  line-height: 1.5;
}
.afc-banner-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
/* Live price estimate card */
.price-estimate {
  background: linear-gradient(135deg, #fef9c3 0%, #fce7f3 100%);
  border: 3px solid #facc15;
  border-radius: 20px;
  padding: 24px;
  margin: 24px 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(250, 204, 21, 0.2);
}
.price-estimate-afc {
  background: linear-gradient(135deg, #ccfbf1 0%, #dbeafe 100%);
  border-color: #2dd4bf;
  box-shadow: 0 4px 20px rgba(45, 212, 191, 0.2);
}
.price-estimate-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e3a8a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.price-estimate-amount {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #1e3a8a;
  line-height: 1;
  margin-bottom: 4px;
}
.price-estimate-detail {
  font-size: 1rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 12px;
}
.price-estimate-note {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto;
}
/* Proceed radios with hover highlights */
.proceed-yes:hover { background: #dcfce7; }
.proceed-think:hover { background: #fef9c3; }
.proceed-questions:hover { background: #dbeafe; }
.proceed-yes, .proceed-think, .proceed-questions {
  padding: 10px 14px !important;
  border-radius: 10px !important;
  border: 2px solid transparent !important;
  transition: background 0.15s, border-color 0.15s;
}
.proceed-yes:has(input:checked) {
  background: #dcfce7 !important;
  border-color: #16a34a !important;
}
.proceed-think:has(input:checked) {
  background: #fef9c3 !important;
  border-color: #ca8a04 !important;
}
.proceed-questions:has(input:checked) {
  background: #dbeafe !important;
  border-color: #1e40af !important;
}
/* AFC pricing card */
.afc-pricing-card {
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, #ccfbf1 0%, #dbeafe 50%, #fce7f3 100%);
  border: 3px solid #2dd4bf;
  border-radius: 28px;
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 4px 25px rgba(45, 212, 191, 0.15);
}
@media (min-width: 700px) {
  .afc-pricing-card { flex-direction: row; text-align: left; }
}
.afc-pricing-icon {
  font-size: 3.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.afc-pricing-text { flex: 1; }
.afc-pricing-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #115e59;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.afc-pricing-text h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #134e4a;
  margin-bottom: 10px;
}
.afc-pricing-text p {
  color: #115e59;
  font-size: 1rem;
  margin-bottom: 14px;
}
.afc-pricing-btn {
  background: #134e4a !important;
}
.afc-pricing-btn:hover {
  background: #115e59 !important;
}
.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 10px;
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 14px;
}
/* Honeypot — hidden from humans, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
/* Success state */
.form-success {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border: 3px solid #10b981;
  border-radius: 28px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #10b981;
  color: white;
  font-size: 3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}
.form-success h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 10px;
}
.form-success p {
  color: #475569;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.success-sub {
  color: #64748b !important;
  font-size: 0.95rem !important;
}
.success-sub a {
  color: #1e40af;
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
  background: #1e3a8a;
  color: #dbeafe;
  padding: 40px 0 30px;
  text-align: center;
}
.footer-logo {
  height: 60px;
  width: auto;
  margin: 0 auto 12px;
}
.footer-tagline {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  color: #facc15;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.footer-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.footer-row a:hover { color: white; }
.footer-copy {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 14px;
}
