/* ================================================================
   ABLE MOVEMENT PHYSIO — styles.css
   ================================================================
   HOW TO EDIT THIS FILE:
   - Colours are defined as CSS variables at the top (in :root {})
     Change them there and they update everywhere automatically.
   - Each section has a clearly labelled comment block.
   - Font sizes use clamp() for fluid scaling — safe to leave as-is.
   ================================================================ */


/* ----------------------------------------------------------------
   1. CSS VARIABLES (Brand colours & design tokens)
   ----------------------------------------------------------------
   EDIT HERE to change the brand palette site-wide.
   ---------------------------------------------------------------- */
:root {
  /* Primary palette */
  --color-teal:        #00B4A6;   /* Main teal — buttons, accents */
  --color-teal-dark:   #008F84;   /* Darker teal — gradients, hover */
  --color-teal-light:  #E0F7F6;   /* Light teal — card backgrounds */
  --color-orange:      #FF6B35;   /* Orange — CTAs, highlights */
  --color-orange-dark: #e05520;   /* Darker orange — hover states */
  --color-orange-light:#FFF0EA;   /* Light orange — alert backgrounds */

  /* Neutrals */
  --color-navy:        #0D2B45;   /* Deep navy — headings, nav bg */
  --color-navy-mid:    #1A4060;   /* Mid navy — gradients */
  --color-white:       #FFFFFF;
  --color-off-white:   #F7FAFA;   /* Section alternating background */
  --color-grey:        #6B7C8D;   /* Body text, captions */
  --color-light-grey:  #E8EFF4;   /* Borders, dividers */

  /* Typography */
  --font-display: 'Syne', sans-serif;      /* Headings */
  --font-body:    'DM Sans', sans-serif;   /* Body text */

  /* Spacing */
  --section-pad-v: clamp(4rem, 8vw, 7rem);
  --section-pad-h: clamp(1.5rem, 6vw, 5rem);

  /* Borders */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  24px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.09);
  --shadow-lg:  0 20px 50px rgba(0,0,0,0.12);
}


/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 3px solid var(--color-teal);
  outline-offset: 3px;
  border-radius: 4px;
}


/* ----------------------------------------------------------------
   3. SHARED SECTION STYLES
   ---------------------------------------------------------------- */
.section {
  padding: var(--section-pad-v) var(--section-pad-h);
}

/* Small uppercase label above section titles */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.6rem;
}

/* Main section heading */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

/* Section intro paragraph */
.section-sub {
  font-size: 1.05rem;
  color: var(--color-grey);
  line-height: 1.75;
  max-width: 600px;
}


/* ----------------------------------------------------------------
   4. BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

/* Primary button — orange */
.btn--primary {
  background: var(--color-orange);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(255,107,53,0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.5);
}

/* Secondary button — outlined */
.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--secondary:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

/* Submit button — teal gradient */
.btn--submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,180,166,0.3);
  margin-top: 0.5rem;
}
.btn--submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Badge pills (hero card, NDIS tags) */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
}
.badge--teal {
  background: rgba(0,180,166,0.2);
  border: 1px solid rgba(0,180,166,0.5);
  color: var(--color-teal);
}
.badge--orange {
  background: rgba(255,107,53,0.15);
  border: 1px solid rgba(255,107,53,0.4);
  color: var(--color-orange);
}


/* ----------------------------------------------------------------
   5. NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(13,43,69,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}

/* Add shadow when scrolled — toggled via JS */
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--section-pad-h);
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--color-white);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav-logo span { color: var(--color-teal); }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--color-teal);
}

/* Nav CTA pill */
.nav-cta {
  background: var(--color-orange) !important;
  color: var(--color-white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s ease !important;
}
.nav-cta:hover {
  background: var(--color-orange-dark) !important;
  color: var(--color-white) !important;
}

/* Hamburger button — mobile only */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
/* Hamburger → X animation */
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ----------------------------------------------------------------
   6. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background: var(--color-navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: 9rem var(--section-pad-h) 5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative radial blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-blob--teal {
  top: -120px;
  right: -120px;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(0,180,166,0.16) 0%, transparent 70%);
}
.hero-blob--orange {
  bottom: -100px;
  left: 25%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(255,107,53,0.1) 0%, transparent 70%);
}

.hero-text { position: relative; z-index: 1; }

/* Animated badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(0,180,166,0.14);
  border: 1px solid rgba(0,180,166,0.4);
  color: var(--color-teal);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-teal);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* Headline */
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  color: var(--color-white);
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  color: var(--color-teal);
  font-style: normal;
}

.hero-sub {
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

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

/* Stats row */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-teal);
}
.hero-stat__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
  margin-top: 0.15rem;
}

/* Hero visual / card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-card-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hero-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-teal-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
}
.hero-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.hero-card__body {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.hero-card__badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Floating info tags */
.float-tag {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  box-shadow: var(--shadow-md);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.float-tag--top    { top: -42px; left: 0px; }
.float-tag--bottom { top: -42px; right: 0px; left: auto; bottom: auto; }
.float-tag__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-orange);
  flex-shrink: 0;
}


/* ----------------------------------------------------------------
   7. ABOUT SECTION
   ---------------------------------------------------------------- */
.about {
  background: var(--color-off-white);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about__visual { position: relative; }

.about__img-wrap {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-navy) 100%);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

/* PHOTO — swap placeholder with <img> tag in HTML when photo is ready */
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(0.75);
  transform-origin: center 30%;
}

.about__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.about__img-icon  { font-size: 5rem; }
.about__img-label { font-size: 0.88rem; font-weight: 500; letter-spacing: 0.08em; }

/* Orange UK badge */
.about__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 116px;
  height: 116px;
  background: var(--color-orange);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  text-align: center;
  box-shadow: 0 8px 30px rgba(255,107,53,0.4);
}
.about__accent strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}
.about__accent span {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.92;
  margin-top: 0.25rem;
}

/* About text paragraphs */
.about__para {
  font-size: 0.93rem;
  color: var(--color-grey);
  line-height: 1.85;
  margin-top: 1.1rem;
}
.about__para strong { color: var(--color-navy); }

/* Credentials list */
.credentials {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--color-teal);
  box-shadow: var(--shadow-sm);
}
.cred-item__icon { font-size: 1.4rem; flex-shrink: 0; }
.cred-item strong {
  font-size: 0.93rem;
  font-weight: 600;
  display: block;
  color: var(--color-navy);
}
.cred-item span {
  font-size: 0.8rem;
  color: var(--color-grey);
}


/* ----------------------------------------------------------------
   8. SERVICES SECTION
   ---------------------------------------------------------------- */
.services { background: var(--color-white); }

.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services__header .section-sub { margin: 0 auto; }

/* 3-column grid — collapses on smaller screens */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1.5px solid var(--color-light-grey);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
/* Top gradient bar on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-orange));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-teal);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--color-teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.65rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--color-grey);
  line-height: 1.72;
}
/* Service tag pill */
.service-tag {
  display: inline-block;
  margin-top: 1rem;
  background: var(--color-teal-light);
  color: var(--color-teal-dark);
  padding: 0.28rem 0.75rem;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 600;
}


/* ----------------------------------------------------------------
   9. NDIS SECTION
   ---------------------------------------------------------------- */
.ndis {
  background: var(--color-navy);
  color: var(--color-white);
}
.ndis .section-title { color: var(--color-white); }
.ndis__sub { color: rgba(255,255,255,0.58); }

.ndis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-top: 3rem;
}

.ndis-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 0.9rem;
}
.ndis-block p {
  color: rgba(255,255,255,0.62);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
.ndis-block p strong { color: var(--color-teal); }
.ndis-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.ndis-block ul li {
  color: rgba(255,255,255,0.62);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}
.ndis-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: 700;
}

/* Alert box spanning full width */
.ndis-alert {
  grid-column: 1 / -1;
  background: rgba(0,180,166,0.1);
  border: 1px solid rgba(0,180,166,0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ndis-alert__icon { font-size: 1.4rem; flex-shrink: 0; }
.ndis-alert p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0;
}
.ndis-alert p strong { color: var(--color-white); }


/* ----------------------------------------------------------------
   10. BOOKING SECTION
   ---------------------------------------------------------------- */
.booking { background: var(--color-off-white); }

.booking__intro { margin-bottom: 2.5rem; }

/* Appointment type pills */
.appt-types {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.appt-type {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  border-radius: var(--radius-md);
  padding: 1.1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.appt-type span   { font-size: 1.7rem; }
.appt-type strong { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; }
.appt-type small  { font-size: 0.75rem; color: var(--color-grey); }
.appt-type--home {
  background: var(--color-teal-light);
  border: 1.5px solid var(--color-teal);
}
.appt-type--home strong { color: var(--color-teal-dark); }
.appt-type--telehealth {
  background: var(--color-orange-light);
  border: 1.5px solid var(--color-orange);
}
.appt-type--telehealth strong { color: #c0521a; }

/* Two-column layout: info left, form/widget right */
.booking__body {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 4rem;
  align-items: start;
}

/* Left column: steps + availability */
.booking__info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1.25rem;
}

/* Steps list */
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.booking-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-white);
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--color-light-grey);
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-step strong {
  font-size: 0.88rem;
  font-weight: 600;
  display: block;
  color: var(--color-navy);
}
.booking-step span {
  font-size: 0.8rem;
  color: var(--color-grey);
}

/* Availability table card */
.availability-card {
  background: var(--color-white);
  border: 1.5px solid var(--color-light-grey);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.availability-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-navy);
  margin-bottom: 0.9rem;
}
/* EDIT: Availability hours are in the HTML <table> */
.availability-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.availability-table th {
  text-align: left;
  font-weight: 600;
  color: var(--color-navy);
  padding: 0.3rem 0.75rem 0.3rem 0;
  width: 40%;
}
.availability-table td {
  color: var(--color-grey);
  padding: 0.3rem 0;
}

/* Right column: Cliniko widget container */
.booking__widget-area {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Cliniko embed container */
.cliniko-widget-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 200px;
}

/* Placeholder shown until Cliniko is set up */
.cliniko-placeholder {
  background: var(--color-white);
  border: 2px dashed var(--color-light-grey);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.cliniko-placeholder__icon { font-size: 3rem; }
.cliniko-placeholder h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-navy);
}
.cliniko-placeholder p {
  font-size: 0.93rem;
  color: var(--color-grey);
  max-width: 340px;
  line-height: 1.7;
}

/* Enquiry form card */
.booking-form {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--color-light-grey);
}
.booking-form h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 1.75rem;
}

/* Form layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.form-optional {
  font-weight: 400;
  color: var(--color-grey);
}

/* Form inputs */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--color-light-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-navy);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(0,180,166,0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
/* Custom select arrow */
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7C8D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  font-size: 0.77rem;
  color: var(--color-grey);
  text-align: center;
  margin-top: 0.75rem;
}


/* ----------------------------------------------------------------
   11. LEGAL SECTION
   ---------------------------------------------------------------- */
.legal { background: var(--color-white); }

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
.legal-card {
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1.5px solid var(--color-light-grey);
}
.legal-card h3 {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.legal-card p,
.legal-card ul {
  font-size: 0.86rem;
  color: var(--color-grey);
  line-height: 1.78;
}
.legal-card ul li {
  padding-left: 1.2rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.legal-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  color: var(--color-teal);
  line-height: 1.4;
}
.legal-card a {
  color: var(--color-teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.disclaimer {
  margin-top: 2rem;
  background: var(--color-orange-light);
  border: 1px solid rgba(255,107,53,0.22);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.82rem;
  color: #7a4a30;
  line-height: 1.75;
}


/* ----------------------------------------------------------------
   12. CONTACT SECTION
   ---------------------------------------------------------------- */
.contact {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-navy) 100%);
  text-align: center;
}
.contact .section-label { color: rgba(255,255,255,0.55); }
.contact .section-title { color: var(--color-white); }

.contact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.contact-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.25rem;
  min-width: 190px;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}
.contact-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.3rem;
}
.contact-card__val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-white);
}
.contact-card__val a {
  color: var(--color-white);
  transition: opacity 0.2s;
}
.contact-card__val a:hover { opacity: 0.8; }


/* ----------------------------------------------------------------
   13. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.42);
  text-align: center;
  padding: 2.5rem var(--section-pad-h);
  font-size: 0.82rem;
  line-height: 1.9;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}
.site-footer strong { color: rgba(255,255,255,0.7); }

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 0.75rem 0;
}
.footer-nav a {
  color: var(--color-teal);
  font-size: 0.82rem;
  transition: opacity 0.2s;
}
.footer-nav a:hover { opacity: 0.75; }

.footer-copy { margin-top: 0.75rem; }


/* ----------------------------------------------------------------
   14. SCROLL ANIMATIONS
   Elements fade/slide in when they enter the viewport (via JS).
   Add class "animate-on-scroll" to any element in the HTML.
   ---------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger delays for grid children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }
.animate-on-scroll:nth-child(7) { transition-delay: 0.48s; }


/* ----------------------------------------------------------------
   15. RESPONSIVE — TABLET (max 1024px)
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 8rem;
    gap: 3.5rem;
  }
  .hero-visual { justify-content: flex-start; }
  .hero-card-wrap { max-width: 480px; }
  .float-tag { display: none; } /* hide on smaller screens */

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__img-wrap { aspect-ratio: 16 / 9; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ndis-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .booking__body {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
}


/* ----------------------------------------------------------------
   16. RESPONSIVE — MOBILE (max 680px)
   ---------------------------------------------------------------- */
@media (max-width: 680px) {
  /* Show hamburger, hide desktop links */
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 150;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  .nav-links.is-open {
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1.3rem;
  }

  /* Hamburger stays above the menu */
  .nav-hamburger { z-index: 160; }

  .hero {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }
  .hero h1 { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-stats { gap: 1.5rem; }

  .services-grid { grid-template-columns: 1fr; }

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

  .contact-cards { flex-direction: column; align-items: center; }
  .contact-card { width: 100%; max-width: 320px; }

  .footer-nav { gap: 1rem; }
}


/* ----------------------------------------------------------------
   17. SERVICE AREA MAP SECTION
   ---------------------------------------------------------------- */
.map-section {
  background: var(--color-off-white);
  padding: var(--section-pad-v) var(--section-pad-h);
}

.map-section__header {
  margin-bottom: 2.5rem;
}

/* Map container with badge overlay */
.map-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--color-light-grey);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
}

/* Floating info badge over the map */
.map-overlay-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
}
.map-overlay-badge span:first-child { font-size: 1.4rem; }
.map-overlay-badge strong {
  display: block;
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.9rem;
}
.map-overlay-badge span:last-child {
  color: var(--color-grey);
  font-size: 0.8rem;
}

@media (max-width: 680px) {
  .map-wrap iframe { height: 300px; }
  .map-overlay-badge { bottom: 0.75rem; left: 0.75rem; }
}

/* ── AHPRA Badge ─────────────────────────────────────── */
.ahpra-badge {
  margin: 1.5rem auto;
  display: inline-block;
}
.ahpra-badge a {
  text-decoration: none;
}
.ahpra-badge__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,180,166,0.35);
  border-radius: 12px;
  padding: 0.9rem 1.4rem;
  transition: border-color 0.2s, background 0.2s;
}
.ahpra-badge__inner:hover {
  background: rgba(0,180,166,0.08);
  border-color: var(--color-teal);
}
.ahpra-badge__icon {
  flex-shrink: 0;
  opacity: 0.9;
}
.ahpra-badge__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-align: left;
}
.ahpra-badge__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: 0.02em;
}
.ahpra-badge__sub {
  font-size: 0.72rem;
  color: var(--color-grey);
  letter-spacing: 0.03em;
}
.ahpra-badge__reg {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  font-family: monospace;
  letter-spacing: 0.05em;
}
.ahpra-badge__verify {
  font-size: 0.7rem;
  color: var(--color-teal);
  opacity: 0.6;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

/* ── WHY CHOOSE US ───────────────────────────────────────── */
.why-us {
  background: var(--color-navy);
  color: var(--color-off-white);
}
.why-us__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.why-us__header .section-title {
  color: var(--color-off-white);
}
.why-us__header .section-sub {
  color: rgba(255,255,255,0.6);
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,180,166,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.why-card:hover {
  border-color: var(--color-teal);
  background: rgba(0,180,166,0.07);
  transform: translateY(-4px);
}
.why-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}
@media (max-width: 900px) {
  .why-us__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .why-us__grid { grid-template-columns: 1fr; }
}

/* ── BOXING REHAB SECTION ────────────────────────────────── */
.boxing-rehab {
  background: var(--color-off-white);
  overflow: hidden;
}
.boxing-rehab__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.boxing-rehab__lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--color-orange);
  padding-left: 1rem;
}
.boxing-rehab__body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-grey);
  margin-bottom: 1rem;
}
.boxing-conditions h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 1.8rem 0 1rem;
}
.boxing-conditions__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.boxing-conditions__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  border: 1px solid rgba(0,180,166,0.2);
  border-radius: var(--radius-lg);
  padding: 1rem 1.2rem;
  transition: border-color 0.2s, transform 0.2s;
}
.boxing-conditions__list li:hover {
  border-color: var(--color-teal);
  transform: translateX(4px);
}
.boxing-conditions__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.boxing-conditions__list strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-navy);
  margin-bottom: 0.2rem;
}
.boxing-conditions__list p {
  font-size: 0.82rem;
  color: var(--color-grey);
  line-height: 1.5;
  margin: 0;
}
.boxing-evidence {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin-top: 2rem;
}
.boxing-evidence__icon { font-size: 1.5rem; flex-shrink: 0; }
.boxing-evidence__text strong {
  display: block;
  color: var(--color-teal);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.boxing-evidence__text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.boxing-evidence__link {
  font-size: 0.8rem;
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.boxing-evidence__link:hover { color: var(--color-teal); }

/* Right side */
.boxing-graphic {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.boxing-graphic__gloves {
  width: 200px;
  height: 220px;
  filter: drop-shadow(0 8px 24px rgba(255,107,53,0.25));
}
.boxing-graphic__gloves svg { width: 100%; height: 100%; }
.boxing-graphic__badge {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  background: var(--color-navy);
  color: var(--color-teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
}
.boxing-graphic__badge span:nth-child(2) {
  color: var(--color-orange);
}
.boxing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: 100%;
}
.boxing-stat {
  background: white;
  border: 1px solid rgba(0,180,166,0.2);
  border-radius: var(--radius-md);
  padding: 0.9rem 0.5rem;
  text-align: center;
}
.boxing-stat__num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.boxing-stat__label {
  font-size: 0.68rem;
  color: var(--color-grey);
  line-height: 1.3;
}
.boxing-cta-card {
  background: linear-gradient(135deg, var(--color-teal), var(--color-navy));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  width: 100%;
}
.boxing-cta-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Add boxing to nav */
@media (max-width: 900px) {
  .boxing-rehab__inner {
    grid-template-columns: 1fr;
  }
  .boxing-graphic { position: static; }
}
