/* ============================================================
   AGATOB'S LAUNDRY — MAIN STYLESHEET
   Desktop first approach, mobile breakpoints at bottom
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Poppins:wght@300;400;500;600&display=swap');

/* ============================================================
   2. CSS VARIABLES (Design Tokens)
   ============================================================ */
:root {
  /* Colors */
  --color-navy:        #1C4F8C;
  --color-navy-dark:   #163f70;
  --color-pink:        #F4A7B9;
  --color-pink-light:  #FAD4DE;
  --color-pink-hover:  #EF92A8;
  --color-cream:       #FDF6F0;
  --color-white:       #FFFFFF;
  --color-text-dark:   #2B2B2B;
  --color-text-mid:    #555555;
  --color-text-light:  #888888;
  --color-border:      #E8D5D5;

  /* Typography */
  --font-heading: 'Nunito', sans-serif;
  --font-body:    'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 60px 40px;
  --card-radius:     16px;
  --btn-radius:      12px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);

  --shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md:  0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg:  0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-btn: 0 4px 12px rgba(28, 79, 140, 0.25);
}

/* ============================================================
   3. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-text-dark);
  line-height: 1.6;
  font-size: 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ============================================================
   4. REUSABLE COMPONENTS
   ============================================================ */

/* Primary Button */
.btn-primary {
  display: inline-block;
  background-color: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--btn-radius);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background-color: var(--color-navy-dark);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Section headings */
.section-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

/* ============================================================
   5. NAVBAR
   ============================================================ */
#main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #AACDDC;
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Track Order button — mobile only */
.btn-track-mobile {
  display: none; /* hidden on desktop */
}

/* Logo */
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-navy);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #3B7597;
  background-color: #D9F3FF;
  padding: 8px 16px;
  border-radius: var(--btn-radius);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links li a:hover {
  background-color: #C2E0EC;
  color: #1C4F8C;
}

/* Active nav link */
.nav-links li a.active {
  background-color: var(--color-navy);
  color: var(--color-white);
}

/* Book Now button in nav */
.nav-links li a.btn-book {
  background-color: var(--color-navy);
  color: var(--color-white);
  font-weight: 600;
}

.nav-links li a.btn-book:hover {
  background-color: var(--color-navy-dark);
}

/* Mobile hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark overlay on hero image */
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.60) 0%,
    rgba(0, 0, 0, 0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 40px;
  max-width: 520px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content h1 span {
  font-style: italic;
}

.hero-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: 28px;
  max-width: 360px;
  line-height: 1.7;
}

/* ============================================================
   7. OUR SERVICES SECTION
   ============================================================ */
#services {
  padding: var(--section-padding);
  background-color: var(--color-cream);
  max-width: 1200px;
  margin: 0 auto;
}

#services h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
  display: inline-block;
}

/* Services Grid — 3 columns */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

/* Service Card */
.service-card {
  background-color: var(--color-pink);
  border-radius: var(--card-radius);
  padding: 28px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Icon circle */
.service-icon {
  width: 72px;
  height: 72px;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.service-price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-mid);
}

/* ============================================================
   8. FOOTER
   ============================================================ */
#main-footer {
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 48px 40px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 32px;
}

.footer-brand h4,
.footer-hours h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-white);
}

.footer-brand address,
.footer-hours ul,
.footer-contact ul {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.9;
}

.footer-contact ul li a {
  color: rgba(255, 255, 255, 0.80);
  transition: color 0.2s ease;
}

.footer-contact ul li a:hover {
  color: var(--color-white);
}

/* Footer phone icon dot */
.footer-contact ul li:first-child::before {
  content: '📞 ';
}

.footer-contact ul li:last-child::before {
  content: '● ';
  color: var(--color-pink);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.60);
}

/* ============================================================
   9. RESPONSIVE — TABLET (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Hide desktop nav links on tablet/mobile */
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  /* Navbar — show only logo and Track Order on mobile */
  .navbar {
    padding: 10px 16px;
    justify-content: space-between;
  }

  .nav-logo span {
    font-size: 15px;
  }

  .nav-logo img {
    width: 32px;
    height: 32px;
  }

@media (max-width: 768px) {
  .btn-track-mobile {
    display: inline-block;
    background-color: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--btn-radius);
    text-decoration: none;
    transition: background-color 0.2s ease;
  }

  .btn-track-mobile:hover {
    background-color: var(--color-navy-dark);
  }
}

  /* Hero */
  .hero-content {
    padding: 40px 16px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 13px;
  }

  /* Services — 2 columns on mobile (matches mockup) */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  #services {
    padding: 32px 16px 100px; /* bottom padding for fixed bottom nav */
  }

  #services h2 {
    font-size: 18px;
  }

  .service-card {
    padding: 20px 12px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
  }

  .service-icon img {
    width: 32px;
    height: 32px;
  }

  .service-card h3 {
    font-size: 14px;
  }

  .service-price {
    font-size: 12px;
  }

  /* Footer — 2 column top, 1 column bottom */
  #main-footer {
    padding: 32px 16px 100px; /* bottom padding for fixed bottom nav */
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Business Hours spans full width on its own row */
  .footer-hours {
    grid-column: 1 / -1;
  }

  .footer-brand h4,
  .footer-hours h4,
  .footer-contact h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-brand address,
  .footer-hours ul,
  .footer-contact ul {
    font-size: 12px;
    line-height: 1.7;
  }

  .footer-bottom p {
    font-size: 11px;
  }

  /* Add bottom padding to main so content
     doesn't hide behind fixed bottom nav */
  main {
    padding-bottom: 70px;
  }

}

/* ============================================================
   10. RESPONSIVE — MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 24px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ============================================================
   11. BOTTOM NAVIGATION BAR (mobile only)
   ============================================================ */
.bottom-nav {
  display: none;
}

@media (max-width: 768px) {

  .bottom-nav {
    display: flex;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    background-color: #B8D4E3;
    border-radius: 50px;
    height: 64px;
    width: calc(100% - 40px);
    max-width: 400px;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0 12px;
  }

  .bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    padding: 8px 4px;
    position: relative;
    transition: opacity 0.2s ease;
  }

  .bottom-nav-item:hover {
    opacity: 0.85;
  }

  /* Active item — underline indicator */
  .bottom-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--color-navy);
    border-radius: 2px;
  }

  .bottom-nav-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* SVG icons — white by default, navy when active */
  .bottom-nav-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-white);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease;
  }

  .bottom-nav-item.active .bottom-nav-icon svg {
    stroke: var(--color-navy);
  }

}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ============================================================
   ABOUT — HERO
   ============================================================ */
#about-hero {
  background-color: #AACDDC;
  background-image: url('../images/about-hero.png');
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative bubble elements */
#about-hero::before,
#about-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

#about-hero::before {
  width: 180px;
  height: 180px;
  top: -50px;
  left: -40px;
}

#about-hero::after {
  width: 120px;
  height: 120px;
  bottom: -30px;
  right: 40px;
}

.about-hero-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-hero-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background-color: rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

#about-hero h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.about-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-navy);
  opacity: 0.85;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   ABOUT — OUR STORY
   ============================================================ */
#our-story {
  padding: 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

#our-story h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border);
  display: inline-block;
}

.story-content {
  background-color: var(--color-white);
  border-radius: var(--card-radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}

.story-content p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-mid);
  line-height: 1.9;
}

/* ============================================================
   ABOUT — MISSION, COMMITMENT, COMMUNITY CARDS
   ============================================================ */
#about-cards {
  padding: 0 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Community Focus card spans full width */
.about-card:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 10px); /* same width as top cards */
}

.about-card {
  background-color: var(--color-white);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Icon circle */
.about-card-icon {
  width: 52px;
  height: 52px;
  background-color: var(--color-pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.about-card-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.about-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.about-card p {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-mid);
  line-height: 1.8;
}

/* ============================================================
   ABOUT — RESPONSIVE TABLET (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Hero */
  #about-hero {
    padding: 40px 20px;
  }

  #about-hero h1 {
    font-size: 24px;
  }

  .about-tagline {
    font-size: 13px;
  }

  .about-hero-image {
    width: 100px;
    height: 100px;
  }

  /* Our Story */
  #our-story {
    padding: 32px 20px;
  }

  .story-content {
    padding: 20px;
  }

  /* About Cards — single column on mobile */
  #about-cards {
    padding: 0 20px 100px;
  }

  .about-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Community Focus card — reset to full width on mobile */
  .about-card:last-child {
    grid-column: 1;
    max-width: 100%;
  }

}

/* ============================================================
   ABOUT — RESPONSIVE MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {

  #about-hero h1 {
    font-size: 22px;
  }

  .story-content p {
    font-size: 13px;
  }

  .about-card {
    padding: 20px 18px;
  }

}

/* ============================================================
   GLOBAL ELEVATION — Buttons & Cards
   ============================================================ */

/* All primary buttons */
.btn-primary,
.btn-confirm,
.btn-track,
.btn-book,
.btn-track-mobile,
.btn-copy,
.btn-confirmed {
  box-shadow: var(--shadow-btn);
  transition: box-shadow 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.btn-primary:hover,
.btn-confirm:hover,
.btn-track:hover,
.btn-book:hover,
.btn-track-mobile:hover {
  box-shadow: 0 6px 18px rgba(28, 79, 140, 0.35);
  transform: translateY(-2px);
}

.btn-primary:active,
.btn-confirm:active,
.btn-track:active {
  box-shadow: 0 2px 6px rgba(28, 79, 140, 0.20);
  transform: translateY(0);
}

/* All cards globally */
.service-card,
.about-card,
.story-content,
.pricing-card,
.track-card,
.booking-form-wrapper,
.confirmed-card,
.contact-form-wrapper,
.contact-info,
.track-search-box {
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Cards that lift on hover */
.service-card:hover,
.about-card:hover,
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Bottom nav pill — stronger shadow to float above page */
.bottom-nav {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

/* Nav bar elevation */
#main-header {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

/* ============================================================
   MENU PAGE
   ============================================================ */

/* MENU — HERO */
#menu-hero {
  background-color: #AACDDC;
  background-image: url(../images/about-hero.png);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#menu-hero::before,
#menu-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

#menu-hero::before {
  width: 180px;
  height: 180px;
  top: -50px;
  left: -40px;
}

#menu-hero::after {
  width: 120px;
  height: 120px;
  bottom: -30px;
  right: 40px;
}

.menu-hero-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#menu-hero h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.menu-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-navy);
  opacity: 0.85;
}

/* MENU — PRICING SECTION */
#pricing {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Unequal split — Laundry wider, Delivery narrower */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

/* Shared card base */
.pricing-card {
  border-radius: var(--card-radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
}

/* Card header row — icon + title */
.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
}

.pricing-card-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

/* LAUNDRY CARD — Navy */
.pricing-card.card-navy {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.pricing-card.card-navy .pricing-card-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.pricing-card.card-navy .pricing-card-header-icon {
  background-color: rgba(255, 255, 255, 0.15);
}

.pricing-card.card-navy h2 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--color-white);
}

/* Pricing table */
.pricing-card.card-navy table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-card.card-navy table td {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-white);
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.pricing-card.card-navy table td:first-child {
  color: rgba(255, 255, 255, 0.90);
}

.pricing-card.card-navy table td:last-child {
  text-align: right;
  font-weight: 700;
}

/* Fold row — lighter style since it's an add-on */
.pricing-card.card-navy table tr.addon-row td {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

/* DELIVERY CARD — Pink */
.pricing-card.card-pink {
  background-color: var(--color-pink);
  color: var(--color-text-dark);
}

.pricing-card.card-pink .pricing-card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-card.card-pink .pricing-card-header-icon {
  background-color: rgba(255, 255, 255, 0.50);
}

.pricing-card.card-pink h2 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--color-text-dark);
}

/* Delivery items */
.delivery-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.delivery-item:first-of-type {
  border-top: none;
}

.delivery-item-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.delivery-item-price {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-navy);
}

/* Delivery note text */
.delivery-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-mid);
  line-height: 1.6;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Warning note bar */
.pricing-note {
  background-color: #FFF8E1;
  border: 1px solid #FFD966;
  border-radius: 10px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #7A5C00;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-note::before {
  content: '⚠️';
  flex-shrink: 0;
}

/* CTA button — centered below both cards */
.pricing-cta {
  text-align: center;
}

.pricing-cta .btn-primary {
  font-size: 15px;
  padding: 14px 40px;
}

/* MENU — RESPONSIVE TABLET */
@media (max-width: 768px) {

  #menu-hero {
    padding: 40px 20px;
  }

  #menu-hero h1 {
    font-size: 24px;
  }

  #pricing {
    padding: 40px 20px 100px;
  }

  /* Stack cards on mobile — full width */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 22px 18px;
  }

}

@media (max-width: 480px) {

  #menu-hero h1 {
    font-size: 22px;
  }

  .pricing-card.card-navy table td {
    font-size: 13px;
  }

}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* CONTACT — HERO */
#contact-hero {
  background-color: #AACDDC;
  background-image: url(../images/about-hero.png);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contact-hero::before,
#contact-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

#contact-hero::before {
  width: 180px;
  height: 180px;
  top: -50px;
  left: -40px;
}

#contact-hero::after {
  width: 120px;
  height: 120px;
  bottom: -30px;
  right: 40px;
}

.contact-hero-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#contact-hero h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.contact-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-navy);
  opacity: 0.85;
}

/* CONTACT — MAIN SECTION */
#contact-section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

/* LEFT — Contact Info */
.contact-info {
  background-color: var(--color-white);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* Pink icon circle */
.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.contact-info-text a,
.contact-info-text address,
.contact-info-text span {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-mid);
  line-height: 1.7;
}

.contact-info-text a:hover {
  color: var(--color-navy);
  text-decoration: underline;
}

.contact-info-text small {
  font-size: 12px;
  color: var(--color-text-light);
}

/* RIGHT — Inquiry Form */
.contact-form-wrapper {
  background-color: var(--color-white);
  border-radius: var(--card-radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.form-subtext {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

/* Input groups */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.input-group label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.input-group input,
.input-group select,
.input-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-dark);
  background-color: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #AACDDC;
  box-shadow: 0 0 0 3px rgba(170, 205, 220, 0.30);
}

.input-group textarea {
  resize: vertical;
  min-height: 110px;
}

.input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Success message */
.form-success {
  background-color: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #2E7D32;
}

/* CONTACT — MAP */
#contact-map {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

#contact-map iframe {
  width: 100%;
  height: 420px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow-md);
  display: block;
}

/* CONTACT — RESPONSIVE TABLET */
@media (max-width: 768px) {

  #contact-hero {
    padding: 40px 20px;
  }

  #contact-hero h1 {
    font-size: 24px;
  }

  #contact-section {
    padding: 32px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 24px 20px;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }

  #contact-map {
    padding: 0 20px 100px;
    margin-bottom: 0;
  }

  #contact-map iframe {
    height: 280px;
  }

}

@media (max-width: 480px) {

  #contact-hero h1 {
    font-size: 22px;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 17px;
  }

}

/* ============================================================
   TRACK ORDER PAGE
   ============================================================ */

/* TRACK — HERO (State 1: no result) */
#track-hero {
  background-color: #AACDDC;
  background-image: url(../images/about-hero.png);
  padding: 48px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#track-hero::before,
#track-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

#track-hero::before {
  width: 200px;
  height: 200px;
  top: -60px;
  left: -50px;
}

#track-hero::after {
  width: 140px;
  height: 140px;
  bottom: -40px;
  right: 30px;
}

.track-hero-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#track-hero h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.track-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-navy);
  opacity: 0.85;
}

/* ============================================================
   TRACK — SEARCH BOX (State 1: floats below hero)
   ============================================================ */
#track-search-section {
  padding: 0 40px 60px;
  max-width: 800px;
  margin: -32px auto 0;
  position: relative;
  z-index: 10;
}

.track-search-box {
  background-color: var(--color-white);
  border-radius: var(--card-radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
}

.track-search-box label {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 6px;
}

.track-search-hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.track-search-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.track-search-row input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-dark);
  background-color: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 11px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.track-search-row input::placeholder {
  color: var(--color-text-light);
}

.track-search-row input:focus {
  border-color: #AACDDC;
  box-shadow: 0 0 0 3px rgba(170, 205, 220, 0.30);
}

.btn-track {
  background-color: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: var(--shadow-btn);
}

.btn-track:hover {
  background-color: var(--color-navy-dark);
  transform: translateY(-1px);
}

/* ============================================================
   TRACK — RESULT SECTION (State 2: after search)
   ============================================================ */
#track-result-section {
  padding: 24px 40px 60px;
  max-width: 900px;
  margin: 0 auto;
}

/* Search bar shown at top in result state */
#track-result-section .track-search-row {
  margin-bottom: 28px;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: var(--shadow-sm);
  gap: 8px;
}

#track-result-section .track-search-row input {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 4px 0;
  font-size: 15px;
}

#track-result-section .track-search-row input:focus {
  box-shadow: none;
  border: none;
}

/* Result state search bar — styled as a card row */
.track-search-row--result {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 10px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.track-search-row--result input {
  flex: 1;
  background-color: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-dark);
  padding: 4px 0;
}

.track-search-row--result input:focus {
  box-shadow: none;
  border: none;
}

/* Error card */
.track-error {
  background-color: #FFEBEE;
  border: 1px solid #EF9A9A;
  border-radius: var(--card-radius);
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #C62828;
  text-align: center;
}

/* ============================================================
   TRACK — RESULT CARD (navy card)
   ============================================================ */
.track-result-card {
  background-color: var(--color-navy);
  border-radius: var(--card-radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

/* Top row: reference + customer name + badge */
.track-result-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.track-ref-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-ref-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.60);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.track-ref-code {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
}

.track-result-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.track-customer-name {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.80);
}

/* Status badge */
.track-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 5px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-white);
}

.track-status-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background-color: #6FD98A;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Order summary: service / delivery / total columns */
.track-summary-row {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 12px;
}

.track-summary-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.track-summary-col-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.track-summary-col-value {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
}

.track-summary-col-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

/* ============================================================
   TRACK — ORDER PROGRESS STEPS
   ============================================================ */
.track-progress-wrapper {
  background-color: var(--color-white);
  border-radius: var(--card-radius);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.track-progress-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

/* Steps row */
.track-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

/* Connecting line behind the steps */
.track-steps::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  height: 2px;
  background-color: var(--color-border);
  z-index: 0;
}

.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  flex: 1;
}

/* Step icon circle */
.track-step-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-text-light);
  transition: all 0.3s ease;
}

.track-step-label {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--color-text-light);
  text-align: center;
  line-height: 1.4;
}

.track-step-sub {
  font-family: var(--font-body);
  font-size: 9px;
  color: var(--color-text-light);
  text-align: center;
}

/* Completed step */
.track-step.completed .track-step-icon {
  background-color: var(--color-navy);
  border-color: var(--color-navy);
  color: var(--color-white);
}

.track-step.completed .track-step-label {
  color: var(--color-navy);
  font-weight: 600;
}

/* Active / current step */
.track-step.active .track-step-icon {
  background-color: #AACDDC;
  border-color: var(--color-navy);
  color: var(--color-navy);
  box-shadow: 0 0 0 4px rgba(170, 205, 220, 0.35);
}

.track-step.active .track-step-label {
  color: var(--color-navy);
  font-weight: 700;
}

.track-step.active .track-step-sub {
  color: var(--color-navy);
  font-weight: 600;
}

/* Progress line fill — completed portion */
.track-steps-line-fill {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 2px;
  background-color: var(--color-navy);
  z-index: 0;
  transition: width 0.4s ease;
}

/* ============================================================
   TRACK — STATUS MESSAGE BAR
   ============================================================ */
.track-status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #2E7D32;
}

.track-status-bar::before {
  content: '●';
  color: #4CAF50;
  font-size: 10px;
  flex-shrink: 0;
}

/* ============================================================
   TRACK — INFO CARDS (Estimated Completion + Delivery Address)
   ============================================================ */
.track-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.track-info-card {
  background-color: var(--color-white);
  border-radius: var(--card-radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.track-info-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.track-info-card-header span {
  font-size: 14px;
}

.track-info-card-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text-dark);
}

.track-info-card-sub {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================================
   TRACK — RESPONSIVE TABLET (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* State 1 — Hero */
  #track-hero {
    padding: 36px 20px 52px;
  }

  #track-hero h1 {
    font-size: 24px;
  }

  .track-tagline {
    font-size: 13px;
  }

  /* State 1 — Search box */
  #track-search-section {
    padding: 0 20px 80px;
    margin-top: -28px;
  }

  .track-search-box {
    padding: 20px;
  }

  /* Search row: input takes full width, button below */
  .track-search-row {
    flex-direction: column;
    gap: 10px;
  }

  .track-search-row input {
    width: 100%;
  }

  .btn-track {
    width: 100%;
    text-align: center;
    padding: 13px;
    font-size: 15px;
  }

  /* State 2 — Result section */
  #track-result-section {
    padding: 16px 20px 100px;
  }

  /* Result card */
  .track-result-card {
    padding: 20px;
  }

  .track-result-top {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .track-result-right {
    align-items: flex-start;
    flex-direction: row;
    gap: 12px;
    align-items: center;
  }

  .track-ref-code {
    font-size: 18px;
  }

  /* Summary columns stack */
  .track-summary-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Total goes full width on its own row */
  .track-summary-col:last-child {
    grid-column: 1 / -1;
  }

  /* Progress steps — compress labels */
  .track-progress-wrapper {
    padding: 20px 16px;
    overflow-x: auto;
  }

  .track-steps {
    min-width: 480px;
  }

  .track-step-label {
    font-size: 9px;
  }

  /* Info cards stack */
  .track-info-grid {
    grid-template-columns: 1fr;
  }

  .track-info-card-value {
    font-size: 16px;
  }

}

/* ============================================================
   TRACK — RESPONSIVE MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {

  #track-hero h1 {
    font-size: 22px;
  }

  .track-ref-code {
    font-size: 16px;
  }

  .track-summary-col-value {
    font-size: 14px;
  }

  .track-steps {
    min-width: 420px;
  }

}

/* ============================================================
   BOOK PAGE
   ============================================================ */

/* BOOK — HERO */
#book-hero {
  background-color: #AACDDC;
  background-image:url(../images/about-hero.png);
  padding: 48px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#book-hero::before,
#book-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

#book-hero::before {
  width: 180px;
  height: 180px;
  top: -50px;
  left: -40px;
}

#book-hero::after {
  width: 120px;
  height: 120px;
  bottom: -30px;
  right: 40px;
}

.book-hero-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#book-hero h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.book-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-navy);
  opacity: 0.85;
}

/* BOOK — MAIN SECTION */
#booking-section {
  padding: 40px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================
   BOOKING FORM — 2-COLUMN GRID
   ============================================================ */
.booking-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

/* Shared fieldset styling */
.form-group {
  background-color: var(--color-white);
  border-radius: var(--card-radius);
  padding: 24px 22px;
  padding-top: 56px;
  box-shadow: var(--shadow-md);
  border: none;
  margin-bottom: 20px;
  position: relative;
}

.booking-grid > div:last-child .form-group:last-child {
  margin-bottom: 0;
}

.form-group legend {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  color: var(--color-text-dark);
  padding: 14px 22px 12px;
  width: 100%;
  border-bottom: none;
}

.form-group::after {
  content: '';
  position: absolute;
  top: 48px;
  left: 22px;
  right: 22px;
  height: 1px;
  background-color: var(--color-border);
}

/* ============================================================
   RADIO CARDS — Service & Delivery
   ============================================================ */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--color-border);
  border-radius: 50px;
  padding: 10px 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  background-color: var(--color-cream);
}

.radio-card:hover {
  border-color: #AACDDC;
  background-color: #EAF5FB;
}

/* Hide actual radio input */
.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Selected state — navy border + light blue fill */
.radio-card:has(input[type="radio"]:checked) {
  border-color: var(--color-navy);
  background-color: #D9F3FF;
}

.radio-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.4;
}

.radio-label small {
  display: block;
  font-size: 11px;
  color: var(--color-text-mid);
  font-weight: 400;
  margin-top: 1px;
}

/* Selected label text — navy */
.radio-card:has(input[type="radio"]:checked) .radio-label {
  color: var(--color-navy);
  font-weight: 700;
}

.radio-card:has(input[type="radio"]:checked) .radio-label small {
  color: var(--color-navy);
  opacity: 0.75;
}

/* ============================================================
   ADD-ON TOGGLE
   ============================================================ */
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.addon-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  line-height: 1.5;
}

.addon-label small {
  display: block;
  font-size: 12px;
  color: var(--color-text-mid);
  font-weight: 400;
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background-color: var(--color-border);
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.20);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: var(--color-navy);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

/* ============================================================
   YOUR DETAILS — Input Fields
   ============================================================ */
.input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px;
}

.input-group:last-child {
  margin-bottom: 0;
}

.input-group label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.input-group input,
.input-group select,
.input-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-dark);
  background-color: var(--color-cream);
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: var(--color-text-light);
  font-size: 13px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #AACDDC;
  box-shadow: 0 0 0 3px rgba(170, 205, 220, 0.30);
}

.input-group textarea {
  resize: vertical;
  min-height: 90px;
}

.optional {
  font-weight: 400;
  color: var(--color-text-light);
  font-size: 11px;
}

/* ============================================================
   ORDER SUMMARY CARD — Default State
   ============================================================ */
#order-summary {
  background-color: var(--color-navy);
  border-radius: var(--card-radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.summary-icon {
  font-size: 20px;
}

.summary-header h2 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
}

.summary-body {
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.70);
}

.summary-value {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
}

.summary-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.20);
  margin: 10px 0;
}

/* Total row */
.summary-total-row .summary-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
}

.summary-total-row .summary-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-white);
}

.summary-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

/* Confirm button */
.btn-confirm {
  width: 100%;
  background-color: var(--color-white);
  color: var(--color-navy);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  box-shadow: var(--shadow-btn);
}

.btn-confirm:hover {
  background-color: var(--color-cream);
  transform: translateY(-1px);
}

.btn-confirm:active {
  transform: translateY(0);
}

.summary-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* ============================================================
   ORDER SUMMARY CARD — Confirmed State (green tint)
   ============================================================ */
#booking-confirmed .confirmed-card {
  background-color: #E8F5E9;
  border: 1.5px solid #A5D6A7;
  border-radius: var(--card-radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
}

.confirmed-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.confirmed-summary-row:last-child {
  border-bottom: none;
}

.confirmed-summary-row .summary-label {
  color: var(--color-text-mid);
}

.confirmed-summary-row .summary-value {
  color: var(--color-text-dark);
}

.confirmed-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.10);
  margin: 10px 0;
}

.confirmed-total {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-navy) !important;
}

.confirmed-btn-wrapper {
  margin: 20px 0 0;
  text-align: center;
}

/* Confirmed button — disabled green look */
.btn-confirmed {
  width: 100%;
  background-color: #4CAF50;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: default;
  opacity: 0.90;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.30);
}

/* Reference code block */
.confirmed-reference {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ref-code {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: 0.04em;
}

.btn-copy {
  background-color: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-shadow: var(--shadow-btn);
}

.btn-copy:hover {
  background-color: var(--color-navy-dark);
}

.ref-hint {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-mid);
  text-align: center;
  line-height: 1.6;
}

/* ============================================================
   BOOK — RESPONSIVE TABLET (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  #book-hero {
    padding: 36px 20px 48px;
  }

  #book-hero h1 {
    font-size: 24px;
  }

  #booking-section {
    padding: 24px 20px 100px;
  }

  .form-group {
    padding: 20px 18px;
    padding-top: 56px;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .form-group::after {
    top: 48px;
    left: 18px;
    right: 18px;
  }

  .form-group legend {
    padding: 14px 18px 12px;
  }

  /* Radio cards — full width pills on mobile */
  .radio-group {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .radio-card {
    padding: 10px 14px;
    border-radius: 50px;
  }

  .radio-label {
    font-size: 12px;
  }

  /* Delivery options — 3 across on mobile (icon-style) */
  #group-delivery .radio-group {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
  }

  #group-delivery .radio-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 8px;
    gap: 4px;
  }

  /* Order Summary */
  #order-summary {
    padding: 22px 20px;
  }

  #booking-confirmed .confirmed-card {
    padding: 22px 20px;
  }

  .ref-code {
    font-size: 22px;
  }

}

/* ============================================================
   BOOK — RESPONSIVE MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {

  #book-hero h1 {
    font-size: 22px;
  }

  .radio-group {
    grid-template-columns: 1fr 1fr;
  }

  .summary-total-row .summary-value {
    font-size: 18px;
  }

  .ref-code {
    font-size: 20px;
  }

}