/* =====================================================================
   Glass Balustrade Sydney Authority — Static Stylesheet
   Single-file design system. Edit the tokens at the top to retheme.
   ===================================================================== */

/* --------------------- 1. Fonts (Google Fonts) -------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* --------------------- 2. Design tokens --------------------------- */
:root {
  --gba-navy: #1a2b6d;
  --gba-navy-2: #131f52;
  --gba-navy-3: #24399a;
  --gba-navy-hover: #122054;
  --gba-gold: #f5a623;
  --gba-gold-hover: #d98b16;
  --gba-grey: #f4f6fb;
  --gba-text: #2d2d2d;
  --gba-border: #e2e8f0;
  --gba-muted: rgba(45, 45, 45, 0.6);
  --container: 1280px;
}

/* --------------------- 3. Reset & base ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  color: var(--gba-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}
::selection { background: var(--gba-gold); color: var(--gba-navy); }

/* --------------------- 4. Layout helpers -------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
@media (min-width: 1024px) { .section { padding: 112px 0; } }

.text-center { text-align: center; }
.flex { display: flex; }
.grid { display: grid; }
.gap-3 { gap: 12px; } .gap-4 { gap: 16px; } .gap-6 { gap: 24px; } .gap-8 { gap: 32px; } .gap-10 { gap: 40px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none; }

/* --------------------- 5. Typography ------------------------------ */
.section-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gba-gold);
  margin-bottom: 16px;
}

.h1, h1 { font-size: clamp(36px, 6vw, 60px); font-weight: 900; line-height: 1.04; }
.h2, h2 { font-size: clamp(28px, 4.6vw, 48px); font-weight: 800; }
.h3, h3 { font-size: clamp(22px, 2.8vw, 32px); font-weight: 700; }
.h4 { font-size: 20px; font-weight: 600; font-family: 'Outfit', sans-serif; }
.lead { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.8); }
.text-navy { color: var(--gba-navy); }
.text-gold { color: var(--gba-gold); }
.text-white { color: #ffffff; }
.text-muted { color: var(--gba-muted); }
.italic { font-style: italic; }

/* --------------------- 6. Buttons --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
  text-align: center;
  font-size: 15px;
}
.btn-primary { background: var(--gba-gold); color: var(--gba-navy); box-shadow: 0 6px 20px -8px rgba(245,166,35,0.45); }
.btn-primary:hover { background: var(--gba-gold-hover); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--gba-navy); border-color: var(--gba-navy); }
.btn-secondary:hover { background: var(--gba-navy); color: #fff; }
.btn-secondary-inverse { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-secondary-inverse:hover { background: #fff; color: var(--gba-navy); border-color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* --------------------- 7. Header / Nav ---------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; width: 100%; }
.utility-bar { background: var(--gba-navy); color: #fff; }
.utility-bar__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 8px 24px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px;
}
.utility-bar__inner svg { width: 14px; height: 14px; color: var(--gba-gold); }
.utility-bar a { font-weight: 600; }
.utility-bar a:hover { color: var(--gba-gold); }

.main-nav {
  background: #fff;
  border-bottom: 1px solid var(--gba-border);
  box-shadow: 0 1px 0 rgba(26,43,109,0.04);
}
.main-nav__inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 1024px) { .main-nav__inner { padding: 0 32px; } }

.brand { display: flex; align-items: center; }
.brand__logo { max-height: 52px; width: auto; display: block; }
.brand__logo--footer { background: #fff; border-radius: 6px; padding: 6px 10px; max-height: 64px; }

.nav-links { display: none; align-items: center; gap: 28px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a, .nav-links button {
  background: transparent; border: 0; padding: 0;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--gba-navy); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color 180ms ease;
}
.nav-links a:hover, .nav-links button:hover, .nav-links a.active { color: var(--gba-gold); }
.nav-links svg { width: 14px; height: 14px; }

.nav-dropdown { position: relative; }
.nav-dropdown__panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 12px; width: 256px;
  opacity: 0; pointer-events: none;
  transition: opacity 180ms ease;
}
.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown:focus-within .nav-dropdown__panel { opacity: 1; pointer-events: auto; }
.nav-dropdown__inner {
  background: #fff; border: 1px solid var(--gba-border); border-radius: 10px;
  box-shadow: 0 20px 40px -16px rgba(26,43,109,0.18); padding: 8px 0;
}
.nav-dropdown__inner a {
  display: block; padding: 10px 16px; font-size: 14px; color: var(--gba-navy);
  text-transform: none; letter-spacing: normal; font-weight: 500;
  transition: background 150ms ease, color 150ms ease;
}
.nav-dropdown__inner a:hover { background: var(--gba-grey); color: var(--gba-gold); }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: inline-flex; padding: 12px 20px; font-size: 14px; } }

.hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: transparent; border: 0; color: var(--gba-navy);
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger svg { width: 24px; height: 24px; }

/* Mobile drawer */
.mobile-drawer { display: none; background: #fff; border-top: 1px solid var(--gba-border); }
.mobile-drawer[data-open="true"] { display: block; }
@media (min-width: 1024px) { .mobile-drawer { display: none !important; } }
.mobile-drawer ul { padding: 16px 24px; }
.mobile-drawer li { border-bottom: 1px solid var(--gba-border); }
.mobile-drawer a, .mobile-drawer .mobile-group__btn {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; background: transparent; border: 0; text-align: left;
  padding: 14px 8px; font-family: 'Outfit', sans-serif; font-weight: 600;
  color: var(--gba-navy); font-size: 15px;
}
.mobile-drawer a.active { color: var(--gba-gold); }
.mobile-drawer .mobile-group__sub { padding: 0 0 8px 16px; display: none; }
.mobile-drawer .mobile-group[data-open="true"] .mobile-group__sub { display: block; }
.mobile-drawer .mobile-group[data-open="true"] .mobile-group__btn svg { transform: rotate(180deg); }
.mobile-drawer .mobile-group__btn svg { width: 16px; height: 16px; transition: transform 200ms ease; }
.mobile-drawer .mobile-group__sub a { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500; font-size: 14px; color: var(--gba-text); padding: 8px 0; }
.mobile-drawer .mobile-cta { padding: 16px 0 8px; }

/* --------------------- 8. Hero (Home) ----------------------------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--gba-navy-2) 0%, var(--gba-navy) 40%, var(--gba-navy-3) 100%);
}
.hero__glow-1 { position: absolute; left: -130px; top: -160px; width: 560px; height: 560px; border-radius: 50%; background: rgba(245,166,35,0.15); filter: blur(60px); pointer-events: none; }
.hero__glow-2 { position: absolute; right: -10%; bottom: -25%; width: 640px; height: 640px; border-radius: 50%; background: rgba(255,255,255,0.05); filter: blur(80px); pointer-events: none; }
.hero__inner {
  position: relative; max-width: var(--container); margin: 0 auto;
  padding: 60px 24px 80px;
}
@media (min-width: 1024px) {
  .hero__inner { padding: 96px 32px 128px; }
}
.hero__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: 5fr 7fr; gap: 24px; } }

.hero__copy h1 { color: #fff; }
.hero__copy h1 .accent { display: block; color: var(--gba-gold); }
.hero__copy p { color: rgba(255,255,255,0.8); font-size: 18px; line-height: 1.7; max-width: 380px; margin: 20px 0 0; }
.hero__trust { margin: 28px 0 0; display: grid; gap: 12px; max-width: 380px; }
.hero__trust li { display: flex; align-items: center; gap: 12px; color: #fff; }
.hero__trust .ic { width: 36px; height: 36px; border-radius: 6px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); }
.hero__trust .ic svg { width: 16px; height: 16px; color: var(--gba-gold); }
.hero__trust span:last-child { font-weight: 600; }
.hero__ctas { margin: 36px 0 0; display: flex; flex-wrap: wrap; gap: 12px; max-width: 380px; }

.hero__media { position: relative; }
.hero__image-wrap {
  position: relative; border-radius: 28px; overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.6);
  outline: 1px solid rgba(255,255,255,0.1);
}
.hero__image-wrap img { width: 100%; height: 360px; object-fit: cover; }
@media (min-width: 640px) { .hero__image-wrap img { height: 480px; } }
@media (min-width: 1024px) { .hero__image-wrap img { height: 620px; } }
.hero__image-wrap::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,43,109,0.3), transparent 40%);
  pointer-events: none;
}
.hero__form-wrap { margin-top: 24px; }
@media (min-width: 1024px) {
  .hero__form-wrap {
    margin-top: 0;
    position: absolute; top: 50%; transform: translateY(-50%);
    left: -40px; width: 400px; z-index: 5;
  }
}
@media (min-width: 1280px) {
  .hero__form-wrap { left: -60px; width: 420px; }
}

/* Hero diagonal slant bottom */
.hero__slant { position: absolute; left: 0; bottom: 0; width: 100%; height: 6vw; min-height: 40px; color: #fff; }
.hero__slant svg { width: 100%; height: 100%; display: block; }

/* --------------------- 9. Form placeholder ----------------------- */
.form-card {
  background: #fff;
  border-radius: 16px;
  border-top: 6px solid var(--gba-gold);
  box-shadow: 0 24px 40px -16px rgba(0,0,0,0.25);
  overflow: hidden;
}
.form-card__body { padding: 28px; }
@media (min-width: 640px) { .form-card__body { padding: 32px; } }
.form-card__eyebrow { display: flex; align-items: center; gap: 8px; }
.form-card__eyebrow svg { width: 14px; height: 14px; color: var(--gba-gold); }
.form-card__title { color: var(--gba-navy); font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 24px; margin: 6px 0 18px; line-height: 1.15; }
@media (min-width: 640px) { .form-card__title { font-size: 26px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { margin-bottom: 12px; }
.field__label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(26,43,109,0.7); margin-bottom: 4px; }
.field__input,
.field__select,
.field__textarea {
  width: 100%; height: 44px; border-radius: 6px;
  border: 1px solid var(--gba-border);
  background: rgba(244,246,251,0.6);
}
.field__select { display: flex; align-items: center; padding: 0 12px; font-size: 14px; color: rgba(45,45,45,0.4); }
.field__textarea { height: 80px; }
.consent-row { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: rgba(45,45,45,0.7); margin-top: 4px; }
.consent-row .box { margin-top: 2px; width: 16px; height: 16px; border-radius: 4px; border: 1px solid var(--gba-border); background: #fff; flex-shrink: 0; }
.form-card__note { font-size: 11px; text-align: center; color: rgba(45,45,45,0.5); margin: 8px 0 0; }
.form-card__note a { color: var(--gba-navy); font-weight: 700; }
.form-card__reviews { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gba-border); display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.review-pill { text-align: center; }
.review-pill__src { font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--gba-navy); font-size: 14px; }
.review-pill__stars { display: flex; justify-content: center; gap: 2px; margin: 4px 0; }
.review-pill__stars svg { width: 12px; height: 12px; color: var(--gba-gold); fill: var(--gba-gold); }
.review-pill__rating { font-size: 10px; font-weight: 600; letter-spacing: 0.04em; color: rgba(45,45,45,0.6); }
.form-card__security { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gba-border); }
.form-card__security-badge { height: 36px; width: auto; display: block; }

/* --------------------- 10. Placeholder tile (no photos) ---------- */
.tile {
  position: relative; width: 100%; overflow: hidden;
  border-radius: 8px; border: 1px solid var(--gba-border);
  background-color: var(--gba-grey);
  background-image: radial-gradient(rgba(26,43,109,0.08) 1px, transparent 1px);
  background-size: 16px 16px;
}
.tile--navy {
  background-color: #23397e;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 14px);
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}
.tile--4-3 { aspect-ratio: 4 / 3; }
.tile--16-9 { aspect-ratio: 16 / 9; }
.tile--16-6 { aspect-ratio: 16 / 6; }
.tile--4-5 { aspect-ratio: 4 / 5; }
.tile--square { aspect-ratio: 1 / 1; }
.tile__inner {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 24px;
}
.tile__icon-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
  background: #fff;
}
.tile--navy .tile__icon-bubble { background: rgba(255,255,255,0.1); }
.tile__icon-bubble svg { width: 24px; height: 24px; color: var(--gba-navy); }
.tile--navy .tile__icon-bubble svg { color: var(--gba-gold); }
.tile__eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gba-gold); }
.tile__label { margin-top: 4px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px; line-height: 1.2; color: var(--gba-navy); }
.tile--navy .tile__label { color: #fff; }

/* --------------------- 11. Generic page hero --------------------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, var(--gba-navy-2) 0%, var(--gba-navy) 50%, var(--gba-navy-3) 100%);
}
.page-hero--grey { background: var(--gba-grey); color: var(--gba-navy); }
.page-hero__inner { position: relative; max-width: var(--container); margin: 0 auto; padding: 80px 24px 96px; }
@media (min-width: 1024px) { .page-hero__inner { padding: 96px 32px 112px; } }
.page-hero__inner h1 { max-width: 880px; }
.page-hero--grey h1 { color: var(--gba-navy); }
.page-hero__inner p { margin-top: 20px; max-width: 760px; font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.8); }
.page-hero--grey p { color: rgba(45,45,45,0.8); }
.page-hero__glow { position: absolute; left: -120px; top: -120px; width: 420px; height: 420px; border-radius: 50%; background: rgba(245,166,35,0.1); filter: blur(60px); pointer-events: none; }
.page-hero__glow--right { left: auto; right: -120px; }
.page-hero__slant { position: absolute; left: 0; bottom: 0; width: 100%; height: 6vw; min-height: 40px; color: #fff; }
.page-hero__slant svg { width: 100%; height: 100%; }

/* --------------------- 12. Common section blocks ----------------- */
.section--white { background: #fff; }
.section--grey { background: var(--gba-grey); }
.section--navy { background: var(--gba-navy); color: #fff; }

.section-head { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.section-head__title { max-width: 720px; }
.section-head__title h2 { color: var(--gba-navy); }
.section-head__link { font-size: 14px; font-weight: 600; color: var(--gba-navy); display: inline-flex; align-items: center; gap: 4px; }
.section-head__link:hover { color: var(--gba-gold); }
.section-head__link svg { width: 16px; height: 16px; }
.section--navy .section-head__title h2 { color: #fff; }

/* --------------------- 13. Service grid -------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 24px; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: #fff; border: 1px solid var(--gba-border); border-radius: 12px;
  overflow: hidden; transition: transform 250ms ease, box-shadow 250ms ease;
  display: block; color: var(--gba-text);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -20px rgba(26,43,109,0.18); }
.service-card__body { padding: 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.service-card__title { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gba-navy); font-size: 18px; line-height: 1.2; }
.service-card__sub { font-size: 12px; color: rgba(45,45,45,0.6); margin-top: 2px; }
.service-card__arrow { width: 36px; height: 36px; border-radius: 50%; background: var(--gba-grey); display: flex; align-items: center; justify-content: center; transition: background 200ms ease; flex-shrink: 0; }
.service-card:hover .service-card__arrow { background: var(--gba-gold); }
.service-card__arrow svg { width: 16px; height: 16px; color: var(--gba-navy); }
.service-card__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }

.additional-services {
  margin-top: 48px; background: var(--gba-grey); border-radius: 12px;
  padding: 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.pill {
  display: inline-flex; padding: 8px 16px;
  background: #fff; border: 1px solid var(--gba-border); border-radius: 999px;
  font-size: 14px; font-weight: 600; color: var(--gba-navy);
  cursor: pointer; transition: border-color 180ms ease;
}
.pill:hover { border-color: var(--gba-gold); }

/* --------------------- 14. Pull quote --------------------------- */
.pull-quote { background: #fff; padding: 64px 0; border-top: 1px solid var(--gba-border); border-bottom: 1px solid var(--gba-border); text-align: center; }
.pull-quote__stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 16px; }
.pull-quote__stars svg { width: 20px; height: 20px; color: var(--gba-gold); fill: var(--gba-gold); }
.pull-quote__text { font-family: 'Outfit', sans-serif; font-style: italic; color: var(--gba-navy); font-size: 22px; line-height: 1.45; max-width: 880px; margin: 0 auto; }
@media (min-width: 768px) { .pull-quote__text { font-size: 26px; } }
.pull-quote__attr { margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 14px; }
.pull-quote__google { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--gba-grey); color: var(--gba-navy); font-weight: 900; font-size: 11px; }

/* --------------------- 15. Two-col block ------------------------- */
.two-col { display: grid; gap: 40px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 56px; } }

/* --------------------- 16. Certification strip ------------------ */
.cert-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 640px) { .cert-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cert-grid { grid-template-columns: repeat(5, 1fr); } }
.cert-badge { background: #fff; border: 1px solid var(--gba-border); border-radius: 8px; padding: 20px 12px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.cert-badge svg { width: 28px; height: 28px; color: var(--gba-gold); stroke-width: 1.75; }
.cert-badge__label { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gba-navy); line-height: 1.2; }

/* --------------------- 17. Team / value cols -------------------- */
.team-section { background: var(--gba-navy); color: #fff; padding: 120px 0; position: relative; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 5vw), 0 100%); }
.team-section h2 { color: #fff; }
.team-section p { color: rgba(255,255,255,0.75); }
.value-cols { display: grid; gap: 32px; margin-top: 56px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .value-cols { grid-template-columns: repeat(3, 1fr); } }
.value-col { border-top: 2px solid var(--gba-gold); padding-top: 20px; }
.value-col__icon { width: 44px; height: 44px; border-radius: 6px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.value-col__icon svg { width: 20px; height: 20px; color: var(--gba-gold); }
.value-col h3 { color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 6px; }
.value-col p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; }

/* --------------------- 18. FAQ accordion ------------------------ */
.faq-section { background: var(--gba-navy); color: #fff; padding: 112px 0; }
.faq-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 7fr 5fr; } }
.faq-list { display: grid; gap: 12px; margin-top: 40px; }
.faq-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; overflow: hidden; }
.faq-item__btn {
  width: 100%; background: transparent; border: 0; color: #fff; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 20px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 17px;
}
.faq-item__icon { width: 32px; height: 32px; border-radius: 50%; background: var(--gba-gold); color: var(--gba-navy); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 220ms ease; }
.faq-item__icon svg { width: 16px; height: 16px; }
.faq-item[data-open="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { padding: 0 20px 20px; color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.7; max-width: 880px; display: none; }
.faq-item[data-open="true"] .faq-item__answer { display: block; }

.faq-side {
  background: #fff; color: var(--gba-text);
  border-radius: 12px; padding: 28px;
  box-shadow: 0 24px 50px -20px rgba(0,0,0,0.4);
  position: sticky; top: 132px;
}
.faq-side__avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--gba-grey); display: flex; align-items: center; justify-content: center; }
.faq-side__avatar svg { width: 22px; height: 22px; color: var(--gba-navy); }

/* Inline FAQ list (FAQs page) */
.faqs-list { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
.faqs-list .faq-item { background: #fff; border: 1px solid var(--gba-border); }
.faqs-list .faq-item__btn { color: var(--gba-navy); }
.faqs-list .faq-item__answer { color: rgba(45,45,45,0.8); }

/* --------------------- 19. Blog preview ------------------------- */
.blog-preview { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .blog-preview { grid-template-columns: 7fr 5fr; } }
.blog-preview__main { display: block; background: #fff; border: 1px solid var(--gba-border); border-radius: 12px; overflow: hidden; transition: box-shadow 250ms ease; color: var(--gba-text); }
.blog-preview__main:hover { box-shadow: 0 24px 40px -20px rgba(26,43,109,0.2); }
.blog-preview__main-body { padding: 28px; }
.blog-preview__main h3 { font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--gba-navy); font-size: 26px; line-height: 1.15; margin: 8px 0; }
.blog-preview__main p { color: rgba(45,45,45,0.7); line-height: 1.7; }
.blog-preview__main-keep { display: inline-flex; align-items: center; gap: 4px; margin-top: 20px; font-size: 14px; font-weight: 600; color: var(--gba-navy); }
.blog-preview__main-keep svg { width: 16px; height: 16px; }
.blog-preview__main-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

.blog-preview__side { display: flex; flex-direction: column; gap: 24px; }
.blog-preview__side a {
  display: flex; gap: 16px; padding: 16px;
  background: var(--gba-grey); border-radius: 12px; border: 1px solid transparent;
  transition: border-color 200ms ease; color: var(--gba-text);
}
.blog-preview__side a:hover { border-color: var(--gba-gold); }
.blog-preview__side .tile { width: 112px; flex-shrink: 0; border-radius: 8px; }
.blog-preview__side h4 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gba-navy); font-size: 16px; line-height: 1.3; margin: 4px 0 0; }
.blog-preview__side .tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gba-gold); }
.blog-preview__side .date { font-size: 12px; color: rgba(45,45,45,0.6); margin-top: 6px; }

/* Blog grid (blog.html) */
.blog-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: #fff; border: 1px solid var(--gba-border); border-radius: 12px; overflow: hidden; color: var(--gba-text); transition: transform 250ms ease, box-shadow 250ms ease; display: block; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -20px rgba(26,43,109,0.2); }
.blog-card__body { padding: 24px; }
.blog-card__tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gba-gold); }
.blog-card__title { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gba-navy); font-size: 18px; line-height: 1.3; margin: 8px 0 0; }
.blog-card__meta { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(45,45,45,0.6); }

/* Blog card image thumbnail */
.blog-card__thumb { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

/* Blog post article */
.blog-post { max-width: 780px; margin: 0 auto; }
.blog-post__hero-img { width: 100%; border-radius: 12px; display: block; margin: 0 0 40px; }
.blog-post h2 { font-family: 'Outfit', sans-serif; font-weight: 800; color: var(--gba-navy); font-size: 22px; margin: 48px 0 12px; }
@media (min-width: 768px) { .blog-post h2 { font-size: 26px; } }
.blog-post h3 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gba-navy); font-size: 18px; margin: 32px 0 10px; }
.blog-post p { line-height: 1.75; margin: 0 0 16px; }
.blog-post ul, .blog-post ol { padding-left: 20px; margin: 0 0 20px; }
.blog-post li { line-height: 1.7; margin-bottom: 6px; }
.blog-post strong { color: var(--gba-navy); font-weight: 700; }
.blog-post a { color: var(--gba-navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.blog-post a:hover { color: var(--gba-gold); }
.blog-post__intro-list { list-style: none; padding: 0; background: var(--gba-grey, #f5f6fa); border-radius: 10px; padding: 20px 24px; margin: 24px 0 40px; }
.blog-post__intro-list li { display: flex; gap: 10px; align-items: flex-start; padding: 5px 0; }
.blog-post__intro-list li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gba-gold); flex-shrink: 0; margin-top: 7px; }
.blog-post__table { width: 100%; border-collapse: collapse; margin: 24px 0 40px; font-size: 14px; }
.blog-post__table th { background: var(--gba-navy); color: #fff; text-align: left; padding: 12px 14px; font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.blog-post__table td { padding: 12px 14px; border-bottom: 1px solid var(--gba-border); vertical-align: top; }
.blog-post__table tr:last-child td { border-bottom: none; }
.blog-post__table tr:nth-child(even) td { background: #fafbff; }
.blog-post__cta-inline { background: var(--gba-navy); color: #fff; border-radius: 12px; padding: 28px 32px; margin: 40px 0; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
@media (min-width: 640px) { .blog-post__cta-inline { flex-direction: row; align-items: center; justify-content: space-between; } }
.blog-post__cta-inline p { margin: 0; font-size: 16px; font-weight: 600; }
.blog-post__breadcrumb { font-size: 13px; color: rgba(45,45,45,0.5); margin-bottom: 32px; }
.blog-post__breadcrumb a { color: var(--gba-navy); text-decoration: none; font-weight: 600; }
.blog-post__breadcrumb a:hover { color: var(--gba-gold); }
.blog-post__breadcrumb span { margin: 0 6px; }

/* --------------------- 20. CTA Banner ---------------------------- */
.cta-banner { position: relative; overflow: hidden; background: var(--gba-navy); color: #fff; padding: 96px 0; text-align: center; }
.cta-banner::before, .cta-banner::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.cta-banner::before { right: -120px; top: -120px; width: 480px; height: 480px; background: rgba(245,166,35,0.1); filter: blur(60px); }
.cta-banner::after { left: -160px; bottom: 0; width: 520px; height: 520px; background: rgba(255,255,255,0.05); filter: blur(80px); }
.cta-banner h2 { color: #fff; max-width: 880px; margin: 8px auto 0; }
.cta-banner__buttons { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-banner > .container { position: relative; z-index: 2; }

/* --------------------- 21. Testimonials ------------------------- */
.testimonial-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: #fff; border: 1px solid var(--gba-border); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; }
.testimonial-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.testimonial-card__google { width: 32px; height: 32px; border-radius: 50%; background: var(--gba-grey); display: inline-flex; align-items: center; justify-content: center; color: var(--gba-navy); font-weight: 900; }
.testimonial-card__stars { display: flex; gap: 2px; }
.testimonial-card__stars svg { width: 16px; height: 16px; color: var(--gba-gold); fill: var(--gba-gold); }
.testimonial-card__text { color: rgba(45,45,45,0.85); line-height: 1.7; flex: 1; margin-bottom: 20px; }
.testimonial-card__author { padding-top: 16px; border-top: 1px solid var(--gba-border); }
.testimonial-card__author strong { font-family: 'Outfit', sans-serif; color: var(--gba-navy); font-weight: 700; display: block; }
.testimonial-card__author span { font-size: 12px; color: rgba(45,45,45,0.6); }

/* --------------------- 22. Stats ------------------------------- */
.stats-grid { display: grid; gap: 32px; grid-template-columns: 1fr; text-align: center; max-width: 1100px; margin: 0 auto; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat { padding: 32px; border-top: 4px solid var(--gba-gold); }
.stat__value { font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--gba-navy); font-size: 56px; line-height: 1; }
@media (min-width: 768px) { .stat__value { font-size: 64px; } }
.stat__label { margin-top: 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(45,45,45,0.7); }

/* About story badge */
.about-story { display: grid; gap: 48px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1024px) { .about-story { grid-template-columns: 1fr 1fr; } }
.about-story__media { position: relative; }
.about-story__badge { position: absolute; right: -16px; bottom: -16px; width: 110px; height: 110px; border-radius: 50%; background: var(--gba-gold); color: var(--gba-navy); display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 900; box-shadow: 0 16px 30px rgba(0,0,0,0.2); }
.about-story__badge .est { font-size: 10px; letter-spacing: 0.2em; }
.about-story__badge .year { font-size: 32px; line-height: 1; }

/* --------------------- 23. Gallery ----------------------------- */
.gallery-filter-bar { background: #fff; padding: 32px 0; border-bottom: 1px solid var(--gba-border); position: sticky; top: 116px; z-index: 30; }
.filter-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.filter-btn {
  padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: #fff; color: var(--gba-navy); border: 2px solid rgba(26,43,109,0.2);
  transition: all 180ms ease; cursor: pointer;
}
.filter-btn:hover { border-color: var(--gba-navy); }
.filter-btn[data-active="true"] { background: var(--gba-navy); color: #fff; border-color: var(--gba-navy); }

.gallery-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-tile { position: relative; overflow: hidden; border-radius: 8px; cursor: pointer; border: 0; padding: 0; background: transparent; }
.gallery-tile .tile { border-radius: 8px; }
.gallery-tile__img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.project-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; border-radius: 8px; }
.team-img { width: 100%; aspect-ratio: 16 / 6; object-fit: cover; display: block; border-radius: 8px; }
.facility-img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; border-radius: 12px; }
.lightbox__img { width: 100%; max-height: 65vh; object-fit: contain; display: block; border-radius: 12px; }
.gallery-tile__overlay {
  position: absolute; inset: 0;
  background: rgba(26,43,109,0.9); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 280ms ease; padding: 20px; text-align: center;
}
.gallery-tile:hover .gallery-tile__overlay,
.gallery-tile:focus-visible .gallery-tile__overlay { opacity: 1; }
.gallery-tile__plus { width: 56px; height: 56px; border-radius: 50%; background: var(--gba-gold); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.gallery-tile__plus svg { width: 24px; height: 24px; color: var(--gba-navy); stroke-width: 3; }
.gallery-tile__cat { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gba-gold); }
.gallery-tile__title { font-family: 'Outfit', sans-serif; font-weight: 700; margin-top: 4px; }

.lightbox {
  position: fixed; inset: 0; background: rgba(26,43,109,0.95); z-index: 60;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox[data-open="true"] { display: flex; }
.lightbox__close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #fff; border: 0; display: inline-flex; align-items: center; justify-content: center; transition: all 180ms ease; }
.lightbox__close:hover { background: var(--gba-gold); color: var(--gba-navy); }
.lightbox__close svg { width: 20px; height: 20px; }
.lightbox__inner { max-width: 960px; width: 100%; }
.lightbox__inner .tile { border-radius: 12px; }
.lightbox__caption { margin-top: 16px; text-align: center; }
.lightbox__cat { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gba-gold); }
.lightbox__title { font-family: 'Outfit', sans-serif; font-weight: 700; color: #fff; font-size: 24px; margin-top: 4px; }

/* --------------------- 24. Service Areas ------------------------ */
.region-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .region-grid { grid-template-columns: repeat(2, 1fr); } }
.region-card { background: #fff; border: 1px solid var(--gba-border); border-radius: 12px; padding: 28px; transition: box-shadow 250ms ease; }
.region-card:hover { box-shadow: 0 24px 40px -20px rgba(26,43,109,0.18); }
.region-card__head { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.region-card__head svg { width: 16px; height: 16px; color: var(--gba-gold); }
.region-card__head h2 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gba-navy); font-size: 20px; }
.region-suburbs { display: flex; flex-wrap: wrap; gap: 8px; }
.region-suburbs span { padding: 6px 12px; background: var(--gba-grey); color: var(--gba-navy); border-radius: 999px; font-size: 12px; font-weight: 600; }
.region-card a { margin-top: 20px; display: inline-flex; align-items: center; gap: 4px; color: var(--gba-navy); font-weight: 600; font-size: 14px; }
.region-card a:hover { color: var(--gba-gold); }

/* --------------------- 25. Cost Guide ---------------------------- */
.tier-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }
.tier { background: #fff; border: 1px solid var(--gba-border); border-radius: 12px; padding: 28px; display: flex; flex-direction: column; }
.tier--featured { background: var(--gba-navy); border-color: var(--gba-navy); color: #fff; box-shadow: 0 24px 40px -20px rgba(26,43,109,0.4); }
@media (min-width: 768px) { .tier--featured { transform: translateY(-16px); } }
.tier__icon { display: flex; align-items: center; gap: 8px; }
.tier__icon svg { width: 20px; height: 20px; color: var(--gba-gold); }
.tier__icon span { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.tier__price { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 32px; line-height: 1; margin-top: 16px; }
@media (min-width: 768px) { .tier__price { font-size: 36px; } }
.tier__unit { margin-top: 4px; font-size: 14px; color: rgba(45,45,45,0.6); }
.tier--featured .tier__unit { color: rgba(255,255,255,0.7); }
.tier__includes { margin-top: 24px; flex: 1; }
.tier__includes li { display: flex; gap: 8px; font-size: 14px; padding: 4px 0; }
.tier__includes svg { width: 16px; height: 16px; color: var(--gba-gold); flex-shrink: 0; margin-top: 4px; }
.tier__best { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--gba-border); }
.tier--featured .tier__best { border-color: rgba(255,255,255,0.15); }
.tier__best-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gba-gold); }
.tier__cta { margin-top: 20px; padding: 12px; border-radius: 6px; font-weight: 800; text-align: center; font-family: 'Outfit', sans-serif; transition: background 180ms ease; }
.tier .tier__cta { background: var(--gba-navy); color: #fff; }
.tier:hover .tier__cta { background: var(--gba-navy-hover); }
.tier--featured .tier__cta { background: var(--gba-gold); color: var(--gba-navy); }
.tier--featured:hover .tier__cta { background: var(--gba-gold-hover); }

.factor-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .factor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .factor-grid { grid-template-columns: repeat(3, 1fr); } }
.factor { background: #fff; border: 1px solid var(--gba-border); border-radius: 12px; padding: 24px; }
.factor__num { width: 36px; height: 36px; border-radius: 6px; background: var(--gba-grey); display: inline-flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--gba-navy); margin-bottom: 12px; }
.factor h3 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gba-navy); font-size: 18px; }
.factor p { margin-top: 8px; font-size: 14px; line-height: 1.7; color: rgba(45,45,45,0.75); }

/* --------------------- 26. Safety ------------------------------- */
.safety-checklist { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .safety-checklist { grid-template-columns: repeat(2, 1fr); } }
.safety-checklist li { background: var(--gba-grey); border: 1px solid var(--gba-border); border-radius: 8px; padding: 20px; display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.safety-checklist svg { width: 20px; height: 20px; color: var(--gba-gold); flex-shrink: 0; margin-top: 2px; }
.safety-cat-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .safety-cat-grid { grid-template-columns: 1fr 1fr; } }
.safety-cat { background: #fff; border: 1px solid var(--gba-border); border-radius: 12px; padding: 32px; }
.safety-cat__icon { width: 48px; height: 48px; border-radius: 6px; background: var(--gba-navy); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.safety-cat__icon svg { width: 24px; height: 24px; color: var(--gba-gold); }
.safety-cat h3 { font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--gba-navy); font-size: 24px; }
.safety-cat p { color: rgba(45,45,45,0.8); line-height: 1.7; margin-top: 12px; }

/* --------------------- 27. Financing ---------------------------- */
.fin-grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .fin-grid { grid-template-columns: 1fr 1fr; } }
.fin-card { background: #fff; border: 1px solid var(--gba-border); border-radius: 12px; padding: 32px; }
.fin-card__icon { width: 48px; height: 48px; border-radius: 6px; background: var(--gba-navy); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.fin-card__icon svg { width: 24px; height: 24px; color: var(--gba-gold); }
.fin-card h3 { font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--gba-navy); font-size: 24px; }
.fin-card p { color: rgba(45,45,45,0.8); line-height: 1.7; margin-top: 12px; }
.fin-card ul { margin-top: 20px; display: grid; gap: 10px; }
.fin-card li { display: flex; gap: 8px; font-size: 14px; }
.fin-card svg.checkmark { width: 16px; height: 16px; color: var(--gba-gold); flex-shrink: 0; margin-top: 4px; }
.process-grid { display: grid; gap: 24px; grid-template-columns: 1fr; text-align: left; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
.process-step { background: #fff; border: 1px solid var(--gba-border); border-radius: 12px; padding: 28px; }
.process-step__num { font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--gba-gold); font-size: 28px; }
.process-step h3 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gba-navy); font-size: 18px; margin-top: 8px; }
.process-step p { font-size: 14px; line-height: 1.7; color: rgba(45,45,45,0.75); margin-top: 8px; }

/* --------------------- 28. Map placeholder ---------------------- */
.map-placeholder {
  width: 100%; height: 420px; border-radius: 12px; overflow: hidden;
  border: 2px dashed rgba(26,43,109,0.2);
  background: var(--gba-grey);
  position: relative;
}
.map-placeholder__pattern { position: absolute; inset: 0; background-image: radial-gradient(rgba(26,43,109,0.08) 1px, transparent 1px); background-size: 16px 16px; opacity: 0.8; }
.map-placeholder__inner { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 32px; }
.map-placeholder__pin { width: 56px; height: 56px; border-radius: 50%; background: var(--gba-navy); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; box-shadow: 0 16px 30px rgba(0,0,0,0.2); }
.map-placeholder__pin svg { width: 24px; height: 24px; color: var(--gba-gold); }
.map-placeholder h3 { font-family: 'Outfit', sans-serif; font-weight: 900; color: var(--gba-navy); font-size: 24px; margin: 8px 0 4px; }
.map-placeholder p { font-size: 14px; color: rgba(45,45,45,0.7); max-width: 360px; margin: 0; }
.map-placeholder small { margin-top: 16px; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(26,43,109,0.4); }

/* Contact split */
.contact-hero-grid { display: grid; gap: 48px; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 1024px) { .contact-hero-grid { grid-template-columns: 7fr 5fr; } }
.contact-blockquote { font-style: italic; color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1.7; max-width: 640px; border-left: 4px solid var(--gba-gold); padding-left: 20px; margin: 24px 0; }
.contact-author { display: flex; align-items: center; gap: 12px; }
.contact-author__avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.contact-author__avatar svg { width: 22px; height: 22px; color: var(--gba-gold); }
.contact-author strong { font-family: 'Outfit', sans-serif; font-weight: 700; }
.contact-author small { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; }
.contact-rows { margin-top: 32px; display: grid; gap: 12px; }
.contact-row { display: flex; align-items: center; gap: 12px; color: #fff; transition: color 180ms ease; }
.contact-row:hover { color: var(--gba-gold); }
.contact-row__ic { width: 40px; height: 40px; border-radius: 6px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row__ic svg { width: 16px; height: 16px; color: var(--gba-gold); }
.address-grid { margin-top: 28px; display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .address-grid { grid-template-columns: 1fr 1fr; } }
.address-card { border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); border-radius: 6px; padding: 20px; }
.address-card__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.address-card__head svg { width: 14px; height: 14px; color: var(--gba-gold); }
.address-card__head span { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gba-gold); font-size: 11px; letter-spacing: 0.18em; }
.address-card__body { color: rgba(255,255,255,0.85); font-size: 14px; line-height: 1.6; }

/* --------------------- 29. Footer ------------------------------ */
.site-footer { background: var(--gba-navy); color: #fff; padding: 80px 0 0; }
.footer-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 4fr 8fr; } }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; margin: 16px 0 24px; }
.footer-contact { display: grid; gap: 10px; margin-bottom: 24px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #fff; transition: color 180ms ease; }
.footer-contact a:hover { color: var(--gba-gold); }
.footer-contact svg { width: 16px; height: 16px; color: var(--gba-gold); }
.footer-cols { display: grid; gap: 32px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gba-gold); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 180ms ease; }
.footer-col a:hover { color: var(--gba-gold); }
.footer-bottom { margin-top: 64px; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 16px; align-items: flex-start; justify-content: space-between; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-social { display: flex; align-items: center; gap: 16px; }
.footer-social__label { font-size: 14px; color: rgba(255,255,255,0.7); }
.footer-social__icons { display: flex; gap: 10px; }
.footer-social__icons a { width: 36px; height: 36px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.2); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; transition: all 180ms ease; color: #fff; }
.footer-social__icons a:hover { background: var(--gba-gold); border-color: var(--gba-gold); color: var(--gba-navy); }
.footer-social__icons svg { width: 16px; height: 16px; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gba-gold); }
.footer-certifications { margin-top: 48px; text-align: center; }
.footer-certifications__title { font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin: 0 0 16px; }
.footer-certifications__logos img { max-height: 72px; width: auto; max-width: 100%; display: block; margin: 0 auto; }

/* --------------------- 30. Sticky mobile CTA --------------------- */
.sticky-cta {
  position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 40;
  display: flex; gap: 12px;
}
@media (min-width: 1024px) { .sticky-cta { display: none; } }
.sticky-cta a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px; border-radius: 6px; font-weight: 800; font-family: 'Outfit', sans-serif; font-size: 14px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.2);
}
.sticky-cta a:first-child { background: #fff; color: var(--gba-navy); border: 2px solid var(--gba-navy); }
.sticky-cta a:last-child { background: var(--gba-gold); color: var(--gba-navy); }

/* --------------------- 31. Reveal animation ---------------------- */
@keyframes gba-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: gba-fade-up 700ms ease both; }

/* --------------------- 32. Misc tile-stack helpers --------------- */
.tile-stack-thumb { width: 112px; flex-shrink: 0; }

/* --------------------- 33. Responsive image utilities ------------ */
img[loading="lazy"] { background: var(--gba-grey); }
