/* ============================================================
   ADVENTURE HUB EDUCATION — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Barlow:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ── Variables ── */
:root {
  --dk:     #2D6A2E;
  --fg:     #3A9B4B;
  --yw:     #F5C518;
  --or:     #F07E10;
  --nv:     #1E3A52;
  --bk:     #111111;
  --wh:     #ffffff;
  --of:     #F7F6F2;
  --br:     #E2DDD4;
  --muted:  #6B7280;
  --hd:     'Barlow Condensed', sans-serif;
  --bd:     'Barlow', sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--bd);
  background: var(--of);
  color: var(--bk);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Navigation ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--dk);
  border-bottom: 3px solid var(--or);
  height: 60px;
  display: flex; align-items: center;
  padding: 0 40px;
  gap: 0;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-badge {
  display: flex; align-items: center; justify-content: center;
}
.nav-badge img { height: 38px; width: auto; }
.nav-brand {
  font-family: var(--hd);
  font-size: 16px; font-weight: 800;
  color: var(--wh);
  letter-spacing: .05em; text-transform: uppercase;
  line-height: 1;
}
.nav-brand span {
  display: block; font-size: 9px; font-weight: 500;
  letter-spacing: .08em; color: rgba(255,255,255,.5);
  text-transform: uppercase; margin-top: 1px;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  font-family: var(--hd);
  font-size: 14px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  padding: 8px 14px; border-radius: 5px;
  transition: all .15s;
}
.nav-links a:hover { color: var(--wh); background: rgba(255,255,255,.08); }
.nav-links a.active { color: var(--yw); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--or);
  color: var(--wh) !important;
  font-family: var(--hd) !important;
  font-size: 13px !important; font-weight: 800 !important;
  letter-spacing: .07em !important; text-transform: uppercase !important;
  border-radius: 5px;
  padding: 9px 18px !important;
  text-decoration: none;
  transition: background .15s !important;
  margin-left: 10px;
}
.nav-cta:hover { background: var(--yw) !important; color: var(--bk) !important; }

/* hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto; color: var(--wh);
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: currentColor; margin: 5px 0; transition: all .2s;
}

/* ── Page offset for fixed nav ── */
.page-wrap { padding-top: 60px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--hd);
  font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  border: none; border-radius: 6px; cursor: pointer;
  text-decoration: none; transition: all .15s;
  white-space: nowrap;
}
.btn-lg  { font-size: 17px; padding: 18px 36px; }
.btn-md  { font-size: 14px; padding: 13px 24px; }
.btn-sm  { font-size: 12px; padding: 9px 18px; }
.btn-primary { background: var(--or); color: var(--wh); }
.btn-primary:hover { background: #d96a07; }
.btn-green  { background: var(--dk); color: var(--wh); }
.btn-green:hover { background: var(--fg); }
.btn-ghost  { background: transparent; color: var(--wh); border: 2px solid rgba(255,255,255,.45); }
.btn-ghost:hover { border-color: var(--wh); background: rgba(255,255,255,.08); }
.btn-ghost-dk { background: transparent; color: var(--dk); border: 2px solid var(--dk); }
.btn-ghost-dk:hover { background: var(--dk); color: var(--wh); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ── Section Layout ── */
.section { padding: 88px 40px; }
.section-sm { padding: 60px 40px; }
.container { max-width: 1140px; margin: 0 auto; }
.container-sm { max-width: 800px; margin: 0 auto; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--hd); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--or); margin-bottom: 14px;
}
.section-tag::before { content: ''; width: 24px; height: 3px; background: var(--or); }
.section-tag.light { color: var(--yw); }
.section-tag.light::before { background: var(--yw); }

.section-title {
  font-family: var(--hd);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900; text-transform: uppercase;
  color: var(--dk); line-height: 1; margin-bottom: 14px;
}
.section-title.wh { color: var(--wh); }
.section-sub {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  max-width: 580px; margin-bottom: 48px;
}
.section-sub.wh { color: rgba(255,255,255,.65); }

/* ── Page Hero (interior pages) ── */
.page-hero {
  background: var(--dk);
  padding: 72px 40px 80px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--or) 0%, var(--yw) 50%, var(--or) 100%);
}
.page-hero-bg {
  position: absolute; right: -40px; bottom: -60px;
  font-family: var(--hd); font-size: 260px; font-weight: 900;
  color: rgba(255,255,255,.04); line-height: 1;
  pointer-events: none; user-select: none;
  white-space: nowrap; letter-spacing: -.02em;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--or); color: var(--wh);
  font-family: var(--hd); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px;
  margin-bottom: 24px; width: fit-content;
}
.page-hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; background: var(--yw); border-radius: 50%;
}
.page-hero h1 {
  font-family: var(--hd); font-weight: 900;
  font-size: clamp(48px, 7vw, 80px);
  color: var(--wh); line-height: .95;
  text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: 20px;
}
.page-hero h1 em { color: var(--yw); font-style: normal; }
.page-hero p {
  font-size: 17px; color: rgba(255,255,255,.7);
  max-width: 560px; line-height: 1.65;
}

/* ── Cards ── */
.card {
  background: var(--wh); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.card-body { padding: 28px 32px; }
.card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.card-tag {
  display: inline-block; font-family: var(--hd); font-size: 11px;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--or); margin-bottom: 8px;
}
.card-title {
  font-family: var(--hd); font-size: 24px; font-weight: 800;
  text-transform: uppercase; color: var(--dk);
  margin-bottom: 10px; line-height: 1.1;
}
.card-text { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Stats / Trust Bar ── */
.trust-bar {
  background: var(--or);
  padding: 28px 40px;
}
.trust-bar-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  text-align: center; padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.25);
}
.trust-item:last-child { border: none; }
.trust-num {
  font-family: var(--hd); font-size: 44px; font-weight: 900;
  color: var(--wh); line-height: 1;
}
.trust-label {
  font-size: 12px; color: rgba(255,255,255,.8);
  margin-top: 4px; line-height: 1.4; font-weight: 500;
}

/* ── Testimonial ── */
.testimonial-block {
  background: var(--nv); padding: 80px 40px;
}
.testimonial-inner {
  max-width: 820px; margin: 0 auto; text-align: center;
}
.testimonial-quote-mark {
  font-family: var(--hd); font-size: 100px; font-weight: 900;
  color: var(--or); line-height: .5; margin-bottom: 24px;
}
.testimonial-text {
  font-size: clamp(18px, 2.5vw, 22px); font-style: italic;
  color: var(--wh); line-height: 1.65; margin-bottom: 32px;
}
.testimonial-attr {
  font-family: var(--hd); font-size: 15px; font-weight: 700;
  color: var(--yw); letter-spacing: .06em; text-transform: uppercase;
}
.testimonial-school { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 4px; }
.testimonial-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 6px 16px;
  font-size: 12px; color: rgba(255,255,255,.5);
  font-style: normal; margin-top: 20px;
}

/* ── CTA Banner ── */
.cta-banner { background: var(--yw); padding: 80px 40px; text-align: center; }
.cta-banner h2 {
  font-family: var(--hd); font-size: clamp(36px, 5vw, 56px);
  font-weight: 900; text-transform: uppercase;
  color: var(--dk); line-height: 1; margin-bottom: 14px;
}
.cta-banner p {
  font-size: 16px; color: rgba(45,106,46,.75);
  max-width: 480px; margin: 0 auto 36px; line-height: 1.6;
}
.cta-banner-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ── Location Badge ── */
.location-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--hd); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  background: var(--dk); color: var(--wh);
  border-radius: 4px; padding: 4px 12px;
}
.location-badge.qld { background: var(--nv); }
.location-badge svg { width: 11px; height: 11px; }

/* ── Program Card ── */
.program-card {
  background: var(--wh); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.program-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.program-card-img {
  width: 100%; height: 200px; object-fit: cover;
}
.program-card-img-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--dk) 0%, var(--fg) 100%);
  display: flex; align-items: center; justify-content: center;
}
.program-card-img-placeholder svg { width: 48px; height: 48px; color: rgba(255,255,255,.25); }
.program-card-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.program-card-tag {
  font-family: var(--hd); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--or); margin-bottom: 6px;
}
.program-card-title {
  font-family: var(--hd); font-size: 22px; font-weight: 800;
  text-transform: uppercase; color: var(--dk);
  line-height: 1.1; margin-bottom: 10px;
}
.program-card-text { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.program-card-meta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px;
  padding-top: 16px; border-top: 1px solid var(--br);
}
.meta-chip {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--muted); font-weight: 500;
}
.meta-chip svg { width: 13px; height: 13px; color: var(--dk); flex-shrink: 0; }

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Two-col split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-visual { order: -1; }
.split-visual {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); aspect-ratio: 4/3; background: var(--dk);
}
.split-visual img { width: 100%; height: 100%; object-fit: cover; }
.split-visual-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--dk) 0%, var(--nv) 100%);
  display: flex; align-items: center; justify-content: center;
}
.split-visual-placeholder svg { width: 64px; height: 64px; color: rgba(255,255,255,.18); }

/* ── Feature list ── */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.55;
}
.feature-list li::before {
  content: '';
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--dk); flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 10l4 4.5 7.5-7.5' stroke='%23F5C518' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}

/* ── Stat/number display ── */
.big-stat { text-align: center; }
.big-stat-num {
  font-family: var(--hd); font-size: 64px; font-weight: 900;
  color: var(--or); line-height: 1;
}
.big-stat-label { font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ── Contact form ── */
.contact-section { background: var(--wh); padding: 80px 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-title {
  font-family: var(--hd); font-size: 42px; font-weight: 900;
  text-transform: uppercase; color: var(--dk);
  line-height: 1; margin-bottom: 16px;
}
.contact-phone-link {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--hd); font-size: 36px; font-weight: 900;
  color: var(--or); text-decoration: none;
  line-height: 1; margin-bottom: 8px;
  transition: color .15s;
}
.contact-phone-link:hover { color: var(--dk); }
.contact-phone-link svg { width: 32px; height: 32px; }
.contact-phone-sub { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--bk); margin-bottom: 12px;
}
.contact-detail svg { width: 18px; height: 18px; color: var(--dk); flex-shrink: 0; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block; font-size: 12px; font-weight: 600;
  color: #444; margin-bottom: 5px; letter-spacing: .03em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--br); border-radius: 6px;
  font-family: var(--bd); font-size: 15px; color: var(--bk);
  background: var(--of); transition: border-color .15s; outline: none;
  resize: vertical;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--dk); background: var(--wh); }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-submit {
  width: 100%; padding: 16px; background: var(--dk);
  color: var(--wh); font-family: var(--hd); font-size: 16px;
  font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: 6px; cursor: pointer;
  transition: background .15s;
}
.form-submit:hover { background: var(--or); }
.form-note { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ── Footer ── */
.site-footer {
  background: var(--bk); padding: 56px 40px 32px;
  border-top: 4px solid var(--or);
}
.footer-grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
  font-family: var(--hd); font-size: 18px; font-weight: 800;
  color: var(--wh); text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 12px;
}
.footer-brand-text {
  font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65;
  max-width: 280px; margin-bottom: 24px;
}
.footer-phone {
  font-family: var(--hd); font-size: 22px; font-weight: 800;
  color: var(--or); text-decoration: none; display: block;
  margin-bottom: 4px; transition: color .15s;
}
.footer-phone:hover { color: var(--yw); }
.footer-phone-label { font-size: 11px; color: rgba(255,255,255,.3); }
.footer-col-title {
  font-family: var(--hd); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--yw); }
.footer-bottom {
  max-width: 1140px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,.25); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.5); }

/* ── QLD Coming Soon ribbon ── */
.coming-soon-ribbon {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--or); color: var(--wh);
  font-family: var(--hd); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 4px;
  margin-bottom: 10px;
}
.coming-soon-ribbon::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yw);
}

/* ── Section divider ── */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--dk) 0%, var(--fg) 50%, var(--or) 100%);
}

/* ── Resource card ── */
.resource-card {
  background: var(--wh); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 36px 32px;
  border-top: 4px solid var(--dk);
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow .2s, transform .2s;
}
.resource-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.resource-icon {
  width: 52px; height: 52px; background: var(--of);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.resource-icon svg { width: 26px; height: 26px; color: var(--dk); }
img.web-icon { mix-blend-mode: multiply; display: block; }
img.web-icon-dk { filter: invert(1); mix-blend-mode: screen; display: block; }
.resource-card-tag {
  font-family: var(--hd); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--or);
}
.resource-card-title {
  font-family: var(--hd); font-size: 22px; font-weight: 800;
  text-transform: uppercase; color: var(--dk); line-height: 1.1;
}
.resource-card-text { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; }

/* ── Utility ── */
.text-center { text-align: center; }
.mb-6 { margin-bottom: 6px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* ── Responsive ── */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); padding: 12px 0; }
  .trust-item:last-child, .trust-item:nth-child(2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0; background: var(--dk); padding: 20px; gap: 4px; border-bottom: 3px solid var(--or); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 15px; }
  .nav-cta { margin-left: 0; }
  .nav-toggle { display: block; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .section { padding: 60px 20px; }
  .section-sm { padding: 40px 20px; }
  .page-hero { padding: 48px 20px 56px; }
  .page-hero h1 { font-size: 48px; }
  .trust-bar { padding: 28px 20px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-num { font-size: 36px; }
  .testimonial-block { padding: 60px 20px; }
  .cta-banner { padding: 60px 20px; }
  .contact-section { padding: 60px 20px; }
  .contact-phone-link { font-size: 28px; }
  .site-footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero-bg { font-size: 120px; }
}

@media (max-width: 480px) {
  .btn-lg { font-size: 15px; padding: 16px 24px; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
}
