/* ==========================================================
   BITE ON TIME — STYLESHEET
   Colour system taken from the Bite On Time logo & flyer:
   Navy = brand authority, Red = speed/urgency, White/Grey = clarity
   ========================================================== */

:root {
  --navy: #001A43;
  --navy-soft: #0B2559;
  --red: #DB0413;
  --red-dark: #B0030F;
  --white: #FFFFFF;
  --grey-light: #F4F5F7;
  --grey-mid: #C9CFDA;
  --text-body: #33394A;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-soft: 0 12px 30px rgba(0, 26, 67, 0.08);
  --shadow-hover: 0 18px 40px rgba(0, 26, 67, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; }

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }

.alt-bg { background: var(--grey-light); }

.center { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-eyebrow.light { color: #FFB3B8; }

.section-eyebrow.center { display: block; }

.section h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 40px; }
.section h2.center { margin-bottom: 46px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(219, 4, 19, 0.3);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(219,4,19,0.38); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-3px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); transform: translateY(-3px); }

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-link { flex-shrink: 0; }
.logo-img { height: 56px; width: auto; }

.main-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 6px 2px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--red);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-cta { flex-shrink: 0; padding: 12px 24px; font-size: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
}
.hamburger span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  background: linear-gradient(160deg, #FFFFFF 0%, #F4F5F7 60%, #FDECED 100%);
  padding: 70px 0 60px;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-buttons.center { justify-content: center; }

.hero-benefits {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.hero-benefits .tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  margin-right: 6px;
}

.hero-graphic { display: flex; justify-content: center; }
.hero-svg { width: 100%; max-width: 460px; height: auto; }

.speed-lines rect { animation: dash-move 1.6s ease-in-out infinite; }
.speed-lines rect:nth-child(2) { animation-delay: 0.15s; }
.speed-lines rect:nth-child(3) { animation-delay: 0.3s; }
@keyframes dash-move {
  0%   { transform: translateX(0); opacity: 1; }
  50%  { transform: translateX(14px); opacity: 0.4; }
  100% { transform: translateX(0); opacity: 1; }
}

/* ==========================================================
   ABOUT
   ========================================================== */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text p { margin-bottom: 16px; max-width: 520px; }

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.about-chips span {
  background: var(--grey-light);
  border: 1px solid var(--grey-mid);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
}

.about-svg { width: 100%; max-width: 380px; margin: 0 auto; }

/* ==========================================================
   CARD GRIDS (Services / Who We Help)
   ========================================================== */
.card-grid {
  display: grid;
  gap: 28px;
}
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.six { grid-template-columns: repeat(3, 1fr); }
.card-grid.eight { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid #ECEEF2;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { font-size: 0.94rem; }
.card-note {
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
}

.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; }
.icon-navy { background: rgba(0,26,67,0.08); color: var(--navy); }
.icon-red { background: rgba(219,4,19,0.1); color: var(--red); }

/* Why choose us — icon-first benefit blocks */
.benefit {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.benefit:hover { transform: translateY(-4px); }
.benefit-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit p { font-weight: 600; color: var(--navy); font-size: 0.96rem; }

/* Who we help */
.who-card {
  text-align: center;
  background: var(--white);
  border: 1px solid #ECEEF2;
  border-radius: var(--radius-md);
  padding: 26px 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease;
}
.who-card:hover { transform: translateY(-5px); }
.who-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.who-card p { font-weight: 600; font-size: 0.9rem; color: var(--navy); }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--grey-mid) 0 10px, transparent 10px 18px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-number {
  width: 54px; height: 54px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(219,4,19,0.35);
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; max-width: 230px; margin: 0 auto; }

/* ==========================================================
   PRICING
   ========================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 780px;
  margin: 0 auto 30px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--grey-mid);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.price-card.highlight {
  border-color: var(--red);
  background: linear-gradient(160deg, #FFFFFF 0%, #FFF3F3 100%);
  transform: scale(1.03);
}
.price-tag {
  display: inline-block;
  font-weight: 700;
  color: var(--navy);
  background: var(--grey-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.price-card.highlight .price-tag { background: var(--red); color: var(--white); }
.price-amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 20px;
}
.price-amount span { font-size: 1rem; font-weight: 600; color: var(--text-body); }
.price-features { text-align: left; display: inline-block; }
.price-features li {
  font-size: 0.92rem;
  padding: 6px 0;
  padding-left: 26px;
  position: relative;
}
.price-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.pricing-notes {
  text-align: center;
  font-size: 0.85rem;
  color: #6B7280;
  max-width: 640px;
  margin: 0 auto 30px;
}

/* ==========================================================
   COVERAGE
   ========================================================== */
.coverage {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
}
.coverage-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.coverage h2 { color: var(--white); }
.coverage p { margin-bottom: 30px; color: #DCE3F0; font-size: 1.02rem; }

/* ==========================================================
   BOOKING FORM
   ========================================================== */
.booking-sub { max-width: 560px; margin: 0 auto 40px; }

.booking-form {
  max-width: 860px;
  margin: 0 auto;
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 26px;
}
.form-field.full-width { grid-column: 1 / -1; }

.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--grey-mid);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(219,4,19,0.15);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 26px;
  font-weight: 500;
  color: var(--navy);
}
.consent input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--red); }

/* Honeypot field: kept in the DOM for spam bots but hidden from
   real visitors and screen readers won't announce it as it carries
   no visible label context. */
.honeypot-field { position: absolute; left: -9999px; top: -9999px; }

.btn-submit { width: 100%; font-size: 1.05rem; }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-message {
  margin-top: 18px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  min-height: 24px;
}
.form-message.success {
  background: rgba(0,168,89,0.1);
  color: #007A3D;
  padding: 14px;
  border-radius: 10px;
}
.form-message.error {
  background: rgba(219,4,19,0.08);
  color: var(--red);
  padding: 14px;
  border-radius: 10px;
}

/* ==========================================================
   FAQ ACCORDION
   ========================================================== */
.accordion { max-width: 820px; margin: 0 auto; }

.accordion-item {
  background: var(--white);
  border: 1px solid #ECEEF2;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-trigger::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--red);
  font-weight: 700;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-trigger[aria-expanded="true"]::after { transform: rotate(45deg); }

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.accordion-panel p { padding-bottom: 20px; font-size: 0.94rem; }

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta {
  background: linear-gradient(120deg, var(--navy) 0%, #0B2559 55%, var(--red-dark) 140%);
  padding: 80px 0;
}
.final-cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.final-cta p { color: #E8ECF5; margin-bottom: 32px; font-size: 1.05rem; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer { background: #071026; color: #C9CFDA; padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { height: 92px; background: var(--white); border-radius: 14px; padding: 8px; margin-bottom: 16px; }
.footer-tagline { font-style: italic; color: #8B93A7; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-col p { margin-bottom: 10px; font-size: 0.92rem; }
.contact-label { color: #6B7488; font-size: 0.82rem; }
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  text-align: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: #6B7488;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-graphic { order: -1; max-width: 360px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; }
  .about-graphic { order: -1; }
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .card-grid.six { grid-template-columns: repeat(2, 1fr); }
  .card-grid.eight { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .main-nav.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    gap: 18px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  .main-nav.mobile-open a { padding: 8px 0; }

  .header-inner { position: relative; }

  .section { padding: 60px 0; }
  .card-grid.four,
  .card-grid.six,
  .card-grid.eight { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.highlight { transform: none; }
  .form-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-benefits { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
  .card-grid.four,
  .card-grid.six,
  .card-grid.eight { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Accessible focus states */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
