:root {
  --purple: #5B2E91;
  --purple-dark: #41206A;
  --purple-deep: #2A1447;
  --blue: #1E9EE8;
  --light-purple: #F3EDF9;
  --dark: #1F1F1F;
  --text: #1F1F1F;
  --muted: #6B6B6B;
  --grey: #F7F6F9;
  --grey-border: #E5E2EA;
  --white: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  background: var(--white);
}

h1, h2, h3, h4, h5 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-weight: 700;
}

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  position: sticky; top: 0; z-index: 100;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px; max-width: 1320px; margin: 0 auto;
  gap: 20px;
}
.nav-logo {
  font-family: Arial, Helvetica, sans-serif;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo img { width: 38px; height: 38px; object-fit: contain; }
.nav-logo .wordmark {
  display: flex; flex-direction: column; line-height: 1.05;
}
.nav-logo .wordmark .top {
  font-weight: 800; font-size: 16px; color: var(--dark);
  letter-spacing: -0.01em;
}
.nav-logo .wordmark .bottom {
  display: none; /* kept in HTML, only shown on larger viewports via media query */
  font-weight: 600; font-size: 10px; color: var(--purple);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px;
}
.nav-menu { display: flex; gap: 22px; list-style: none; }
.nav-menu a {
  color: var(--dark); font-weight: 600; font-size: 14px;
  padding: 8px 0; position: relative;
}
.nav-menu a:hover { color: var(--purple); text-decoration: none; }
.nav-menu a.active { color: var(--purple); }
.nav-menu a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 3px; background: var(--purple); border-radius: 2px;
}
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-phone { color: var(--dark); font-weight: 700; font-size: 13px; margin-right: 4px; }
.nav-phone:hover { color: var(--purple); text-decoration: none; }
.nav-login {
  border: 1.5px solid transparent; padding: 7px 12px; border-radius: 6px;
  font-weight: 700; font-size: 12px; transition: all 0.15s;
  display: inline-flex; align-items: center; gap: 5px;
  cursor: pointer;
}
.nav-login .icon { font-size: 12px; }
.nav-login-staff {
  border-color: var(--purple); color: var(--purple);
}
.nav-login-staff:hover { background: var(--purple); color: var(--white); text-decoration: none; }
.nav-login-family {
  background: var(--purple); color: var(--white);
  border-color: var(--purple);
}
.nav-login-family:hover { background: var(--purple-dark); border-color: var(--purple-dark); color: var(--white); text-decoration: none; }

@media (min-width: 1280px) {
  .nav-logo .wordmark .bottom { display: block; }
}
@media (max-width: 1200px) {
  .nav-phone { display: none; }
}
@media (max-width: 1050px) {
  .nav-login .icon { display: none; }
  .nav-login { padding: 7px 10px; }
}
@media (max-width: 900px) {
  .nav-login { display: none; }
  .nav-logo .wordmark { display: none; }
  .nav-menu { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 16px; cursor: pointer;
  transition: all 0.2s; text-align: center; border: 2px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
}
.btn-primary { background: var(--purple); color: var(--white); }
.btn-primary:hover { background: var(--purple-dark); text-decoration: none;
  transform: translateY(-1px); box-shadow: 0 4px 12px rgba(139,47,201,0.3); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--purple); text-decoration: none; }
.btn-outline-purple { background: transparent; border-color: var(--purple); color: var(--purple); }
.btn-outline-purple:hover { background: var(--purple); color: var(--white); text-decoration: none; }
.btn-white { background: var(--white); color: var(--purple); }
.btn-white:hover { background: var(--light-purple); text-decoration: none; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 560px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
  background-size: cover; background-position: center;
  overflow: hidden;
}
.hero.has-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,20,71,0.78) 0%, rgba(91,46,145,0.62) 100%);
  z-index: 1;
}
.hero::before {
  content: '[BACKGROUND PHOTO: Wide group activity shot — participants + staff outdoors, natural light]';
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 16px;
  color: rgba(255,255,255,0.35); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; pointer-events: none;
  font-family: 'Open Sans', sans-serif;
}
.hero-inner {
  position: relative; z-index: 2; max-width: 800px; padding: 80px 24px;
  margin: 0 auto; text-align: center; color: var(--white);
}
.hero h1 {
  font-size: 56px; color: var(--white); margin-bottom: 20px;
  letter-spacing: -0.03em; text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero p.subtitle {
  font-size: 20px; color: var(--white); opacity: 0.95;
  margin-bottom: 36px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tight { padding: 48px 0; }
.section-grey { background: var(--grey); }
.section-light-purple { background: var(--light-purple); }
.section-purple {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
}
.section-purple h2, .section-purple h3 { color: var(--white); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header h2 {
  font-size: 40px; margin-bottom: 16px;
}
.section-header p { font-size: 18px; color: var(--muted); }
.section-header.on-purple p { color: rgba(255,255,255,0.9); }

.eyebrow {
  display: inline-block; color: var(--purple); font-weight: 700;
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 12px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; text-align: center;
}
.trust-stat .num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 52px; font-weight: 800;
  color: var(--purple);
  display: block; line-height: 1;
}
.trust-stat .label {
  color: var(--muted); font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 10px; font-weight: 600;
}

/* ===== WHO WE ARE ===== */
.who-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.who-inner h2 { font-size: 44px; margin-bottom: 24px; }
.who-inner p { font-size: 18px; margin-bottom: 20px; color: var(--text); }
.who-inner .btn { margin-top: 24px; }

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1px solid var(--grey-border);
  transition: all 0.2s;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: var(--purple);
}
.service-img {
  height: 200px;
  background: linear-gradient(135deg, var(--light-purple), #D4BDF2);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-size: 13px; text-align: center; padding: 20px;
  font-weight: 600;
}
.service-img.alt1 { background: linear-gradient(135deg, #D0EFFD, #A0DCF8); color: #0C6FA8; }
.service-img.alt2 { background: linear-gradient(135deg, #FFE4E1, #F8C5C0); color: #B54A3F; }
.service-img.alt3 { background: linear-gradient(135deg, #E4F5E1, #B8E0B0); color: #3D7A2E; }
.service-img.alt4 { background: linear-gradient(135deg, #FFF3D6, #F4D98A); color: #8A5A0E; }
.service-img.alt5 { background: linear-gradient(135deg, #F3E8FF, #C49BE6); color: #6B1FA3; }
.service-body { padding: 28px; }
.service-body h3 {
  font-size: 20px; margin-bottom: 10px;
}
.service-body p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.service-body .learn {
  color: var(--purple); font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ===== WHY BSS ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.why-item { text-align: center; padding: 0 12px; }
.why-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--light-purple); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.why-item h3 { font-size: 22px; margin-bottom: 12px; }
.why-item p { color: var(--muted); font-size: 15px; }

/* ===== LOCATIONS ===== */
.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.location-card {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: 16px; overflow: hidden; position: relative;
}
.location-img {
  height: 180px;
  background: linear-gradient(135deg, #4A1670, #8B2FC9);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 12px; text-align: center; padding: 20px;
}
.location-body { padding: 24px; }
.location-body h3 { font-size: 20px; margin-bottom: 8px; }
.location-body p { color: var(--muted); font-size: 14px; margin-bottom: 12px; }
.location-addr {
  font-size: 13px; color: var(--purple); font-weight: 600;
}
.badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--blue); color: var(--white);
  padding: 6px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial {
  background: var(--white); padding: 32px;
  border-radius: 16px; border: 1px solid var(--grey-border);
  position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: 10px; left: 24px;
  font-family: 'Montserrat'; font-size: 80px; color: var(--light-purple);
  line-height: 1; z-index: 0;
}
.testimonial-body {
  position: relative; z-index: 1;
  font-size: 16px; color: var(--text); margin-bottom: 20px;
  font-style: italic;
}
.testimonial-attr {
  font-size: 14px; color: var(--purple); font-weight: 700;
}

/* ===== GALLERY ===== */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  aspect-ratio: 1; border-radius: 12px; overflow: hidden;
  background: linear-gradient(135deg, var(--light-purple), #C49BE6);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-size: 12px; text-align: center; padding: 16px;
  font-weight: 600;
}
.gallery-item:nth-child(2) { background: linear-gradient(135deg, #D0EFFD, #A0DCF8); color: #0C6FA8; }
.gallery-item:nth-child(3) { background: linear-gradient(135deg, #FFE4E1, #F8C5C0); color: #B54A3F; }
.gallery-item:nth-child(4) { background: linear-gradient(135deg, #E4F5E1, #B8E0B0); color: #3D7A2E; }

/* ===== VALUES (About) ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.value-item { text-align: center; padding: 16px; }
.value-icon {
  width: 80px; height: 80px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; box-shadow: 0 6px 20px rgba(139,47,201,0.15);
}
.value-item h3 { font-size: 20px; margin-bottom: 10px; }
.value-item p { color: var(--muted); font-size: 14px; }

/* ===== ALTERNATING BLOCKS (About) ===== */
.alt-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; margin-bottom: 72px;
}
.alt-block.reverse { direction: rtl; }
.alt-block.reverse > * { direction: ltr; }
.alt-block:last-child { margin-bottom: 0; }
.alt-text h3 { font-size: 32px; margin-bottom: 16px; }
.alt-text p { font-size: 17px; color: var(--text); }
.alt-img {
  height: 340px; border-radius: 16px;
  background: linear-gradient(135deg, var(--light-purple), #C49BE6);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-size: 12px; text-align: center; padding: 20px;
  font-weight: 600;
}
.alt-img.v2 { background: linear-gradient(135deg, #D0EFFD, #A0DCF8); color: #0C6FA8; }
.alt-img.v3 { background: linear-gradient(135deg, #FFE4E1, #F8C5C0); color: #B54A3F; }
.alt-img.v4 { background: linear-gradient(135deg, #E4F5E1, #B8E0B0); color: #3D7A2E; }

/* ===== TEAM PREVIEW ===== */
.team-row {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 24px; margin-bottom: 40px;
}
.team-member { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(135deg, var(--light-purple), #C49BE6);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); font-size: 24px; font-weight: 800;
  margin-bottom: 14px;
}
.team-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.team-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ===== CTA STRIP ===== */
.cta-strip { text-align: center; }
.cta-strip h2 { color: var(--white); font-size: 40px; margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,0.95); font-size: 18px; margin-bottom: 32px; }
.cta-strip .btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
  background: #0E0B14; color: rgba(255,255,255,0.75);
  padding: 64px 0 0; font-size: 14px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-logo {
  font-family: 'Montserrat'; font-weight: 800; font-size: 22px;
  color: var(--white); margin-bottom: 12px;
}
.footer-col h4 {
  color: var(--white); font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--white); }
.footer-contact { line-height: 1.9; }
.footer-contact strong { color: var(--white); }
.footer-ndis {
  background: rgba(255,255,255,0.08);
  padding: 12px 16px; border-radius: 8px; margin-top: 20px;
  font-size: 12px;
}
.footer-ndis strong { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; font-size: 13px;
}
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center; font-size: 16px;
}
.social-icon:hover { background: var(--purple); }

/* ===== COMPLEX SUPPORTS FEATURE BLOCK ===== */
.complex-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center; padding: 48px; border-radius: 20px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white); position: relative; overflow: hidden;
}
.complex-block .content h2 { color: var(--white); font-size: 38px; margin-bottom: 16px; }
.complex-block .content .lead { font-size: 18px; opacity: 0.95; margin-bottom: 24px; }
.complex-block .pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.complex-block .pillar {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; padding: 14px 16px;
}
.complex-block .pillar strong {
  display: block; color: var(--white); font-size: 14px; margin-bottom: 4px;
}
.complex-block .pillar span { font-size: 13px; opacity: 0.85; }
.complex-block .photo {
  aspect-ratio: 3/4; border-radius: 16px; overflow: hidden;
  background: rgba(0,0,0,0.25); position: relative;
}
.complex-block .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.complex-block .photo .label {
  position: absolute; bottom: 12px; left: 12px; right: 12px;
  background: rgba(0,0,0,0.6); color: var(--white);
  padding: 8px 12px; border-radius: 8px; font-size: 12px;
}

/* ===== SERVICES: ADJUST ===== */
.service-card .service-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-card .service-img { padding: 0; }
.location-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.location-img { padding: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }
.gallery-item.has-photo { padding: 0; }
.alt-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 16px; }
.alt-img.has-photo { padding: 0; }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px;
  align-items: center; padding: 48px 0;
  border-bottom: 1px solid var(--grey-border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail .img {
  aspect-ratio: 4/3; border-radius: 16px; overflow: hidden;
  background: var(--grey);
}
.service-detail .img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-detail .eyebrow-small {
  color: var(--purple); font-weight: 700; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px;
  display: inline-block;
}
.service-detail h3 { font-size: 30px; margin-bottom: 14px; }
.service-detail p.lead { font-size: 16px; margin-bottom: 16px; }
.service-detail ul.includes {
  list-style: none; padding: 0; margin: 16px 0 20px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px;
}
.service-detail ul.includes li {
  position: relative; padding-left: 22px; font-size: 14px; color: var(--text);
}
.service-detail ul.includes li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--purple); font-weight: 700;
}

/* ===== REGISTRATION GROUPS PILLS ===== */
.reg-groups {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 24px;
}
.reg-pill {
  background: var(--light-purple); color: var(--purple);
  padding: 8px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 600;
}

/* ===== AUDIENCE CARDS (Contact/Referrals) ===== */
.audience-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.audience-card {
  background: var(--white); border: 2px solid var(--grey-border);
  border-radius: 16px; padding: 32px; transition: all 0.2s;
}
.audience-card:hover {
  border-color: var(--purple); transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(91,46,145,0.1);
}
.audience-card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--light-purple); display: flex;
  align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 16px;
}
.audience-card h3 { font-size: 22px; margin-bottom: 10px; }
.audience-card p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.audience-card .btn { width: 100%; }

/* ===== FORM ===== */
.form-card {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: 16px; padding: 40px; max-width: 680px; margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field label {
  display: block; font-weight: 600; font-size: 13px;
  color: var(--dark); margin-bottom: 6px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 8px;
  border: 1.5px solid var(--grey-border); font-family: Arial, sans-serif;
  font-size: 15px; background: var(--white); color: var(--text);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--purple);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-card .btn { width: 100%; margin-top: 8px; }

/* ===== SUCCESS MODAL (form confirmation) ===== */
.success-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,4,22,0.75);
  z-index: 10000;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease-out;
}
.success-modal.open { display: flex; }
.success-modal-card {
  background: var(--white);
  border-radius: 20px;
  max-width: 460px; width: 100%;
  padding: 48px 36px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: popIn 0.25s ease-out;
}
.success-tick {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--light-purple);
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  animation: tickBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-tick svg { width: 56px; height: 56px; }
.success-tick .tick-path {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: tickDraw 0.5s ease-out 0.15s forwards;
}
@keyframes tickBounce {
  0% { transform: scale(0); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
@keyframes tickDraw {
  to { stroke-dashoffset: 0; }
}
.success-modal h3 {
  font-size: 26px; margin-bottom: 14px; color: var(--purple);
}
.success-modal p {
  color: var(--text); font-size: 15px; margin-bottom: 24px;
  line-height: 1.55;
}
.success-modal .btn { min-width: 120px; }
.success-modal.error-mode h3 { color: #C0392B; }
.success-modal.error-mode .success-tick {
  background: #FFE4E1;
}
.success-modal.error-mode .success-tick svg circle,
.success-modal.error-mode .success-tick svg path {
  stroke: #C0392B;
}

/* ===== IN-DEVELOPMENT MODAL ===== */
.dev-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,4,22,0.75);
  z-index: 10000;
  align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.15s ease-out;
}
.dev-modal.open { display: flex; }
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.dev-modal-card {
  background: var(--white);
  border-radius: 18px;
  max-width: 440px; width: 100%;
  padding: 40px 32px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: popIn 0.2s ease-out;
}
@keyframes popIn {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.dev-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--grey); border: none;
  font-size: 18px; font-weight: 700; color: var(--muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.dev-modal-close:hover { background: var(--purple); color: var(--white); }
.dev-modal-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--light-purple); color: var(--purple);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.dev-modal h3 {
  font-size: 24px; margin-bottom: 12px; color: var(--dark);
}
.dev-modal p {
  color: var(--muted); font-size: 15px; margin-bottom: 10px;
  line-height: 1.55;
}
.dev-modal-cta {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--grey-border);
}
.dev-modal-cta p {
  font-size: 13px; color: var(--muted); margin-bottom: 12px;
}
.dev-modal-cta .btn { width: 100%; margin-bottom: 8px; }
.dev-modal-cta .btn:last-child { margin-bottom: 0; }

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  column-count: 4;
  column-gap: 14px;
}
.gallery-grid .g-item {
  display: block;
  margin-bottom: 14px;
  break-inside: avoid;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  background: var(--grey);
  transition: transform 0.15s;
}
.gallery-grid .g-item:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 20px rgba(91,46,145,0.18);
}
.gallery-grid .g-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,4,22,0.95);
  z-index: 9999;
  align-items: center; justify-content: center;
  cursor: zoom-out;
  user-select: none;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw; max-height: 90vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border-radius: 6px;
}
.lightbox .lb-btn {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--white);
  width: 56px; height: 56px;
  border-radius: 50%;
  font-size: 24px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}
.lightbox .lb-btn:hover { background: rgba(255,255,255,0.2); }
.lightbox .lb-prev { left: 30px; }
.lightbox .lb-next { right: 30px; }
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-counter {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 13px;
  background: rgba(0,0,0,0.4); padding: 6px 14px;
  border-radius: 20px;
}

@media (max-width: 1100px) { .gallery-grid { column-count: 3; } }
@media (max-width: 700px) {
  .gallery-grid { column-count: 2; }
  .lightbox .lb-prev { left: 10px; }
  .lightbox .lb-next { right: 10px; }
  .lightbox .lb-btn { width: 44px; height: 44px; font-size: 18px; }
}
@media (max-width: 400px) { .gallery-grid { column-count: 1; } }

/* ===== TEAM PAGE ===== */
.leadership-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
  max-width: 1240px; margin: 0 auto;
}
.leader-card {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: 16px; overflow: hidden;
  transition: all 0.2s;
}
.leader-card:hover {
  transform: translateY(-3px); box-shadow: 0 12px 30px rgba(91,46,145,0.1);
  border-color: var(--purple);
}
.leader-photo {
  aspect-ratio: 1; background: var(--light-purple);
  overflow: hidden; display: block;
}
.leader-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
}
.leader-info { padding: 20px 18px; }
.leader-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.leader-role {
  color: var(--purple); font-weight: 700; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 10px;
}
.leader-bio { color: var(--muted); font-size: 14px; line-height: 1.55; }

.support-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.support-card {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: 14px; overflow: hidden;
  transition: all 0.15s;
}
.support-card:hover {
  transform: translateY(-2px); border-color: var(--purple);
  box-shadow: 0 8px 20px rgba(91,46,145,0.08);
}
.support-photo { aspect-ratio: 1; background: var(--light-purple); overflow: hidden; }
.support-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.support-info { padding: 16px; }
.support-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.support-role { color: var(--muted); font-size: 12px; margin-bottom: 8px; }
.support-bio { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ===== CHECKBOX LIST (for referral form supports) ===== */
.checkbox-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
  background: var(--grey); padding: 18px; border-radius: 10px;
  border: 1.5px solid var(--grey-border);
}
.checkbox-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 10px; border-radius: 6px; cursor: pointer;
  transition: background 0.15s;
}
.checkbox-item:hover { background: var(--white); }
.checkbox-item input[type="checkbox"] {
  width: 18px; height: 18px; margin-top: 1px; flex-shrink: 0;
  accent-color: var(--purple); cursor: pointer;
}
.checkbox-item label {
  font-size: 14px; font-weight: 500; color: var(--text);
  cursor: pointer; line-height: 1.4; margin: 0;
}

/* ===== ANONYMOUS TOGGLE (complaint form) ===== */
.anon-toggle {
  background: var(--light-purple); border: 2px solid var(--purple);
  border-radius: 12px; padding: 18px 20px; margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.anon-toggle input[type="checkbox"] {
  width: 22px; height: 22px; accent-color: var(--purple);
  flex-shrink: 0; cursor: pointer;
}
.anon-toggle label {
  font-weight: 700; color: var(--dark); cursor: pointer; flex: 1;
  font-size: 15px;
}
.anon-toggle .note {
  display: block; font-weight: 400; color: var(--muted);
  font-size: 13px; margin-top: 3px;
}

/* ===== GOOGLE REVIEWS ===== */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.review-card {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: 16px; padding: 28px; display: flex; flex-direction: column;
}
.review-stars {
  color: #F5A623; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px;
}
.review-body {
  font-size: 15px; color: var(--text); margin-bottom: 18px;
  flex: 1; line-height: 1.6;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px; border-top: 1px solid var(--grey-border);
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.review-author-info {
  display: flex; flex-direction: column; line-height: 1.3;
}
.review-name { font-weight: 700; color: var(--dark); font-size: 14px; }
.review-meta { color: var(--muted); font-size: 12px; margin-top: 2px; }
.reviews-footer {
  text-align: center; margin-top: 32px; color: var(--muted); font-size: 14px;
}
.reviews-footer strong { color: var(--dark); }

/* ===== BRANDED PLACEHOLDER (for photo-free sections) ===== */
.branded-panel {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  color: var(--white); padding: 40px; border-radius: 16px;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 320px; position: relative; overflow: hidden;
}
.branded-panel::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.branded-panel::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.branded-panel .inner { position: relative; z-index: 1; }
.branded-panel .tag {
  display: inline-block; padding: 6px 14px; border-radius: 20px;
  background: rgba(255,255,255,0.15); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
.branded-panel h4 {
  color: var(--white); font-size: 26px; margin-bottom: 12px; line-height: 1.25;
}
.branded-panel p { color: rgba(255,255,255,0.9); font-size: 15px; }

/* ===== CAREERS PERKS ===== */
.perks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.perk {
  padding: 28px; background: var(--white); border-radius: 16px;
  border: 1px solid var(--grey-border);
}
.perk .icon { font-size: 28px; margin-bottom: 12px; }
.perk h3 { font-size: 18px; margin-bottom: 8px; }
.perk p { color: var(--muted); font-size: 14px; }

/* ===== CONTACT INFO GRID ===== */
.contact-info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-bottom: 48px;
}
.contact-info-card {
  background: var(--white); border: 1px solid var(--grey-border);
  border-radius: 16px; padding: 28px; text-align: center;
}
.contact-info-card .icon {
  font-size: 32px; margin-bottom: 12px;
}
.contact-info-card h3 { font-size: 16px; margin-bottom: 8px; }
.contact-info-card p { font-size: 15px; color: var(--text); }
.contact-info-card a { color: var(--purple); font-weight: 700; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .hero h1 { font-size: 36px; }
  .hero p.subtitle { font-size: 16px; }
  .section { padding: 64px 0; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .trust-stat .num { font-size: 40px; }
  .services-grid, .why-grid, .locations-grid, .testimonials-grid,
  .values-grid, .team-row, .gallery, .footer-grid {
    grid-template-columns: 1fr;
  }
  .alt-block { grid-template-columns: 1fr; gap: 24px; }
  .alt-block.reverse { direction: ltr; }
  .complex-block { grid-template-columns: 1fr; padding: 28px; }
  .complex-block .pillars { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .service-detail.reverse { direction: ltr; }
  .service-detail ul.includes { grid-template-columns: 1fr; }
  .audience-grid, .perks-grid, .contact-info-grid, .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 24px; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: repeat(3, 1fr); }
  .support-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .leadership-grid, .support-grid { grid-template-columns: 1fr; }
  .who-inner h2, .section-header h2 { font-size: 30px; }
  .team-row { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
