/*
 * SuperKids at Pittman Academy - Stylesheet
 * Modern design with glowing orbs and full-width parallax
 */

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

:root {
  --primary-color: #0bb84c;
  --primary-dark: #0a5f2d;
  --primary-light: #e8f7ed;
  --primary-glow: rgba(11, 184, 76, 0.4);
  --text-color: #1a1a2e;
  --text-muted: #4a4a5a;
  --light-gray: #f8f9fc;
  --border-color: #e0e5ed;
  --section-padding: 5rem;
  --max-width: 1200px;
  --orb-green-1: rgba(11, 184, 76, 0.15);
  --orb-green-2: rgba(14, 217, 86, 0.12);
  --orb-green-3: rgba(6, 95, 42, 0.08);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  background-color: #fff;
  line-height: 1.7;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover { color: var(--primary-color); }

/* ===== NAVIGATION ===== */
header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 999;
}

.mobile-menu { display: none; }

.navbar .menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--primary-dark);
}

.navbar .logo img {
  height: 48px;
  width: auto;
  margin-right: 0.5rem;
  border-radius: 0;
}

.navbar nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar nav a {
  font-weight: 500;
  padding: 0.5rem;
  transition: color 0.3s ease;
  position: relative;
}

.navbar nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar nav a:hover::after { width: 100%; }

.navbar .cta { margin-left: 1rem; }

.navbar .cta a {
  background: linear-gradient(135deg, var(--primary-color), #0ed956);
  color: #ffffff;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.navbar .cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

/* ===== HERO SPLIT ===== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  max-height: 650px;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.hero-media {
  background-color: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(11, 184, 76, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-media img, .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 0;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-text::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--orb-green-1);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: orbFloat 20s ease-in-out infinite;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-15px, 20px) scale(0.95); }
  75% { transform: translate(25px, 15px) scale(1.02); }
}

.hero-text .eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-color);
  margin: 0 0 1rem 0;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(135deg, #065f2a 0%, var(--primary-color) 25%, #0ed956 50%, var(--primary-color) 75%, #065f2a 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 6s ease infinite;
  position: relative;
  z-index: 1;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-text h1 .rotating-word {
  display: inline-block;
  position: relative;
  min-width: 250px;
  text-align: left;
  vertical-align: bottom;
  height: 1.2em;
}

.hero-text h1 .rotating-word span {
  display: inline-block;
  position: absolute;
  left: 0;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: linear-gradient(135deg, var(--primary-color) 0%, #0ed956 50%, #00ff66 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text h1 .rotating-word span.visible {
  position: relative;
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.hero-text h1 .rotating-word span.exit {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-20px) scale(0.9);
}

.hero-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin: 0 0 2rem 0;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #0ed956);
  color: #ffffff;
  padding: 1.1rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
  align-self: flex-start;
  box-shadow: 0 4px 20px var(--primary-glow);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--primary-glow);
  color: #ffffff;
}

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-padding) 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.section.light {
  background-color: #ffffff;
  position: relative;
}

.section.dark {
  background-color: var(--light-gray);
  position: relative;
  max-width: 100%;
}

.section.dark > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section.light::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--orb-green-1);
  border-radius: 50%;
  filter: blur(80px);
  top: 10%;
  left: -150px;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 25s ease-in-out infinite;
}

.section.dark::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: var(--orb-green-2);
  border-radius: 50%;
  filter: blur(70px);
  bottom: 10%;
  right: -100px;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 30s ease-in-out infinite reverse;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== STEPS GRID ===== */
.steps-with-image {
  display: block;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.steps-image {
  display: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(11, 184, 76, 0.1);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px var(--primary-glow);
}

.step h4 {
  font-family: 'Outfit', sans-serif;
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

.steps-note {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== PILLARS ===== */
.pillars-with-image {
  display: block;
  position: relative;
  z-index: 1;
}

.pillars-image {
  display: none;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: linear-gradient(145deg, #ffffff, #f8faf9);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--orb-green-1);
  border-radius: 50%;
  filter: blur(40px);
  top: -30px;
  right: -30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 184, 76, 0.12);
}

.pillar-card:hover::before { opacity: 1; }

.pillar-card .pillar-icon { margin-bottom: 1rem; }

.pillar-card .pillar-icon svg {
  width: 44px;
  height: 44px;
  fill: var(--primary-color);
}

.pillar-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pillar-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem 0;
}

.pillar-card ul li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pillar-card > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

/* ===== PROSE SECTION ===== */
.prose-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.prose-section p {
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.prose-section .highlight {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 2rem;
}

/* ===== PROGRAM ===== */
.program-overview {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.program-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
}

.program-block img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-image-wrap {
  display: flex;
  flex-direction: column;
}

.program-details h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--primary-dark);
}

.program-details > p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.program-details ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.program-details ul li {
  padding: 0.6rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1rem;
  color: var(--text-color);
}

.program-details ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.schedule-note {
  background: linear-gradient(135deg, var(--primary-light), #f0fff4);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  margin: 0;
  border-left: 4px solid var(--primary-color);
}

/* ===== AFTER-SCHOOL CALLOUT ===== */
.after-school-callout {
  margin-top: 3rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  border-radius: 20px;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.after-school-callout::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  top: -50px;
  right: -50px;
}

.after-school-callout h3 {
  font-family: 'Outfit', sans-serif;
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.after-school-callout p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

/* ===== LOCATION - FULL WIDTH PARALLAX ===== */
.location-section {
  position: relative;
  background-image: url('../images/academy-interior.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 1rem;
  max-width: 100% !important;
  width: 100%;
}

.location-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(6, 95, 42, 0.92), rgba(11, 184, 76, 0.88));
}

.location-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.location-section .section-title h2 {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.location-grid-extended {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.location-grid-extended .location-map {
  grid-column: 1 / -1;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.location-grid-extended .location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

.location-info, .location-features {
  background: rgba(255, 255, 255, 0.98);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 0.5rem;
  color: var(--primary-color);
}

.location-info h3, .location-features h3 {
  font-family: 'Outfit', sans-serif;
  margin: 0 0 1.25rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.location-info p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.location-info .class-times {
  background: linear-gradient(135deg, var(--primary-light), #f0fff4);
  padding: 1.25rem;
  border-radius: 12px;
  margin-top: 1rem;
  margin-bottom: 0;
}

.location-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-features ul li {
  padding: 0.65rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-color);
}

.location-features ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* ===== ABOUT ===== */
.about-section {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-video video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: block;
}

/* About - Video Feature */
.about-video-feature {
  max-width: 700px;
  margin: 3.5rem auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-video-feature h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: var(--primary-dark);
}

.about-video-feature p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem 0;
}

.about-video-feature video {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: block;
}

.about-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--primary-dark);
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about-content blockquote {
  margin: 2rem 0 0 0;
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--primary-light), #f0fff4);
  border-left: 4px solid var(--primary-color);
  border-radius: 0 16px 16px 0;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-color);
}

.about-content blockquote cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

/* ===== DIFFERENTIATORS ===== */
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  position: relative;
  z-index: 1;
}

.diff-card {
  background: linear-gradient(145deg, #ffffff, #f8faf9);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--orb-green-1);
  border-radius: 50%;
  filter: blur(30px);
  bottom: -20px;
  right: -20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 184, 76, 0.1);
}

.diff-card:hover::before { opacity: 1; }

.diff-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: var(--primary-dark);
}

.diff-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ===== COMMUNITY IMAGE ===== */
.community-image {
  margin-top: 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.community-image img {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.video-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  font-style: italic;
  color: var(--text-muted);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: linear-gradient(145deg, #ffffff, #f8faf9);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(11, 184, 76, 0.1);
}

.google-review-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8f9fa;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #5f6368;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.google-review-badge .google-logo {
  flex-shrink: 0;
}

.stars {
  color: #fbbc05;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.testimonial-card h4 {
  font-family: 'Outfit', sans-serif;
  margin: 0.5rem 0 0.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.7;
}

/* ===== FORM ===== */
.intro-form {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.intro-form input,
.intro-form select,
.intro-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.intro-form input:focus,
.intro-form select:focus,
.intro-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(11, 184, 76, 0.1);
}

.intro-form button {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color), #0ed956);
  color: #ffffff;
  padding: 1.1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px var(--primary-glow);
}

.intro-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--primary-glow);
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== SPARK FORM EMBED ===== */
.spark-form-wrapper {
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(11, 184, 76, 0.15);
  overflow: hidden;
}

.spark-form-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 550px;
  border: none;
  border-radius: 12px;
}

/* ===== FAQ ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

details {
  margin-bottom: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 0;
  background: linear-gradient(145deg, #ffffff, #fafbfc);
  overflow: hidden;
  transition: all 0.3s ease;
}

details:hover {
  border-color: rgba(11, 184, 76, 0.3);
  box-shadow: 0 4px 15px rgba(11, 184, 76, 0.08);
}

details[open] {
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(11, 184, 76, 0.12);
}

details summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Outfit', sans-serif;
}

details summary::-webkit-details-marker { display: none; }

details summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

details[open] summary::after { transform: rotate(45deg); }

details p {
  margin: 0;
  padding: 0 1.5rem 1.25rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: #ffffff;
  text-align: center;
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  top: -150px;
  left: -100px;
  animation: orbFloat 25s ease-in-out infinite;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  bottom: -100px;
  right: -50px;
  animation: orbFloat 30s ease-in-out infinite reverse;
}

.cta-banner h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.2rem;
  margin: 0 0 2rem 0;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.cta-banner a {
  display: inline-block;
  background-color: #ffffff;
  color: var(--primary-dark);
  padding: 1.1rem 2.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-banner a:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: var(--primary-dark);
}

/* ===== MID-PAGE CTA ===== */
.mid-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, var(--primary-light), #f0fff4);
  border-radius: 16px;
  border-left: 4px solid var(--primary-color);
  position: relative;
  z-index: 1;
}

.mid-cta p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.mid-cta a {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #0ed956);
  color: #ffffff;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.mid-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
  color: #ffffff;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  color: #cccccc;
  padding: 4rem 1rem 1.5rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--orb-green-3);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -100px;
  opacity: 0.5;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-column h4 {
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 1.25rem 0;
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer-column a {
  color: #cccccc;
  transition: all 0.3s ease;
}

.footer-column a:hover { color: var(--primary-color); }

.social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #333, #444);
  border-radius: 50%;
  color: #ffffff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: linear-gradient(135deg, var(--primary-color), #0ed956);
  color: #ffffff;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 2.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: #888888;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color), #0ed956);
  color: #ffffff;
  padding: 0.85rem 1rem;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta p {
  margin: 0;
  font-weight: 600;
}

.sticky-cta a {
  background-color: #ffffff;
  color: var(--primary-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    max-height: none;
  }
  .hero-media { height: 350px; }
  .hero-text { padding: 2.5rem 1.5rem; }
  .hero-text h1 { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .program-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-section { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { max-width: 300px; margin: 0 auto; }
  .location-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .location-grid-extended { grid-template-columns: 1fr; gap: 1.5rem; }
  .location-grid-extended .location-map { height: 280px; }
  .location-section { background-attachment: scroll; }
}

@media (max-width: 768px) {
  .navbar nav ul { display: none; }
  .navbar .menu-toggle { display: block; cursor: pointer; font-size: 1.5rem; }
  .mobile-menu {
    display: none;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 16px 16px;
  }
  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .mobile-menu a { display: block; padding: 0.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .mid-cta { flex-direction: column; text-align: center; gap: 1rem; }
  .sticky-cta { display: flex; }
  footer { padding-bottom: 5rem; }
  .section { padding: 3.5rem 1rem; }
  .cta-banner { padding: 3.5rem 1rem; }
  .cta-banner h3 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.75rem; }
  .hero-text h1 .rotating-word { min-width: 170px; }
  .hero-text p { font-size: 1rem; }
  .section-title h2 { font-size: 1.7rem; }
  .btn-primary { width: 100%; text-align: center; }
}
