/* ============================================
   TWINKLE DRIVING SCHOOL — Shared Stylesheet v2
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --navy:       #1B3564;
  --navy-dark:  #0F2040;
  --navy-mid:   #243f7a;
  --gold:       #E8A020;
  --gold-light: #F5B83D;
  --gold-bg:    #FEF8E7;
  --gold-border:#f0d070;
  --white:      #FFFFFF;
  --off:        #F7F8FC;
  --text:       #1a1a2e;
  --muted:      #5f6b7c;
  --border:     #E2E8F0;
  --success:    #16a34a;
  --shadow:     0 4px 20px rgba(27,53,100,0.08);
  --shadow-lg:  0 16px 48px rgba(27,53,100,0.14);
  --shadow-gold:0 8px 32px rgba(232,160,32,0.35);
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  20px;
  --transition: all 0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  color: var(--text); background: var(--white);
  line-height: 1.65; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; }
p { line-height: 1.7; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 90px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── SECTION LABELS ── */
.label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-sub { color: var(--muted); max-width: 580px; font-size: 1rem; }
.header-block { margin-bottom: 56px; }
.header-block.center { text-align: center; }
.header-block.center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); border: 2px solid transparent; white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline-white { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-navy { border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ── NAV ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 20px; height: 72px;
}

/* Logo with text */
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo img { height: 44px; width: 44px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--navy); font-weight: 700;
}
.logo-sub {
  font-size: 0.6rem; color: var(--muted); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
}
.nav-links a {
  padding: 8px 10px; border-radius: 6px;
  font-size: 0.83rem; font-weight: 500; color: var(--text);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--off); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-book {
  background: var(--gold); color: var(--navy);
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-weight: 700; font-size: 0.83rem; transition: var(--transition);
}
.nav-book:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); }

/* Language Selector */
.lang-select {
  display: flex; align-items: center; gap: 4px;
  padding: 7px 10px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: var(--white);
  font-size: 0.78rem; font-weight: 500; color: var(--muted);
  cursor: pointer; transition: var(--transition);
}
.lang-select:hover { border-color: var(--navy); color: var(--navy); }
.lang-select select {
  border: none; background: transparent; font-family: inherit;
  font-size: 0.78rem; font-weight: 500; color: inherit;
  cursor: pointer; outline: none; max-width: 90px;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 20px 24px; overflow-y: auto; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 1rem; font-weight: 500; color: var(--text); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-book { margin-top: 20px; background: var(--gold); color: var(--navy) !important; text-align: center; border-radius: var(--radius-sm); font-weight: 700 !important; padding: 16px !important; border: none !important; }
.mobile-lang { margin-top: 16px; display: flex; align-items: center; gap: 8px; }
.mobile-lang select { flex: 1; padding: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem; color: var(--text); background: var(--white); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  display: flex; align-items: center; padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 85%, rgba(232,160,32,0.15) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 15%, rgba(232,160,32,0.08) 0%, transparent 50%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 50px 50px;
}
.hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 80px 24px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.3);
  color: var(--gold-light); padding: 8px 18px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold-light); display: block; line-height: 1; }
.hero-stat .lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-top: 4px; }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 24px 70px; position: relative; overflow: hidden; text-align: center;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 80%, rgba(232,160,32,0.12) 0%, transparent 50%); }
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--off); border-bottom: 1px solid var(--border); padding: 18px 24px; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 500; color: var(--muted); }

/* ── ANCHOR BAR (Services page) ── */
.anchor-bar {
  position: sticky; top: 72px; z-index: 100;
  background: var(--white); border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 12px rgba(27,53,100,0.06);
}
.anchor-bar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 0; overflow-x: auto;
  scrollbar-width: none;
}
.anchor-bar-inner::-webkit-scrollbar { display: none; }
.anchor-link {
  padding: 18px 22px; font-size: 0.85rem; font-weight: 600;
  color: var(--muted); white-space: nowrap;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  cursor: pointer; transition: var(--transition); background: none; border-top: none; border-left: none; border-right: none;
  font-family: 'Outfit', sans-serif;
}
.anchor-link:hover { color: var(--navy); }
.anchor-link.active { color: var(--navy); border-bottom-color: var(--gold); }

/* ── SCROLL SECTION ── */
.scroll-section { padding: 80px 0; }
.scroll-section:nth-child(even) { background: var(--off); }
.scroll-section:nth-child(odd) { background: var(--white); }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.card-icon { width: 52px; height: 52px; border-radius: 12px; background: var(--gold-bg); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; flex-shrink: 0; }
.card h3 { color: var(--navy); margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.875rem; }
.card-hover-gold { position: relative; overflow: hidden; }
.card-hover-gold::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.card-hover-gold:hover::before { transform: scaleX(1); }

/* ── PRICE CARDS ── */
.price-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.price-card:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card.featured { border-color: var(--navy); position: relative; }
.price-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: 0; right: 0; background: var(--navy); color: var(--white); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; padding: 6px 14px; border-bottom-left-radius: var(--radius-sm); }
.price-header { background: var(--navy); padding: 24px 28px; color: var(--white); }
.price-header.gold-bg { background: var(--gold); }
.price-header h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--white); }
.price-header.gold-bg h3 { color: var(--navy); }
.price-amount { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold-light); line-height: 1; margin: 8px 0 4px; }
.price-header.gold-bg .price-amount { color: var(--navy); }
.price-note { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.price-header.gold-bg .price-note { color: rgba(0,0,0,0.5); }
.price-body { padding: 24px 28px; }
.price-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; }
.price-row:last-child { border: none; }
.price-row .duration { color: var(--muted); }
.price-row .price { font-weight: 700; color: var(--navy); }
.price-row .saving { font-size: 0.72rem; color: var(--success); font-weight: 600; }

/* ── REVIEW CARDS ── */
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.review-card:hover { box-shadow: var(--shadow); }
.review-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.875rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-name { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.review-card-dark { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.review-card-dark:hover { background: rgba(255,255,255,0.09); }
.review-card-dark .review-text { color: rgba(255,255,255,0.8); }
.review-card-dark .review-name { color: rgba(255,255,255,0.5); }

/* ── INSTRUCTOR CARD ── */
.instructor-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; transition: var(--transition); display: grid; grid-template-columns: 180px 1fr; gap: 32px; align-items: start; }
.instructor-card:hover { box-shadow: var(--shadow-lg); }
.instructor-photo { width: 180px; height: 220px; border-radius: var(--radius); object-fit: cover; object-position: top; border: 3px solid var(--gold); }
.instructor-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 4px; }
.instructor-role { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.instructor-bio { font-size: 0.875rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.lang-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.lang-tag { background: var(--off); border: 1px solid var(--border); padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; color: var(--muted); }
.check-list { display: flex; flex-direction: column; gap: 6px; }
.check-item { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); }
.check-item::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }

/* ── SUBURB PILLS ── */
.suburb-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.suburb-pill { background: var(--off); border: 1px solid var(--border); padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 500; color: var(--muted); transition: var(--transition); }
.suburb-pill:hover { background: var(--gold-bg); border-color: var(--gold-border); color: var(--navy); }

/* ── PROCESS STEPS ── */
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 16px; flex-shrink: 0; }

/* ── ACCORDION ── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border: none; }
.accordion-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: var(--white); border: none; font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600; color: var(--navy); text-align: left; cursor: pointer; transition: var(--transition); gap: 16px; }
.accordion-btn:hover { background: var(--off); }
.accordion-btn .icon { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; color: var(--gold); transition: transform 0.3s; }
.accordion-btn.open { background: var(--off); }
.accordion-btn.open .icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.accordion-content { display: none; padding: 0 24px 20px; font-size: 0.9rem; color: var(--muted); line-height: 1.7; background: var(--off); }
.accordion-content.open { display: block; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
label .req { color: var(--gold); }
input, select, textarea { width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--text); background: var(--white); transition: var(--transition); -webkit-appearance: none; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,53,100,0.1); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 16px; background: var(--gold); color: var(--navy); border: none; border-radius: var(--radius-sm); font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--transition); }
.form-submit:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-2px); }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 10px; text-align: center; }
.form-section-title { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; margin-top: 8px; padding-bottom: 8px; border-bottom: 1px solid var(--border); }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.radio-item:hover { border-color: var(--navy); background: var(--off); }
.radio-item input[type="radio"] { width: 18px; height: 18px; accent-color: var(--navy); flex-shrink: 0; }
.radio-item label { cursor: pointer; font-size: 0.875rem; font-weight: 500; color: var(--text); }
.radio-item label small { display: block; color: var(--muted); font-weight: 400; margin-top: 2px; }
.checkbox-group { display: flex; flex-direction: column; gap: 8px; }
.checkbox-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; }
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--navy); flex-shrink: 0; }

/* ── GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; transition: var(--transition); }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── CTA BANNER ── */
.cta-banner { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(232,160,32,0.12) 0%, transparent 60%); }
.cta-banner-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── PHONE BUTTONS ── */
.phone-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.phone-btn-twinkle { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.phone-btn-twinkle:hover { background: rgba(255,255,255,0.18); }
.phone-btn-chandresh { background: rgba(232,160,32,0.15); color: var(--gold-light); border: 1px solid rgba(232,160,32,0.3); }
.phone-btn-chandresh:hover { background: rgba(232,160,32,0.25); }

/* ── BADGES ── */
.award-badge { display: inline-flex; align-items: center; gap: 12px; background: rgba(232,160,32,0.12); border: 1px solid rgba(232,160,32,0.3); border-radius: var(--radius); padding: 16px 22px; }
.award-badge .icon { font-size: 2rem; }
.award-badge .title { font-weight: 700; color: var(--gold-light); font-size: 0.88rem; }
.award-badge .sub { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.ndis-registered-badge { display: inline-flex; align-items: center; gap: 16px; background: var(--white); border: 2px solid var(--gold); border-radius: var(--radius); padding: 20px 28px; box-shadow: var(--shadow); }
.ndis-registered-badge img { height: 56px; width: auto; }
.ndis-badge-text .title { font-weight: 700; color: var(--navy); font-size: 1rem; }
.ndis-badge-text .details { font-size: 0.8rem; color: var(--muted); }

/* ── INFO BOX ── */
.info-box { border-radius: var(--radius); padding: 20px 24px; display: flex; align-items: flex-start; gap: 14px; }
.info-box.gold { background: var(--gold-bg); border: 1px solid var(--gold-border); }
.info-box.navy { background: var(--navy); color: var(--white); }
.info-box .icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-box .content h4 { font-family: 'Outfit', sans-serif; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.info-box.navy .content h4 { color: var(--gold-light); }
.info-box .content p { font-size: 0.875rem; color: var(--muted); }
.info-box.navy .content p { color: rgba(255,255,255,0.7); }

/* ── FOOTER ── */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.55); padding: 64px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.65; margin-bottom: 20px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 8px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-btn { width: 38px; height: 38px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: rgba(255,255,255,0.5); transition: var(--transition); font-weight: 700; }
.social-btn:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.footer-col a { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ── UTILITIES ── */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.tag { display: inline-block; background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-border); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── GOOGLE TRANSLATE HIDE DEFAULT ── */
.goog-te-banner-frame, .goog-te-balloon-frame { display: none !important; }
body { top: 0 !important; }
.goog-te-gadget { font-size: 0 !important; }
.goog-te-gadget .goog-te-combo { display: none; }
#google_translate_element { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .nav-links a { padding: 8px 7px; font-size: 0.79rem; }
  .logo-name { font-size: 0.9rem; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .instructor-card { grid-template-columns: 1fr; }
  .instructor-photo { width: 140px; height: 170px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 64px 0; }
  .scroll-section { padding: 56px 0; }
}

@media (max-width: 768px) {
  /* FOOTER MOBILE — single column, clean */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-inner > div { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .footer-inner > div:last-child { border: none; }
  .footer-col h4 { margin-bottom: 12px; }
  .footer-col a { margin-bottom: 8px; }
  /* Collapse footer link columns on mobile — show first 2 only, hide last 2 */
  .footer-col:nth-child(3), .footer-col:nth-child(4) { display: none; }
}

@media (max-width: 640px) {
  .three-col { grid-template-columns: 1fr; }
  .four-col { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { gap: 20px; }
  .anchor-bar-inner { padding: 0 12px; }
  .anchor-link { padding: 14px 14px; font-size: 0.78rem; }
  .hero-inner { grid-template-columns: 1fr !important; }
  .hero-inner > div:last-child { display: none; }
  /* .logo-sub { display: none; } — removed, show on all sizes */
}

/* ============================================
   V3 UPDATES
   ============================================ */

/* ── 1. MOBILE NAV: logo + lang + hamburger ── */
@media (max-width: 900px) {
  .nav-book { display: none !important; }
  .nav-right { gap: 8px; }
  .lang-select { display: flex !important; padding: 6px 8px; }
  .lang-select select { max-width: 80px; font-size: 0.75rem; }
}

/* ── 2. LOGO TEXT SPACING ── */
.nav-logo { gap: 12px; }
.nav-logo-text { gap: 2px; }
.logo-name { letter-spacing: -0.01em; }

/* ── 3. AWARDS GALLERY: natural proportions, no crop ── */
.awards-gallery .gallery-item {
  aspect-ratio: unset !important;
  height: auto !important;
}
.awards-gallery .gallery-item img {
  width: 100%; height: auto;
  object-fit: contain !important;
}

/* ── 4. DRIVE TEST: 2 cols on mobile ── */
@media (max-width: 640px) {
  .drive-test-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .drive-test-grid .price-card .price-amount { font-size: 1.6rem; }
  .drive-test-grid .price-card .price-header { padding: 16px; }
  .drive-test-grid .price-card .price-body { padding: 12px 16px; }
  .drive-test-grid .price-card > div:last-child { padding: 0 16px 16px; }
}

/* ── 5. CONTACT PAGE INSTRUCTOR PHOTOS ── */
.contact-instructor-photo {
  width: 100px; height: 120px;
  object-fit: cover; object-position: top;
  border-radius: 10px; margin: 0 auto 16px;
  display: block; border: 3px solid var(--gold);
}

/* ── 6. SERVICES AWARD BANNER ── */
.award-trust-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 48px 0; border-bottom: 3px solid var(--gold);
}

/* ── 7. GOOGLE TRANSLATE: hide top bar properly ── */
.goog-te-banner-frame,
.goog-te-balloon-frame,
.skiptranslate iframe,
#goog-gt-tt { display: none !important; }
.skiptranslate { display: none !important; }
body { top: 0 !important; position: static !important; }
.goog-te-gadget { font-size: 0 !important; line-height: 0; }

/* ── 9. PRICE CARD FEATURE ROWS — fix checkmark wrapping ── */
.price-feature-row {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted); line-height: 1.4;
}
.price-feature-row:last-child { border: none; }
.price-feature-row .tick { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-feature-row span { flex: 1; }
.booking-suburb-note {
  font-size: 0.76rem; color: var(--muted);
  margin-top: 6px; font-style: italic;
}

/* ── PACKAGE CARDS MOBILE ── */
@media (max-width: 640px) {
  .price-card .price-header { padding: 16px; }
  .price-card .price-header h3 { font-size: 0.85rem; }
  .price-card .price-amount { font-size: 1.6rem; }
  .price-card .price-note { font-size: 0.72rem; }
  .price-card .price-body { padding: 14px 16px; }
  .price-card .price-row { font-size: 0.78rem; padding: 7px 0; }
  .price-card > div:last-child { padding: 0 16px 16px; }
  .price-card .btn { font-size: 0.78rem; padding: 10px 8px; }
}

/* ── V4 UPDATES ── */

/* FAQ + Contact grids collapse on mobile */
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr !important; }
}

/* FAQ sidebar sticky — only on desktop */
@media (max-width: 900px) {
  .faq-sidebar { position: static !important; }
}

/* Pricing card feature rows — fix checkmark wrapping */
.price-features { padding: 20px 28px; }
.price-feature-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted); line-height: 1.45;
}
.price-feature-row:last-child { border: none; }
.price-feature-row .tick { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.price-feature-row span { flex: 1; }

/* Services award banner — mobile fix */
@media (max-width: 768px) {
  .award-trust-banner .two-col-award {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Logo sub — always visible */
.logo-sub { display: block !important; }

/* NDIS AI photos */
.ndis-photo-break {
  width: 100%; border-radius: var(--radius-lg);
  display: block; object-fit: cover;
}
