:root {
      --primary: #071d78;
      --accent: #e63946;
      /* A sharp red for contrast */
      --light-bg: #f8fafc;
      --dark-bg: #1a1a2e;
      --text-main: #334155;
      --white: #ffffff;
      --navy: #071d78;
      --navy-dark: #040f45;
      --navy-light: #1a35a0;
      --gold: #e8a020;
      --gold-light: #f5c55a;
      --cream: #fdf8f2;
      --warm-white: #fff9f2;
      --text: #1a1a2e;
      --muted: #5a5a7a;
      --border: #ddd8ef;
}

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

body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text-main);
      line-height: 1.7;
      background: var(--white);
}

h1,
h2,
h3 {
      font-family: 'Outfit', sans-serif;
      color: var(--primary);
      font-weight: 900;
}

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

.section {
      padding: 100px 0;
}

.grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
}

.grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
}

/* Navigation - Modern & Clean */
.main-nav {
      background: rgba(255, 255, 255, 0.95);
      padding: 1rem 0;
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid #eee;
}

.nav-flex {
      display: flex;
      justify-content: space-between;
      align-items: center;
}

.brand {
      line-height: 1;
}

.brand .fname {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--primary);
      display: block;
}

.brand .lname {
      font-size: 1.5rem;
      font-weight: 400;
      color: #333;
}

.brand small {
      letter-spacing: 2px;
      color: var(--accent);
      font-weight: 700;
      font-size: 0.7rem;
}

.nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 30px;
}

.cta-pill {
      background: var(--primary);
      color: white !important;
      padding: 12px 25px;
      border-radius: 50px;
      transition: 0.3s;
}

/* Hero Section */
.hero-split {
      background: var(--light-bg);
      padding: 80px 0;
      overflow: hidden;
}

.hero-text h1 {
      font-size: 4rem;
      line-height: 1.1;
      margin: 20px 0;
}

.highlight {
      color: var(--accent);
}

.badge {
      background: #dbeafe;
      color: var(--primary);
      padding: 5px 15px;
      border-radius: 20px;
      font-weight: 700;
      font-size: 0.8rem;
}

.hero-image img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn-solid {
      background: var(--primary);
      color: white;
      padding: 18px 35px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 700;
      display: inline-block;
}

.btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      padding: 16px 35px;
      text-decoration: none;
      border-radius: 8px;
      font-weight: 700;
      display: inline-block;
      margin-left: 15px;
      text-decoration: dashed;
}

/* Priority Cards */
.bg-dark {
      background: var(--dark-bg);
      color: white;
}

.bg-dark h2 {
      color: white;
}

.priority-card {
      background: rgba(255, 255, 255, 0.05);
      padding: 40px;
      border-radius: 15px;
      border-top: 4px solid var(--accent);
}

.priority-card h3 {
      color: white;
      margin: 15px 0;
}

.priority-card .icon {
      font-size: 2.5rem;
}


/* Contact Wrapper */
.contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 80px;
      background: #fff;
      padding: 60px;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.campaign-form input,
.campaign-form select {
      width: 100%;
      padding: 15px;
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
}

.form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
}

.btn-solid-full {
      background: var(--accent);
      color: white;
      border: none;
      padding: 20px;
      width: 100%;
      border-radius: 8px;
      font-weight: 800;
      cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {

      .grid-2,
      .contact-wrapper {
            grid-template-columns: 1fr;
      }

      .hero-text h1 {
            font-size: 2.8rem;
      }

      .nav-links {
            display: none;
      }
}


/* ── ROOT VARIABLES ── */
:root {
      --navy: #071d78;
      --navy-dark: #040f45;
      --navy-light: #1a35a0;
      --gold: #1ac7e7;
      --gold-light: #1ac7e7;
      --cream: #fdf8f2;
      --warm-white: #fff9f2;
      --text: #1a1a2e;
      --muted: #5a5a7a;
      --light-border: #ddd8ef;
}

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

html {
      scroll-behavior: smooth;
}

body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background: var(--warm-white);
      color: var(--text);
      overflow-x: hidden;
}


/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
      position: fixed;
      top: 10px;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(7, 29, 120, 0);
      backdrop-filter: blur(0px);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
      transition: background .35s, box-shadow .35s, height .35s, backdrop-filter .35s;
}

nav.scrolled {
      background: rgba(7, 29, 120, .97);
      backdrop-filter: blur(10px);
      height: 70px;
      box-shadow: 0 2px 20px rgba(7, 29, 120, .4);
      top: 0;
}

.nav-logo {
      display: flex;
      align-items: center;
      gap: 5px;
      text-decoration: none;
      flex-direction: column-reverse;
      margin-top: 30px;
}

#home .blogo img {
      width: 320px;
      margin-bottom: 20px;
}

nav.scrolled .nav-logo {
      margin-top: 0;
}

nav.scrolled .nav-logo-text {
      font-size: 12px;
}

.nav-logo img {
      width: 200px;
      transition: width .3s;
}

nav.scrolled .nav-logo img {
      width: 120px;
}

.nav-logo-text {
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: 17px;
      transition: font-size .3s;
}

.nav-logo-text span {
      color: var(--gold-light);
      display: block;
      font-size: 11px;
      letter-spacing: 2px;
      font-weight: 300;
      text-transform: uppercase;
}

.nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
}

.nav-links a {
      color: rgba(255, 255, 255, .85);
      text-decoration: none;
      font-size: 15px;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-weight: 700;
      transition: color .2s;
      position: relative;
}

.nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active {
      color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
      width: 100%;
}

.nav-donate {
      background: var(--gold) !important;
      color: var(--navy-dark) !important;
      padding: 10px 22px;
      border-radius: 4px;
      font-weight: 700 !important;
      transition: background .2s, transform .15s !important;
}

.nav-donate::after {
      display: none !important;
}

.nav-donate:hover {
      background: var(--gold-light) !important;
      transform: translateY(-1px);
}

.hamburger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
}

.hamburger span {
      width: 25px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: .3s;
}


/* ══════════════════════════════════════
   VIDEO POPUP
══════════════════════════════════════ */
.video-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(4, 15, 69, .92);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      visibility: hidden;
      transition: opacity .4s, visibility .4s;
}

.video-popup-overlay.show {
      opacity: 1;
      visibility: visible;
}

.video-popup {
      background: white;
      max-width: 620px;
      width: 90%;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(7, 29, 120, .4);
      transform: scale(.9);
      transition: transform .4s;
}

.video-popup-overlay.show .video-popup {
      transform: scale(1);
}

.popup-header {
      background: var(--navy);
      color: white;
      padding: 24px 32px;
      text-align: center;
      position: relative;
}

.popup-header h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 28px;
      font-weight: 900;
      color: #fff;
}

.popup-header p {
      font-size: 15px;
      opacity: .85;
      margin-top: 8px;
}

.close-popup {
      position: absolute;
      top: 18px;
      right: 20px;
      font-size: 28px;
      color: rgba(255, 255, 255, .7);
      cursor: pointer;
      line-height: 1;
}

.close-popup:hover {
      color: white;
}

.popup-body {
      padding: 32px;
      text-align: center;
}

.popup-video-container {
      position: relative;
      padding-top: 56.25%;
      background: #000;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 24px;
}

.popup-video-container video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
}

.play-big-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 80px;
      height: 80px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 10px 30px rgba(26, 199, 231, .4);
      transition: transform .3s, background .3s;
}

.play-big-btn:hover {
      transform: translate(-50%, -50%) scale(1.1);
      background: var(--gold-light);
}

.play-big-btn svg {
      margin-left: 4px;
}

.popup-body p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
}


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
      min-height: 100vh;
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
      display: flex;
      align-items: center;
      padding: 100px 5% 60px;
      position: relative;
      overflow: hidden;
}

.hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
            radial-gradient(circle at 20% 80%, rgba(26, 199, 231, .12) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .05) 0%, transparent 40%);
}

.hero-bg-text {
      position: absolute;
      right: -2%;
      top: 50%;
      transform: translateY(-50%);
      font-family: 'Outfit', sans-serif;
      font-size: clamp(120px, 18vw, 260px);
      font-weight: 900;
      color: rgba(255, 255, 255, .04);
      line-height: 1;
      user-select: none;
      white-space: nowrap;
}

a {
      text-decoration: none !important;
}

.hero-inner {
      display: grid;
      grid-template-columns: 1fr 450px;
      gap: 60px;
      padding: 30px 0;
      align-items: center;
      position: relative;
      z-index: 1;
      max-width: 1400px;
      margin: 0 auto;
      width: 100%;
}

.hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(26, 199, 231, .18);
      border: 1px solid rgba(26, 199, 231, .4);
      color: var(--gold-light);
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 24px;
}

.hero-badge::before {
      content: '●';
      font-size: 8px;
}

.hero h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(44px, 6vw, 80px);
      font-weight: 900;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 12px;
}

.hero h1 em {
      display: block;
      font-style: italic;
      color: var(--gold-light);
      font-weight: 800;
}

.hero-tagline {
      font-family: 'Merriweather', serif;
      font-style: italic;
      color: rgba(255, 255, 255, .7);
      font-size: 20px;
      margin-bottom: 28px;
      line-height: 1.5;
}

.hero-desc {
      color: rgba(255, 255, 255, .65);
      font-size: 16px;
      line-height: 1.7;
      max-width: 520px;
      margin-bottom: 40px;
}

.hero-ctas {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-top: 20px;
}

.hero-ctas a {
      text-decoration: none;
}

.btn-primary {
      background: var(--gold);
      color: var(--navy-dark);
      padding: 16px 36px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 20px rgba(26, 199, 231, .35);
}

.btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(26, 199, 231, .45);
}

.btn-outline {
      border: 2px solid rgba(255, 255, 255, .45);
      color: #fff !important;
      padding: 14px 32px;
      text-decoration: none;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: border-color .2s, background .2s;
}

.btn-outline:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .08);
}

.hero-photo-card {
      position: relative;
}

.hero-photo-frame {
      width: 100%;
      aspect-ratio: 3/4;
      border-radius: 12px 80px 12px 12px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.hero-photo-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
}

.hero-photo-accent {
      position: absolute;
      bottom: -16px;
      left: -16px;
      width: 120px;
      height: 120px;
      background: var(--gold);
      border-radius: 12px;
      z-index: -1;
      opacity: .6;
}

.hero-stat-card {
      position: absolute;
      top: 28px;
      left: -120px;
      background: #fff;
      border-radius: 10px;
      padding: 14px 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
      text-align: center;
}

.hero-stat-card strong {
      display: block;
      font-family: 'Outfit', sans-serif;
      font-size: 26px;
      color: var(--navy);
}

.hero-stat-card span {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 1px;
      text-transform: uppercase;
}

.hero-inner>* {
      animation: fadeUp .8s ease both;
}

.hero-inner>*:nth-child(2) {
      animation-delay: .15s;
}


/* ══════════════════════════════════════
   SHARED SECTION
══════════════════════════════════════ */
section {
      padding: 90px 5%;
}

.section-label {
      display: inline-block;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 12px;
}

.section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 900;
      color: var(--navy);
      line-height: 1.1;
      margin-bottom: 20px;
}

.section-title em {
      font-style: italic;
      color: var(--navy-light);
}

.section-subtitle {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 560px;
}

.centered {
      text-align: center;
}

.centered .section-subtitle {
      margin: 0 auto;
}

.max-w {
      max-width: 1200px;
      margin: 0 auto;
}


/* ══════════════════════════════════════
   ABOUT
══════════════════════════════════════ */
#about {
      background: var(--warm-white);
}

.about-grid {
      display: grid;
      grid-template-columns: 480px 1fr;
      gap: 80px;
      align-items: start;
}

.about-img-frame {
      width: 100%;
      aspect-ratio: 4/5;
      border-radius: 6px 60px 6px 6px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(7, 29, 120, .15);
}

.about-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
}

.about-quote-card {
      position: absolute;
      bottom: 30px;
      right: -30px;
      background: var(--navy);
      color: #fff;
      padding: 24px;
      border-radius: 10px;
      max-width: 240px;
      box-shadow: 0 10px 40px rgba(7, 29, 120, .35);
}

.about-img {
      position: relative;
}

.about-quote-card p {
      font-family: 'Merriweather', serif;
      font-style: italic;
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 10px;
}

.about-quote-card cite {
      font-size: 11px;
      color: var(--gold-light);
      letter-spacing: 1px;
      text-transform: uppercase;
      font-style: normal;
}

.about-bio {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 16px;
}

.values-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 30px;
}

.value-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 18px 20px;
      background: var(--cream);
      border-radius: 8px;
      border-left: 4px solid var(--navy);
      transition: border-color .2s;
}

.value-item:hover {
      border-color: var(--gold);
}

.value-icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      background: var(--navy);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
}

.value-item h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
}

.value-item p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
}


/* ══════════════════════════════════════
   PLATFORM / AGENDA
══════════════════════════════════════ */
.agenda-section {
      padding: 90px 5%;
      background: var(--cream);
}

.agenda-section .section-title {
      margin-bottom: 48px;
}

.yt-modal video {
      width: 100%;
      height: auto;
      max-height: 80vh;
      border-radius: 10px;
      background: black;
}

.agenda-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-bottom: 72px;
}

.agenda-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 18px rgba(7, 29, 120, .07);
      transition: transform .25s, border-color .25s, box-shadow .25s;
      cursor: pointer;
}

.agenda-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
      box-shadow: 0 12px 40px rgba(7, 29, 120, .13);
}

.agenda-card-video {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--navy-dark);
      position: relative;
      overflow: hidden;
}

.agenda-card-video video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}

.agenda-card-video-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(4, 15, 69, .45);
      transition: background .2s;
}

.agenda-card:hover .agenda-card-video-overlay {
      background: rgba(4, 15, 69, .25);
}

.agenda-play-btn {
      width: 44px;
      height: 44px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left: 3px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, .4);
      transition: transform .2s, background .2s;
}

.agenda-card:hover .agenda-play-btn {
      transform: scale(1.1);
      background: var(--gold-light);
}



.agenda-card-icon {
      font-size: 22px;
      flex-shrink: 0;
}

.agenda-card-body {
      padding: 20px 18px 22px;
      display: flex;
      align-items: center;
      gap: 10px;
      /* Force the flex container to respect the bounds of its parent */
      min-width: 0;
}

.agenda-card-body h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.3;

      /* --- NEW STYLES START HERE --- */
      white-space: nowrap;
      /* Prevents text from wrapping to line 2 */
      overflow: hidden;
      /* Cuts off the extra text */
      text-overflow: ellipsis;
      /* Adds the "..." */

      /* Crucial for Flexbox: */
      min-width: 0;
      flex: 1;
      /* Allows the title to take up the remaining space and shrink */
}

/* YouTube 2-card row */
.youtube-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      margin-bottom: 72px;
}

.yt-card {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      border-top: 4px solid var(--gold);
      box-shadow: 0 4px 18px rgba(7, 29, 120, .07);
      transition: transform .25s, box-shadow .25s;
      cursor: pointer;
      text-decoration: none;
      display: block;
}

.yt-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 40px rgba(7, 29, 120, .15);
}

.yt-thumb {
      width: 100%;
      aspect-ratio: 16/9;
      position: relative;
      overflow: hidden;
      background: var(--navy-dark);
}

.yt-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}

.yt-thumb-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(4, 15, 69, .42);
      transition: background .2s;
}

.yt-card:hover .yt-thumb-overlay {
      background: rgba(4, 15, 69, .22);
}

.yt-play-btn {
      width: 52px;
      height: 52px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-left: 4px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .35);
      transition: transform .2s, background .2s;
}

.yt-card:hover .yt-play-btn {
      transform: scale(1.1);
      background: var(--gold-light);
}

.yt-card-body {
      padding: 20px 20px 22px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
}

.yt-card-icon {
      font-size: 20px;
      flex-shrink: 0;
      margin-top: 2px;
}

.yt-card-body h4 {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      line-height: 1.35;
      margin-bottom: 4px;
}

.yt-card-body p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.5;
}

/* Subsection label */
.subsection-label {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(7, 29, 120, .12);
      display: block;
}

/* Written platform */
.platform-written {
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 4px 30px rgba(7, 29, 120, .07);
      overflow: hidden;
}

.platform-written-header {
      background: var(--navy-dark);
      padding: 40px 48px 36px;
      position: relative;
      overflow: hidden;
}

.platform-written-header::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(26, 199, 231, .12);
}

.platform-written-header::after {
      content: '';
      position: absolute;
      bottom: -60px;
      right: 80px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(26, 199, 231, .07);
}

.platform-written-header h3 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(20px, 3vw, 38px);
      font-weight: 900;
      color: #fff;
      position: relative;
      z-index: 1;
      margin-bottom: 8px;
}

.platform-written-header p {
      font-size: 16px;
      color: rgba(255, 255, 255, .65);
      position: relative;
      z-index: 1;
}

.platform-pillars {
      padding: 40px 48px 48px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 36px 48px;
}

.pillar {
      border-top: 3px solid var(--navy);
      padding-top: 18px;
}

.pillar-num {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
}

.pillar h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 19px;
      font-weight: 700;
      color: var(--navy-dark);
      margin-bottom: 14px;
      line-height: 1.3;
}

.pillar-points {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
}

.pillar-points li {
      display: flex;
      gap: 10px;
      font-size: 16px;
      line-height: 2;
      color: #3a3a52;
}

.pillar-points li .bullet {
      flex-shrink: 0;
      margin-top: 8px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold);
}

.pillar-points li strong {
      font-weight: 600;
      color: var(--navy);
}

.platform-summary {
      background: #fff;
      border-top: 1px solid rgba(7, 29, 120, .08);
      padding: 28px 48px;
      display: flex;
      align-items: center;
      gap: 16px;
}

.summary-bar {
      flex-shrink: 0;
      width: 4px;
      height: 48px;
      background: var(--gold);
      border-radius: 4px;
}

.platform-summary p {
      font-style: italic;
      font-size: 23px;
      color: var(--navy-dark);
      line-height: 1.6;
      font-family: 'Outfit', sans-serif;
}


/* ══════════════════════════════════════
   VIDEO MODALS
══════════════════════════════════════ */
.video-modal,
.yt-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(4, 15, 69, .92);
      align-items: center;
      justify-content: center;
      padding: 20px;
}

.video-modal.open,
.yt-modal.open {
      display: flex;
}

.video-modal-inner,
.yt-modal-inner {
      position: relative;
      width: 100%;
      max-width: 860px;
}

.video-modal-inner video {
      width: 100%;
      border-radius: 12px;
      display: block;
      background: #000;
}

.yt-modal-inner iframe {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 12px;
      display: block;
      border: none;
}

.video-modal-close,
.yt-modal-close {
      position: absolute;
      top: -44px;
      right: 0;
      background: none;
      border: none;
      color: #fff;
      font-size: 28px;
      cursor: pointer;
      opacity: .7;
      transition: opacity .2s;
      line-height: 1;
}

.video-modal-close:hover,
.yt-modal-close:hover {
      opacity: 1;
}


/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
#gallery {
      background: var(--navy);
      padding-bottom: 70px;
}

#gallery .section-title {
      color: #fff;
}

#gallery .section-subtitle {
      color: rgba(255, 255, 255, .6);
}

#gallery .section-label {
      color: var(--gold-light);
}

.gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 220px 220px;
      gap: 12px;
      margin-top: 44px;
}

.gallery-item {
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      background: var(--navy-dark);
}

.gallery-item:nth-child(1) {
      grid-column: span 2;
      grid-row: span 2;
}

.gallery-item:nth-child(4) {
      grid-column: span 2;
}

.gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7, 29, 120, .7) 0%, transparent 60%);
      opacity: 0;
      transition: opacity .3s;
      display: flex;
      align-items: flex-end;
      padding: 18px;
}

.gallery-item:hover .gallery-overlay {
      opacity: 1;
}

.gallery-overlay span {
      color: #fff;
      font-size: 13px;
      font-weight: 700;
}


/* ══════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════ */
#video-section {
      background: var(--white);
}

.video-layout {
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 70px;
      align-items: center;
}

.video-wrap {
      position: relative;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 24px 70px rgba(7, 29, 120, .22);
      background: #000;
      aspect-ratio: 16/9;
}

.video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}

.video-controls {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 10px 14px 14px;
      background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: opacity .3s;
      z-index: 10;
}

.vid-btn {
      background: rgba(255, 255, 255, .15);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 6px;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      -webkit-tap-highlight-color: transparent;
      transition: background .2s;
}

.vid-btn:hover {
      background: rgba(255, 255, 255, .25);
}

.play-pause {
      background: var(--gold);
      border-color: var(--gold);
}

.play-pause:hover {
      background: var(--gold-light);
}

.vid-progress-wrap {
      flex: 1;
      height: 36px;
      display: flex;
      align-items: center;
      cursor: pointer;
      position: relative;
      -webkit-tap-highlight-color: transparent;
      padding: 0 2px;
}

.vid-progress-bg {
      position: absolute;
      left: 2px;
      right: 2px;
      height: 4px;
      background: rgba(255, 255, 255, .25);
      border-radius: 4px;
}

.vid-progress-fill {
      position: absolute;
      left: 2px;
      height: 4px;
      background: var(--gold);
      border-radius: 4px;
      width: 0%;
      transition: width .1s linear;
}

.vid-progress-thumb {
      position: absolute;
      width: 14px;
      height: 14px;
      background: #fff;
      border-radius: 50%;
      left: 2px;
      margin-left: -7px;
      top: 50%;
      transform: translateY(-50%);
      box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
      transition: left .1s linear;
}

.vid-time {
      color: rgba(255, 255, 255, .8);
      font-size: 12px;
      font-weight: 700;
      min-width: 36px;
      text-align: right;
      flex-shrink: 0;
      font-family: monospace;
}

.video-points {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
}

.video-points li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      font-size: 16px;
      color: var(--muted);
}

.video-points li::before {
      content: '✓';
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      background: var(--navy);
      color: var(--gold-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      margin-top: 1px;
}



/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact {
      background: var(--warm-white);
}

.contact-layout {
      display: grid;
      grid-template-columns: 1fr 550px;
      gap: 80px;
      align-items: start;
}

.contact-info h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 26px;
      color: var(--navy);
      margin-bottom: 16px;
}

.contact-info p {
      font-size: 17px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 30px;
}

.contact-details {
      display: flex;
      flex-direction: column;
      gap: 16px;
}

.contact-detail {
      display: flex;
      gap: 14px;
      align-items: center;
}

.contact-detail-icon {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      background: var(--navy);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
}

.contact-detail strong {
      display: block;
      font-size: 13px;
      color: var(--navy);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
}

.contact-detail span {
      font-size: 14px;
      color: var(--muted);
}

.contact-form {
      background: #fff;
      border-radius: 14px;
      padding: 40px;
      box-shadow: 0 8px 40px rgba(7, 29, 120, .1);
}

.contact-form h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 24px;
      color: var(--navy);
      margin-bottom: 24px;
}

.form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
}

.form-group {
      margin-bottom: 18px;
}

.form-group label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
      width: 100%;
      padding: 13px 16px;
      border: 2px solid var(--light-border);
      border-radius: 6px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      color: var(--text);
      background: var(--warm-white);
      transition: border-color .2s;
      outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
      border-color: var(--navy);
}

.form-group textarea {
      resize: vertical;
      min-height: 110px;
}

.form-submit {
      width: 100%;
      background: var(--navy);
      color: #fff;
      border: none;
      padding: 16px;
      border-radius: 6px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s, transform .15s;
}

.form-submit:hover {
      background: var(--navy-light);
      transform: translateY(-1px);
}

.chip-group {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 8px;
}

.chip {
      position: relative;
      display: inline-flex;
      align-items: center;
      padding: 10px 14px;
      border: 1.5px solid var(--light-border);
      border-radius: 999px;
      background: var(--warm-white);
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      user-select: none;
}

.chip input {
      position: absolute;
      opacity: 0;
      pointer-events: none;
}

.chip:hover {
      border-color: var(--navy);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(7, 29, 120, 0.08);
}

/* Selected state */
.chip:has(input:checked) {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
}

/* ══════════════════════════════════════
   DONATE
══════════════════════════════════════ */
#donate {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
}


#donate .section-title {
      color: #fff;
      margin-bottom: 80px;
}

#donate .section-subtitle {
      color: rgba(255, 255, 255, .65);
      margin: 0 auto 44px;
}

#donate .section-label {
      color: var(--gold-light);
}

.donate-amounts {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 36px;
      position: relative;
      z-index: 1;
}

.donate-amount-btn {
      padding: 14px 28px;
      border: 2px solid rgba(255, 255, 255, .3);
      background: rgba(255, 255, 255, .07);
      color: #fff;
      border-radius: 6px;
      font-size: 18px;
      font-weight: 700;
      cursor: pointer;
      transition: border-color .2s, background .2s, transform .15s;
}

.donate-amount-btn:hover,
.donate-amount-btn.active {
      border-color: var(--gold);
      background: rgba(26, 199, 231, .15);
      transform: translateY(-2px);
}

.donate-form {
      max-width: 520px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
}

.donate-form-inner {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 12px;
      padding: 32px;
}

.donate-form label {
      display: block;
      color: rgba(255, 255, 255, .7);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
}

.donate-form input {
      width: 100%;
      padding: 14px 18px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 6px;
      color: #fff;
      font-size: 16px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      outline: none;
      transition: border-color .2s;
      margin-bottom: 18px;
}

.donate-form input::placeholder {
      color: rgba(255, 255, 255, .35);
}

.donate-form input:focus {
      border-color: var(--gold);
}

.donate-submit {
      width: 100%;
      padding: 18px;
      background: var(--gold);
      color: var(--navy-dark);
      border: none;
      border-radius: 6px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s, transform .15s;
      box-shadow: 0 4px 20px rgba(26, 199, 231, .3);
}

.donate-submit:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
}

.donate-disclaimer {
      font-size: 11px;
      color: rgba(255, 255, 255, .35);
      margin-top: 14px;
}

/* GRID */
.donate-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 30px;
      align-items: start;
}

/* QUICK AMOUNTS */
.donate-quick-amounts {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 14px;
}

.donate-amount-btn {
      padding: 10px 18px;
      border: 2px solid rgba(255, 255, 255, .3);
      background: rgba(255, 255, 255, .07);
      color: #fff;
      border-radius: 999px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: all .2s ease;
}

.donate-amount-btn:hover,
.donate-amount-btn.active {
      border-color: var(--gold);
      background: rgba(26, 199, 231, .18);
      transform: translateY(-1px);
}

/* FORM */
.donate-form-inner {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 12px;
      padding: 32px;
}

.donate-form label {
      display: block;
      color: rgba(255, 255, 255, .7);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 12px 0 6px;
}

.donate-form input {
      width: 100%;
      padding: 14px 16px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 6px;
      color: #fff;
      font-size: 15px;
      outline: none;
}

.donate-form input::placeholder {
      color: rgba(255, 255, 255, .35);
}

.donate-form input:focus {
      border-color: var(--gold);
}

/* BUTTON */
.donate-submit {
      width: 100%;
      margin-top: 16px;
      padding: 16px;
      background: var(--gold);
      color: var(--navy-dark);
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform .15s ease;
}

.donate-submit:hover {
      transform: translateY(-2px);
}

/* DISCLAIMER */
.donate-disclaimer {
      font-size: 11px;
      color: rgba(255, 255, 255, .35);
      margin-top: 12px;
      line-height: 1.4;
}

/* E-TRANSFER */
.etransfer-box {
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 12px;
      padding: 26px;
      color: #fff;
}

.etransfer-box h3 {
      font-size: 23px;
      margin-bottom: 10px;
      color: #fff;
}

.etransfer-box p {
      font-size: 15px;
      color: rgba(255, 255, 255, .7);
      margin-bottom: 12px;
}

.etransfer-email {
      font-size: 18px;
      font-weight: 800;
      color: var(--gold);
      background: rgba(255, 255, 255, .06);
      padding: 10px;
      border-radius: 8px;
      text-align: center;
      margin-bottom: 14px;
}

.etransfer-list {
      list-style: none;
      padding: 0;
      margin: 0 0 12px;
}

.etransfer-list li {
      font-size: 16px;
      margin-bottom: 6px;
      color: rgba(255, 255, 255, .75);
}

.etransfer-note {
      font-size: 13px;
      color: rgba(255, 255, 255, .4);
      line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 900px) {
      .donate-grid {
            grid-template-columns: 1fr;
      }
}

/* ══════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════ */
.newsletter {
      background: var(--cream);
      padding: 60px 5%;
      text-align: center;
      border-top: 1px solid var(--light-border);
}

.newsletter h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 30px;
      color: var(--navy);
      margin-bottom: 10px;
}

.newsletter p {
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 28px;
}

.newsletter-form {
      display: flex;
      max-width: 480px;
      margin: 0 auto;
}

.newsletter-form input {
      flex: 1;
      padding: 15px 20px;
      border: 2px solid var(--light-border);
      border-right: none;
      border-radius: 6px 0 0 6px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 14px;
      outline: none;
      transition: border-color .2s;
}

.newsletter-form input:focus {
      border-color: var(--navy);
}

.newsletter-form button {
      background: var(--navy);
      color: #fff;
      border: none;
      padding: 0 28px;
      border-radius: 0 6px 6px 0;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s;
}

.newsletter-form button:hover {
      background: var(--navy-light);
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
      background: var(--navy-dark);
      padding: 50px 5% 28px;
      color: rgba(255, 255, 255, .6);
}

.footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand p {
      font-size: 13px;
      line-height: 1.7;
      margin-top: 14px;
      color: rgba(255, 255, 255, .45);
}

.footer-col h4 {
      color: #fff;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 16px;
}

.footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
}

.footer-col ul a {
      color: rgba(255, 255, 255, .5);
      text-decoration: none;
      font-size: 13px;
      transition: color .2s;
}

.footer-col ul a:hover {
      color: var(--gold-light);
}

.footer-social {
      display: flex;
      gap: 10px;
      margin-top: 18px;
}

.social-icon {
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .5);
      text-decoration: none;
      font-size: 15px;
      transition: border-color .2s, color .2s;
}

.social-icon:hover {
      border-color: var(--gold);
      color: var(--gold-light);
}

.footer-bottom {
      max-width: 1200px;
      margin: 22px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
}

.nav-logo-icon {
      width: 44px;
      height: 44px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
      font-weight: 900;
      font-size: 18px;
      color: var(--navy-dark);
      flex-shrink: 0;
}


/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
      from {
            opacity: 0;
            transform: translateY(28px);
      }

      to {
            opacity: 1;
            transform: translateY(0);
      }
}


/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {

      .hero-inner,
      .about-grid,
      .contact-layout,
      .video-layout {
            grid-template-columns: 1fr;
      }

      .hero-photo-card .hero-stat-card {
            position: static;
      }

      .testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
      }

      .footer-inner {
            grid-template-columns: 1fr 1fr;
      }

      .gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: auto;
      }

      .gallery-item:nth-child(1),
      .gallery-item:nth-child(4) {
            grid-column: span 1;
            grid-row: span 1;
      }

      .agenda-grid {
            grid-template-columns: repeat(2, 1fr);
      }

      .youtube-grid {
            grid-template-columns: 1fr;
      }

      .platform-pillars {
            grid-template-columns: 1fr;
            padding: 28px 24px 36px;
      }

      .platform-written-header {
            padding: 28px 24px 24px;
      }

      .platform-summary {
            padding: 22px 24px;
            flex-direction: column;
            text-align: center;
      }
}

@media (max-width: 700px) {
      nav {
            padding: 0 4%;
      }

      .nav-links {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--navy);
            padding: 20px;
            gap: 20px;
      }

      .nav-links.open {
            display: flex;
      }

      .hamburger {
            display: flex;
      }

      .testimonials-grid {
            grid-template-columns: 1fr;
      }

      .form-row {
            grid-template-columns: 1fr;
      }

      .footer-inner {
            grid-template-columns: 1fr;
            gap: 28px;
      }

      .footer-bottom {
            flex-direction: column;
            gap: 8px;
            text-align: center;
      }

      .newsletter-form {
            flex-direction: column;
      }

      .newsletter-form input {
            border-right: 2px solid var(--light-border);
            border-radius: 6px;
            border-bottom: none;
      }

      .newsletter-form button {
            border-radius: 6px;
            padding: 14px;
      }

      .agenda-grid {
            grid-template-columns: 1fr;
      }

      .youtube-grid {
            grid-template-columns: 1fr;
      }
}




/* ============================================================
   ABOUT PAGE STYLES  —  scoped entirely to #aboutpage
   Paste into style.css  –  will NOT affect any other page
   ============================================================ */

/* ── BASE ── */
#aboutpage {
      background: #faf9f7;
      color: #1a1a2e;
}

/* ── HERO ── */
#aboutpage .ap-hero {
      background: linear-gradient(135deg, #040f45 0%, #071d78 55%, #1a35a0 100%);
      padding: 200px 5% 80px;
      position: relative;
      overflow: hidden;
}

#aboutpage .ap-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
            radial-gradient(ellipse at 80% 20%, rgba(26, 199, 231, .12) 0%, transparent 50%),
            radial-gradient(ellipse at 5% 85%, rgba(26, 199, 231, .08) 0%, transparent 45%);
      pointer-events: none;
}

#aboutpage .ap-hero-wm {
      position: absolute;
      right: -2%;
      bottom: -8%;
      font-family: 'Outfit', sans-serif;
      font-size: clamp(120px, 18vw, 260px);
      font-weight: 900;
      color: rgba(255, 255, 255, .028);
      line-height: 1;
      user-select: none;
      white-space: nowrap;
      z-index: 0;
}

#aboutpage .ap-hero-inner {
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 700px;
      gap: 56px;
      align-items: center;
      position: relative;
      z-index: 1;
}

/* breadcrumb */
#aboutpage .ap-breadcrumb {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .38);
      margin-bottom: 26px;
      flex-wrap: wrap;
}

#aboutpage .ap-breadcrumb a {
      color: rgba(255, 255, 255, .38);
      text-decoration: none;
      transition: color .2s;
}

#aboutpage .ap-breadcrumb a:hover {
      color: #1ac7e7;
}

#aboutpage .ap-breadcrumb .ap-bc-sep {
      color: rgba(255, 255, 255, .25);
}

#aboutpage .ap-breadcrumb .ap-bc-cur {
      color: #1ac7e7;
}

#aboutpage .ap-hero-text h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(34px, 4.8vw, 36px);
      font-weight: 900;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 20px;
}

#aboutpage .ap-hero-text h1 em {
      font-style: italic;
      color: #1ac7e7;
}

#aboutpage .ap-hero-sub {
      font-family: 'Merriweather', serif;
      font-style: italic;
      font-size: 16px;
      color: rgba(255, 255, 255, .6);
      line-height: 1.7;
      border-left: 3px solid #1ac7e7;
      padding-left: 18px;
      margin-bottom: 32px;
}

#aboutpage .ap-hero-btns {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
}

/* video in hero */
#aboutpage .ap-hero-video-wrap {
      position: relative;
      width: 100%;
}

#aboutpage .ap-hero-video-frame {
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, .55);
      border: 3px solid rgba(255, 255, 255, .14);
      background: #000;
      cursor: pointer;
      position: relative;
}

#aboutpage .ap-hero-video-frame video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
}

#aboutpage .ap-vid-controls {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 10px 14px 14px;
      background: linear-gradient(to top, rgba(0, 0, 0, .72) 0%, transparent 100%);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: opacity .3s;
      z-index: 10;
}

#aboutpage .ap-hero-video-frame:hover .ap-vid-controls {
      opacity: 1;
}

#aboutpage .ap-vid-btn {
      background: rgba(255, 255, 255, .14);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 6px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      flex-shrink: 0;
      transition: background .2s;
}

#aboutpage .ap-vid-btn:hover {
      background: rgba(255, 255, 255, .26);
}

#aboutpage .ap-vid-btn.ap-pp {
      background: #1ac7e7;
      border-color: #1ac7e7;
}

#aboutpage .ap-vid-btn.ap-pp:hover {
      background: #3dd4ec;
}

#aboutpage .ap-vid-prog-wrap {
      flex: 1;
      height: 36px;
      display: flex;
      align-items: center;
      cursor: pointer;
      position: relative;
      padding: 0 2px;
}

#aboutpage .ap-vid-prog-bg {
      position: absolute;
      left: 2px;
      right: 2px;
      height: 4px;
      background: rgba(255, 255, 255, .25);
      border-radius: 4px;
}

#aboutpage .ap-vid-prog-fill {
      position: absolute;
      left: 2px;
      height: 4px;
      background: #1ac7e7;
      border-radius: 4px;
      width: 0%;
      transition: width .1s linear;
}

#aboutpage .ap-vid-prog-thumb {
      position: absolute;
      width: 13px;
      height: 13px;
      background: #fff;
      border-radius: 50%;
      left: 2px;
      top: 50%;
      transform: translateY(-50%);
      box-shadow: 0 1px 4px rgba(0, 0, 0, .4);
      transition: left .1s linear;
      margin-left: -6px;
}

#aboutpage .ap-vid-time {
      color: rgba(255, 255, 255, .8);
      font-size: 11px;
      font-weight: 700;
      min-width: 34px;
      text-align: right;
      flex-shrink: 0;
      font-family: monospace;
}

/* ── SHARED ── */
#aboutpage .ap-wrap {
      /* max-width: 1200px; */
      margin: 0 auto;
}

#aboutpage .ap-label {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #1ac7e7;
      font-weight: 700;
      margin-bottom: 14px;
}

#aboutpage .ap-label::before {
      content: '';
      display: inline-block;
      width: 22px;
      height: 2px;
      background: #1ac7e7;
      flex-shrink: 0;
}

#aboutpage .ap-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 900;
      color: #071d78;
      line-height: 1.08;
      margin-bottom: 10px;
}

#aboutpage .ap-title em {
      font-style: italic;
      color: #1a35a0;
}

#aboutpage .ap-title-bar {
      display: block;
      width: 52px;
      height: 4px;
      background: linear-gradient(90deg, #1ac7e7, #071d78);
      border-radius: 2px;
      margin: 14px 0 28px;
}

#aboutpage .ap-body {
      font-size: 16px;
      color: #55556e;
      line-height: 1.9;
}

#aboutpage .ap-body p {
      margin-bottom: 18px;
      font-size: 17px;
}

#aboutpage .ap-body p:last-child {
      margin-bottom: 0;
}

#aboutpage .ap-body strong {
      color: #1a1a2e;
      font-weight: 700;
}

#aboutpage .ap-pull {
      margin: 32px 0;
      padding: 20px 26px 20px 32px;
      background: #fff;
      border-left: 5px solid #1ac7e7;
      border-radius: 0 10px 10px 0;
      box-shadow: 0 4px 20px rgba(7, 29, 120, .07);
      position: relative;
}

#aboutpage .ap-pull::before {
      content: '\201C';
      font-family: 'Outfit', sans-serif;
      font-size: 80px;
      color: rgba(26, 199, 231, .18);
      position: absolute;
      top: -12px;
      left: 10px;
      line-height: 1;
      pointer-events: none;
}

#aboutpage .ap-pull p {
      font-style: italic;
      font-size: 18px;
      color: #071d78;
      line-height: 1.65;
      margin: 0;
}

/* ── SECTIONS ── */
#aboutpage .ap-sec {
      padding: 90px 5%;
}

#aboutpage .ap-sec--cream {
      background: #f3f0eb;
}

#aboutpage .ap-sec--white {
      background: #fff;
}

/* ── SECTION 1: ABOUT
   Layout:
   [ photo16 | photo17 ]   ← side by side, fixed-width right column
   full-width text below (no columns)
── */
#aboutpage .ap-intro-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 44px;
}

#aboutpage .ap-intro-top .ap-img {
      aspect-ratio: 4/5;
}

#aboutpage .ap-father-caption-block {
      background: #fff;
      border-top: 4px solid #1ac7e7;
      border-radius: 0 0 10px 10px;
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
}

#aboutpage .ap-father-caption-block span {
      font-family: 'Outfit', sans-serif;
      font-style: italic;
      font-size: 15px;
      color: #071d78;
      font-weight: 700;
}

#aboutpage .ap-father-photo-wrap {
      max-width: 560px;
      margin: 0 auto 44px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(7, 29, 120, .12);
}

#aboutpage .ap-father-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
}

#aboutpage .ap-father-grid .ap-img {
      aspect-ratio: 3/4;
      border-radius: 0;
}

/* ── PHOTO SYSTEM ── */
#aboutpage .ap-img {
      overflow: hidden;
      border-radius: 8px;
      background: #c8d0e8;
      cursor: zoom-in;
      position: relative;
      display: block;
}

#aboutpage .ap-img .ap-zoom-badge {
      position: absolute;
      bottom: 10px;
      right: 10px;
      background: rgba(7, 29, 120, .72);
      color: #fff;
      font-size: 11px;
      letter-spacing: .4px;
      padding: 5px 9px;
      border-radius: 5px;
      opacity: 0;
      transition: opacity .25s;
      pointer-events: none;
      display: flex;
      align-items: center;
      gap: 4px;
}

#aboutpage .ap-img:hover .ap-zoom-badge {
      opacity: 1;
}

#aboutpage .ap-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .45s cubic-bezier(.25, .46, .45, .94);
}

#aboutpage .ap-img:hover img {
      transform: scale(1.05);
}

#aboutpage .ap-caption {
      font-size: 12.5px;
      color: #8080a0;
      font-style: italic;
      line-height: 1.55;
      margin-top: 9px;
      padding: 0 2px;
}

/* ── GALLERIES ── */
#aboutpage .ap-gallery,
#aboutpage .ap-comm-grid,
#aboutpage .ap-sports-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 44px;
}


/* ── BUTTONS ── */
#aboutpage .ap-btn-gold {
      background: #1ac7e7;
      color: #040f45;
      padding: 13px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: background .2s, transform .15s;
      display: inline-block;
}

#aboutpage .ap-btn-gold:hover {
      background: #3dd4ec;
      transform: translateY(-2px);
}

#aboutpage .ap-btn-ghost {
      border: 2px solid rgba(255, 255, 255, .4);
      color: #fff;
      padding: 11px 26px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: border-color .2s, background .2s;
      display: inline-block;
}

#aboutpage .ap-btn-ghost:hover {
      border-color: #fff;
      background: rgba(255, 255, 255, .07);
}

/* ── CTA ── */
#aboutpage .ap-cta {
      padding: 72px 5%;
      background: linear-gradient(135deg, #040f45 0%, #071d78 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
}

#aboutpage .ap-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 65% 50%, rgba(26, 199, 231, .10) 0%, transparent 60%);
}

#aboutpage .ap-cta h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 900;
      color: #fff;
      margin-bottom: 14px;
      position: relative;
}

#aboutpage .ap-cta p {
      font-size: 16px;
      color: rgba(255, 255, 255, .62);
      max-width: 460px;
      margin: 0 auto 32px;
      line-height: 1.7;
      position: relative;
}

#aboutpage .ap-cta-btns {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      position: relative;
}

/* ── LIGHTBOX ── */
#ap-lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 99999;
      background: rgba(4, 15, 69, .95);
      align-items: center;
      justify-content: center;
      padding: 24px;
      backdrop-filter: blur(8px);
}

#ap-lightbox.open {
      display: flex;
}

#ap-lightbox-inner {
      position: relative;
      max-width: 940px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      animation: apZoomIn .28s cubic-bezier(.34, 1.4, .64, 1);
}

@keyframes apZoomIn {
      from {
            transform: scale(.88);
            opacity: 0;
      }

      to {
            transform: scale(1);
            opacity: 1;
      }
}

#ap-lightbox-img {
      max-width: 100%;
      max-height: 78vh;
      border-radius: 10px;
      display: block;
      box-shadow: 0 40px 90px rgba(0, 0, 0, .75);
}

#ap-lightbox-caption {
      color: rgba(255, 255, 255, .68);
      font-size: 13px;
      font-style: italic;
      text-align: center;
      max-width: 680px;
      line-height: 1.6;
}

#ap-lightbox-counter {
      position: absolute;
      top: -44px;
      left: 0;
      color: rgba(255, 255, 255, .4);
      font-size: 12px;
      letter-spacing: 1px;
}

#ap-lightbox-close {
      position: absolute;
      top: -44px;
      right: 0;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .2);
      color: #fff;
      font-size: 18px;
      font-weight: 300;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s;
}

#ap-lightbox-close:hover {
      background: rgba(26, 199, 231, .35);
}

#ap-lightbox-prev,
#ap-lightbox-next {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .15);
      color: #fff;
      font-size: 20px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .2s, border-color .2s;
      z-index: 100000;
}

#ap-lightbox-prev {
      left: 18px;
}

#ap-lightbox-next {
      right: 18px;
}

#ap-lightbox-prev:hover,
#ap-lightbox-next:hover {
      background: rgba(26, 199, 231, .28);
      border-color: #1ac7e7;
}

/* ── SECTION 1: INTRO SPLIT
   Top: [ photos col | heading + 2 paras col ]
   Bottom: remaining text full-width
── */
#aboutpage .ap-intro-split {
      display: grid;
      grid-template-columns: 480px 1fr;
      gap: 60px;
      align-items: start;
      margin-bottom: 44px;
}

#aboutpage .ap-intro-photos-col {
      /* left */
}

#aboutpage .ap-intro-text-col {
      /* right */
}

#aboutpage .ap-intro-below {
      /* full-width below the split */
}

/* remove old centred constraint */
#aboutpage .ap-father-photo-wrap {
      max-width: none;
      margin: 0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(7, 29, 120, .12);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
      #aboutpage .ap-hero-inner {
            grid-template-columns: 1fr;
            gap: 44px;
      }

      #aboutpage .ap-hero-video-wrap {
            max-width: 560px;
      }

      #aboutpage .ap-intro-split {
            grid-template-columns: 1fr;
            gap: 36px;
      }
}

@media (max-width: 768px) {
      .hero-badge {
            font-size: 11px;
      }

      .btn-outline {
            margin-left: 0;
      }

      #aboutpage .ap-gallery,
      #aboutpage .ap-comm-grid,
      #aboutpage .ap-sports-grid {
            grid-template-columns: repeat(2, 1fr);
      }

      #aboutpage .ap-intro-top {
            max-width: 440px;
            margin-left: auto;
            margin-right: auto;
      }
}

@media (max-width: 520px) {

      #aboutpage .ap-gallery,
      #aboutpage .ap-comm-grid,
      #aboutpage .ap-sports-grid {
            grid-template-columns: 1fr;
      }

      #ap-lightbox-prev {
            left: 6px;
      }

      #ap-lightbox-next {
            right: 6px;
      }
}

/* ── HERO ── */
.page-hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
      padding: 140px 5% 90px;
      position: relative;
      overflow: hidden;
      text-align: center;
}

.page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 20% 80%, rgba(232, 160, 32, .14) 0%, transparent 55%),
            radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, .04) 0%, transparent 40%);
}

.page-hero-bg {
      position: absolute;
      left: 50%;
      bottom: -8%;
      transform: translateX(-50%);
      font-family: 'Outfit', sans-serif;
      font-size: clamp(80px, 14vw, 200px);
      font-weight: 900;
      color: rgba(255, 255, 255, .03);
      line-height: 1;
      user-select: none;
      white-space: nowrap;
}

.page-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
}

.breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 22px;
}

.breadcrumb a {
      color: rgba(255, 255, 255, .45);
      text-decoration: none;
      transition: color .2s;
}

.breadcrumb a:hover {
      color: var(--gold-light);
}

.breadcrumb span {
      color: var(--gold-light);
}

.page-hero h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(42px, 6vw, 74px);
      font-weight: 900;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 18px;
}

.page-hero h1 em {
      font-style: italic;
      color: var(--gold-light);
      display: block;
}

.page-hero-tagline {
      font-family: 'Merriweather', serif;
      font-style: italic;
      color: rgba(255, 255, 255, .6);
      font-size: 17px;
      line-height: 1.7;
      max-width: 520px;
      margin: 0 auto;
}

/* ── QUICK CONTACT STRIP ── */
.quick-strip {
      background: var(--navy);
}

.quick-strip-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .08);
}

.quick-item {
      background: var(--navy);
      padding: 30px 28px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: background .2s;
      text-decoration: none;
}

.quick-item:hover {
      background: var(--navy-light);
}

.quick-item-icon {
      width: 46px;
      height: 46px;
      flex-shrink: 0;
      background: #eee;
      border: 1px solid rgba(232, 160, 32, .3);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
}

.quick-item strong {
      display: block;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 3px;
      text-transform: uppercase;
      letter-spacing: 1px;
}

.quick-item span {
      color: rgba(255, 255, 255, .5);
      font-size: 15px;
}

/* ── MAIN CONTENT ── */
.contact-main {
      padding: 90px 5%;
      background: #fff;
}

.contact-main-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 600px;
      gap: 80px;
      align-items: start;
}

/* Left col */


.section-label {
      display: inline-block;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 10px;
}

.section-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 3.5vw, 44px);
      font-weight: 900;
      color: var(--navy);
      line-height: 1.1;
      margin-bottom: 16px;
}

.section-title em {
      font-style: italic;
      color: var(--navy-light);
}

.contact-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 40px;
}

/* Info cards */
.info-cards {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 40px;
}

.info-card {
      display: flex;
      gap: 16px;
      align-items: center;
      padding: 18px 20px;
      background: var(--cream);
      border-radius: 10px;
      border-left: 4px solid var(--navy);
      transition: border-color .2s, transform .2s;
}

.info-card:hover {
      border-color: var(--gold);
      transform: translateX(4px);
}

.info-card-icon {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      background: var(--navy);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
}

.info-card strong {
      display: block;
      font-size: 12px;
      color: var(--navy);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 2px;
}

.info-card span {
      font-size: 14px;
      color: var(--muted);
}

/* Social */
.social-row {
      display: flex;
      gap: 10px;
      margin-bottom: 44px;
}

.social-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      text-decoration: none;
      transition: background .2s, border-color .2s, transform .15s;
}

.social-btn:hover {
      background: var(--navy);
      color: #fff;
      border-color: var(--navy);
      transform: translateY(-2px);
}

/* Map */
.map-box {
      width: 100%;
      height: 340px;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(7, 29, 120, .1);
      overflow: hidden;
      position: relative;
}

.map-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--navy);
      color: #fff;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
}

.map-label span {
      color: var(--gold-light);
}

/* ── FORM ── */
.contact-form-wrap {
      background: #fff;
      border-radius: 20px;
      padding: 48px 44px;
      box-shadow: 0 20px 70px rgba(7, 29, 120, .12);
}

.form-header {
      margin-bottom: 36px;
      padding-bottom: 28px;
      border-bottom: 2px solid var(--border);
}

.form-header .form-eyebrow {
      display: inline-block;
      font-size: 13px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 10px;
}

.contact-form-wrap h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 38px;
      font-weight: 900;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 10px;
}

.contact-form-wrap h3 em {
      font-style: italic;
      color: var(--navy-light);
}

.contact-form-wrap .form-intro {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
}

.form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
}

.form-group {
      margin-bottom: 18px;
}

.form-group label {
      display: block;
      font-size: 12px;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
      width: 100%;
      padding: 13px 16px;
      border: 2px solid var(--border);
      border-radius: 8px;
      font-family: 'Lato', sans-serif;
      font-size: 14px;
      color: var(--text);
      background: var(--warm-white);
      transition: border-color .2s, box-shadow .2s;
      outline: none;
      appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
      border-color: var(--navy);
      box-shadow: 0 0 0 4px rgba(7, 29, 120, .07);
}

.form-group textarea {
      resize: vertical;
      min-height: 110px;
}

.form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235a5a7a' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 38px;
}

/* Checkbox */
.lawn-sign-group {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      background: rgba(232, 160, 32, .08);
      border: 2px solid rgba(232, 160, 32, .25);
      border-radius: 8px;
      margin-bottom: 22px;
      cursor: pointer;
      transition: border-color .2s, background .2s;
}

.lawn-sign-group:hover {
      border-color: var(--gold);
      background: rgba(232, 160, 32, .13);
}

.lawn-sign-group input[type="checkbox"] {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      accent-color: var(--navy);
      cursor: pointer;
      border: none;
      padding: 0;
      background: none;
      box-shadow: none;
}

.lawn-sign-group input[type="checkbox"]:focus {
      box-shadow: none;
      border-color: transparent;
}

.lawn-sign-group label {
      margin: 0;
      font-size: 14px;
      font-weight: 700;
      text-transform: none;
      letter-spacing: 0;
      color: var(--text);
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
}

/* Submit */
.form-submit {
      width: 100%;
      padding: 17px;
      background: var(--navy);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-family: 'Lato', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 18px rgba(7, 29, 120, .25);
}

.form-submit:hover {
      background: var(--navy-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(7, 29, 120, .35);
}

/* Success state */
.form-success {
      display: none;
      text-align: center;
      padding: 40px 20px;
}

.form-success-icon {
      width: 70px;
      height: 70px;
      background: rgba(7, 29, 120, .08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      margin: 0 auto 20px;
}

.form-success h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 24px;
      color: var(--navy);
      margin-bottom: 10px;
}

.form-success p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
}

/* ── VOLUNTEER STRIP ── */
.volunteer-strip {
      background: var(--warm-white);
      padding: 80px 5%;
}

.volunteer-strip-inner {
      max-width: 1100px;
      margin: 0 auto;
}

.volunteer-strip h2 {
      font-family: 'Outfit', sans-serif;
      serif;
      font-size: clamp(26px, 3vw, 40px);
      color: var(--navy);
      font-weight: 900;
      margin-bottom: 12px;
}

.volunteer-strip p {
      color: var(--muted);
      font-size: 15px;
      max-width: 540px;
      line-height: 1.7;
      margin-bottom: 40px;
}

.volunteer-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
}

.volunteer-card {
      background: #fff;
      border-radius: 12px;
      padding: 28px 24px;
      border-top: 4px solid var(--navy);
      box-shadow: 0 4px 16px rgba(7, 29, 120, .06);
      transition: transform .25s, border-color .25s;
}

.volunteer-card:hover {
      transform: translateY(-5px);
      border-color: var(--gold);
}

.volunteer-card-icon {
      font-size: 30px;
      margin-bottom: 14px;
      display: block;
}

.volunteer-card h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
}

.volunteer-card p {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.6;
}

/* ── CTA BANNER ── */
.cta-banner {
      padding: 70px 5%;
      background: var(--navy);
      text-align: center;
}

.cta-banner h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 900;
      color: var(--cream);
      margin-bottom: 12px;
}

.cta-banner p {
      font-size: 16px;
      color: var(--cream);
      opacity: .75;
      max-width: 500px;
      margin: 0 auto 32px;
}

.cta-banner-btns {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
}

.btn-navy {
      background: var(--cream);
      color: var(--navy-dark);
      padding: 14px 32px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: background .2s;
      border: 2px solid transparent;
}

.btn-navy:hover {
      background: var(--navy);
      color: #fff;
      border: 2px solid var(--cream);
}

.btn-outline-navy {
      border: 2px solid var(--cream);
      color: var(--cream);
      padding: 12px 28px;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: background .2s;
}

.btn-outline-navy:hover {
      background: rgba(7, 29, 120, .08);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
      .contact-main-inner {
            grid-template-columns: 1fr;
      }

      .contact-form-wrap {
            position: static;
      }

      .quick-strip-inner {
            grid-template-columns: repeat(2, 1fr);
      }

      .volunteer-cards {
            grid-template-columns: repeat(2, 1fr);
      }
}

@media (max-width: 700px) {
      nav {
            padding: 0 4%;
      }

      .nav-links {
            display: none !important;
            flex-direction: column;
            position: absolute;
            top: 70px;
            left: 0;
            width: 100%;
            background: var(--navy);
            padding: 20px;
            gap: 20px;
            z-index: 999;
      }

      .nav-links.open {
            display: flex !important;
      }

      .hamburger {
            display: flex !important;
      }

      .quick-strip-inner {
            grid-template-columns: 1fr;
      }

      .form-row {
            grid-template-columns: 1fr;
      }

      .volunteer-cards {
            grid-template-columns: 1fr;
      }

      .contact-form-wrap {
            padding: 30px 22px;
      }

      .social-row {
            flex-wrap: wrap;
      }

      .footer-inner {
            flex-direction: column;
            align-items: flex-start;
      }

      .footer-bottom {
            flex-direction: column;
      }
}