/*
Theme Name: GPDI Brisbane
Theme URI:
Author: GPDI Brisbane
Description: Custom one-page theme for GPDI Brisbane
Version: 1.0
*/

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

:root {
  --navy: #0d2340;
  --navy-mid: #1a3a5c;
  --navy-light: #2a5280;
  --slate: #4a6fa5;
  --steel: #8aafd4;
  --mist: #c8ddf0;
  --cream: #f4f7fb;
  --white: #ffffff;
  --warm-gray: #e8edf5;
  --text-dark: #0d1f35;
  --text-mid: #3a5270;
  --text-light: #7a95b5;
  --gold: #c8a96e;
  --font-display: 'Boldonse', cursive;
  --font-body: 'Onest', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

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

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(13,35,64,0.96);
  backdrop-filter: blur(12px);
  padding: 0.9rem 3rem;
  box-shadow: 0 1px 20px rgba(0,0,0,0.15);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
/* HERO */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(13,35,64,0.5) 0%, rgba(15,45,85,0.5) 100%),
    url('https://gpdibrisbane.com.au/wp-content/uploads/2026/04/GPdI-Brisbane-Hero-Image.png') center center / cover no-repeat;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138,175,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,175,212,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-cross {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.06;
}
.hero-cross svg { width: 380px; height: 380px; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 3rem;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp 1s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(200,221,240,0.7);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto;
}

/* SECTIONS COMMON */
section { position: relative; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}
.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
}

/* ABOUT */
#about {
  padding: 7rem 3rem;
  background: var(--white);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-visual {
  position: relative;
  max-width: 420px;
}
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 560px;
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--slate) 100%);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}
.about-accent {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  opacity: 0.4;
}

/* SERVICES */
#services {
  padding: 7rem 3rem;
  background: var(--navy);
  overflow: hidden;
}
.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.services-header .section-label { color: var(--steel); }
.services-header .section-title { color: var(--white); margin-bottom: 0; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.service-card {
  padding: 2.5rem 2rem;
  background: rgba(13,35,64,0.9);
  position: relative;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
}
.service-day {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.service-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.service-time {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--mist);
  margin-bottom: 1rem;
}
.service-desc {
  font-size: 0.82rem;
  color: rgba(138,175,212,0.6);
  font-weight: 300;
  line-height: 1.6;
}
.service-location {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
.service-location svg {
  width: 14px;
  height: 14px;
  min-width: 14px;
  stroke: var(--gold);
  margin-top: 2px;
}
.service-location-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mist);
  margin-bottom: 0.2rem;
}
.service-location-addr {
  font-size: 0.75rem;
  color: rgba(138,175,212,0.55);
  font-weight: 300;
  line-height: 1.4;
}
.service-badges {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  background: rgba(200,169,110,0.1);
  border: 0.5px solid rgba(200,169,110,0.25);
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.02em;
}
.service-badge svg {
  width: 11px;
  height: 11px;
  min-width: 11px;
  stroke: var(--gold);
}
.ss-classes {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}
.ss-class {
  padding: 0.9rem 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}
.ss-class:last-child { border-bottom: none; padding-bottom: 0; }
.ss-class-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}
.ss-tag {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 64px;
}
.ss-age {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200,221,240,0.45);
  padding: 0.2rem 0.6rem;
  border: 0.5px solid rgba(200,221,240,0.15);
}
.ss-class-desc {
  font-size: 0.78rem;
  color: rgba(138,175,212,0.55);
  font-weight: 300;
  line-height: 1.6;
}

/* ACTIVITIES */
#activities {
  padding: 7rem 3rem;
  background: var(--cream);
}
.activities-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.activities-header {
  max-width: 560px;
  margin-bottom: 4rem;
}
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.activity-card {
  background: var(--white);
  border: 0.5px solid var(--warm-gray);
  position: relative;
  overflow: hidden;
}
.activity-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--slate) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.activity-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.activity-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--slate) 100%);
}
.activity-img-placeholder svg {
  width: 28px;
  height: 28px;
  stroke: rgba(255,255,255,0.15);
  fill: none;
  stroke-width: 1;
}
.activity-body {
  padding: 1.5rem;
}
.activity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: 1;
}
.activity-card:hover { box-shadow: 0 8px 32px rgba(13,35,64,0.08); transform: translateY(-3px); }
.activity-card:hover::before { transform: scaleX(1); }
.activity-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.activity-time {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.activity-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 300;
}

/* FIND US */
#find-us {
  padding: 7rem 3rem;
  background: var(--white);
}
.findus-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.findus-info { padding-top: 1rem; }
.findus-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.findus-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.findus-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.findus-detail-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.findus-detail-val {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.5;
}
.campus-block {
  padding: 1.25rem 1.5rem;
  border: 0.5px solid var(--warm-gray);
  background: var(--white);
  margin-bottom: 1rem;
}
.campus-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.campus-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.campus-time {
  font-size: 0.8rem;
  color: var(--slate);
  font-weight: 400;
  margin-bottom: 0.9rem;
}
.map-container {
  width: 100%;
  height: 420px;
  background: var(--warm-gray);
  position: relative;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FIND US NEW LAYOUT */
.findus-inner-new {
  max-width: 1200px;
  margin: 0 auto;
}
.findus-inner-new .section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  white-space: nowrap;
  line-height: 1.6;
}
.campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.campus-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.campus-map {
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.campus-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.campus-details {
  background: transparent;
  padding: 1.5rem 0;
  border: none;
}
@media (max-width: 900px) {
  .campus-grid { grid-template-columns: 1fr; }
  .findus-inner-new .section-title { white-space: normal; }
}
/* INSTAGRAM */
#instagram {
  padding: 7rem 3rem;
  background: var(--navy);
}
.insta-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.insta-header .section-title { color: var(--white); margin-bottom: 0; }
.insta-header .section-label { color: var(--steel); }
.insta-handle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity var(--transition);
}
.insta-handle:hover { opacity: 0.7; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-post {
  aspect-ratio: 1;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.insta-post::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,35,64,0.5);
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-post:hover::after { opacity: 1; }
.insta-post-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
}
.insta-post:nth-child(2n) .insta-post-inner { background: linear-gradient(145deg, #1e4575, #0f2d55); }
.insta-post:nth-child(3n) .insta-post-inner { background: linear-gradient(145deg, #0d2340, #2a5280); }
.insta-post svg {
  width: 24px; height: 24px;
  stroke: rgba(200,221,240,0.2);
  fill: none;
  stroke-width: 1;
}
.insta-cta {
  margin-top: 2rem;
  text-align: center;
}
.insta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid rgba(200,221,240,0.25);
  color: rgba(200,221,240,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: var(--transition);
}
.insta-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Smash Balloon overrides */
.insta-grid .sbi_item {
  aspect-ratio: 1/1 !important;
  overflow: hidden !important;
}
.insta-grid .sbi_photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.sbi_header,
.sbi_follow_btn,
.sbi_load_btn {
  display: none !important;
}

/* CONTACT */
#contact {
  padding: 7rem 3rem;
  background: var(--cream);
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.contact-intro .section-body { margin-bottom: 2rem; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
}
.form-input, .form-select, .form-textarea {
  padding: 0.75rem 1rem;
  border: 0.5px solid #d0dae8;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 300;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--slate);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  align-self: flex-start;
  padding: 0.9rem 2.5rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.form-submit:hover { background: var(--navy-light); transform: translateY(-1px); }
.form-submit svg { width: 14px; height: 14px; }

/* FOOTER */
footer {
  background: #060f1a;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  opacity: 0.6;
}
.footer-logo span { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

/* PRIVACY PAGE */
.privacy-banner {
  background: var(--navy);
  padding: 8rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}
.privacy-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(138,175,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,175,212,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.privacy-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.privacy-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.privacy-banner-sub {
  font-size: 1rem;
  color: rgba(200,221,240,0.65);
  font-weight: 300;
  line-height: 1.8;
  max-width: 580px;
}
.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.privacy-blurb {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  max-width: 720px;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid var(--warm-gray);
  margin-bottom: 4rem;
}
.privacy-section {
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 0.5px solid var(--warm-gray);
}
.privacy-section:last-of-type {
  border-bottom: none;
}
.privacy-section-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.privacy-section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.privacy-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.privacy-section-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 2rem;
}
.privacy-pdf-preview {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 0.5px solid var(--warm-gray);
  background: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 560px;
}
.privacy-pdf-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.privacy-pdf-icon svg {
  stroke: var(--gold);
}
.privacy-pdf-info {
  flex: 1;
}
.privacy-pdf-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.2rem;
}
.privacy-pdf-size {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 300;
}
.privacy-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.privacy-download-btn:hover {
  background: var(--navy-light);
}
.privacy-pdf-embed {
  width: 100%;
  border: 0.5px solid var(--warm-gray);
  overflow: hidden;
}
.privacy-pdf-embed iframe {
  display: block;
  border: none;
}
.privacy-contact {
  background: var(--navy);
  padding: 5rem 3rem;
  margin: 0 -3rem 0;
}
.privacy-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
@media (max-width: 900px) {
  .privacy-banner { padding: 6rem 1.5rem 3rem; }
  .privacy-content { padding: 3rem 1.5rem; }
  .privacy-contact { padding: 3rem 1.5rem; margin: 0 -1.5rem -3rem; }
  .privacy-contact-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.privacy-contact .form-submit {
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  align-self: auto;
  width: auto;
  min-width: 200px;
}
.privacy-contact .form-submit:hover {
  background: #d9bc85;
}
.privacy-contact .form-submit:hover {
  background: #d9bc85;
}
.privacy-contact .form-submit:hover {
  background: #d9bc85;
}

.privacy-contact .wpforms-field-label,
.privacy-contact .wpforms-field-sublabel,
.privacy-contact .wpforms-field-description {
  color: rgba(200,221,240,0.7) !important;
}
.privacy-contact .wpforms-field input,
.privacy-contact .wpforms-field textarea,
.privacy-contact .wpforms-field select {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.1) !important;
  color: var(--white) !important;
}
.privacy-contact .wpforms-field input::placeholder,
.privacy-contact .wpforms-field textarea::placeholder {
  color: rgba(255,255,255,0.3) !important;
}
.privacy-contact .wpforms-submit {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: none !important;
}
.privacy-contact .wpforms-submit:hover {
  background: #d9bc85 !important;
}
.privacy-contact .wpforms-field-radio li label,
.privacy-contact .wpforms-field-checkbox li label,
.privacy-contact .wpforms-image-choices-label {
  color: rgba(200,221,240,0.7) !important;
}
.privacy-contact .wpforms-field-radio input[type="radio"],
.privacy-contact .wpforms-field-checkbox input[type="checkbox"] {
  accent-color: var(--gold);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hero-content { padding: 0 1.5rem; }
  #about, #services, #activities, #find-us, #instagram, #contact { padding: 4rem 1.5rem; }
  .about-inner, .findus-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .service-cards { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .service-card { padding: 2rem 1.5rem; }
  .service-name { font-size: 1.2rem; }
  .service-badge { font-size: 0.68rem; }
  .findus-inner-new .section-title { white-space: normal; }
  .campus-grid { grid-template-columns: 1fr; }
  .privacy-contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .privacy-contact { padding: 3rem 1.5rem; margin: 0 -1.5rem 0; }
}