/* ========================================
   Full Circle Pre Kindergarten — Styles
   Forest Green + Off-White + Gold Accent
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
  --green-900: #0D1F12;
  --green-800: #1B4332;
  --green-700: #2D6A4F;
  --green-600: #40916C;
  --green-500: #52B788;
  --green-100: #D8F3DC;
  --green-50: #EFF5F1;

  --gold-500: #D4A843;
  --gold-400: #E8C566;
  --gold-100: #FFF3D6;

  --cream-500: #FFF8E7;
  --cream-400: #FFFDF5;
  --cream-300: #FDF6E3;

  --white: #FFFFFF;
  --off-white: #FAFAF7;
  --gray-100: #F5F5F0;
  --gray-200: #E8E8E0;
  --gray-400: #999990;
  --gray-600: #555550;
  --gray-800: #2A2A25;

  --font-heading: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(27, 67, 50, 0.08);
  --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.12);
  --shadow-lg: 0 8px 40px rgba(27, 67, 50, 0.16);
  --shadow-xl: 0 16px 60px rgba(27, 67, 50, 0.20);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--cream-400);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-800);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}

.btn-primary:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}

.btn-secondary:hover {
  background: var(--green-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}

.btn-outline-light:hover {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

/* --- Section Tags --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 560px;
}

.section-header.centered {
  text-align: center;
}

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

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-800);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green-600);
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green-800);
  position: relative;
}

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

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

.nav-cta {
  background: var(--green-800) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-lg) !important;
  font-size: 0.85rem !important;
}

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

.nav-cta:hover {
  background: var(--green-700) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--green-800);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1B4332 0%, #2D6A4F 40%, #40916C 70%, #52B788 100%);
  padding-top: 72px;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(212, 168, 67, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(82, 183, 136, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 90% 80%, rgba(27, 67, 50, 0.3) 0%, transparent 50%);
}

.hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo-shape {
  position: absolute;
  opacity: 0.12;
}

.shape-circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gold-500);
  top: -80px;
  right: 10%;
}

.shape-circle-2 {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--cream-500);
  bottom: 15%;
  left: 5%;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid var(--gold-400);
  top: 20%;
  left: 8%;
  opacity: 0.08;
}

.shape-square {
  width: 100px;
  height: 100px;
  background: var(--cream-500);
  border-radius: var(--radius-md);
  bottom: 25%;
  right: 5%;
  transform: rotate(30deg);
  opacity: 0.1;
}

.shape-dots {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  background-image: radial-gradient(circle, var(--gold-400) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
}

.shape-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 8px solid var(--cream-500);
  bottom: -50px;
  left: 30%;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--cream-500);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge svg {
  color: var(--gold-400);
}

.hero-headline {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}

.hero-headline br {
  display: none;
}

.hero-subheadline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-buttons .btn-primary {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--green-900);
}

.hero-buttons .btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
}

.hero-buttons .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.hero-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold-400);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-image-accent {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold-500);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  font-family: var(--font-heading);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* --- About --- */
.about {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.about-deco {
  position: absolute;
  top: 60px;
  right: -60px;
  pointer-events: none;
}

.deco-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--green-100);
  opacity: 0.5;
}

.deco-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 100px;
  left: -40px;
  background-image: radial-gradient(circle, var(--gold-500) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.4;
}

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

.about-images {
  position: relative;
  height: 550px;
}

.about-img-main {
  width: 320px;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

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

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 260px;
  height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream-400);
  z-index: 3;
}

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

.about-accent-shape {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 100px;
  height: 100px;
  background: var(--gold-500);
  border-radius: var(--radius-md);
  transform: rotate(25deg);
  opacity: 0.4;
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-green {
  background: var(--green-100);
  color: var(--green-800);
}

.feature-icon-yellow {
  background: var(--gold-100);
  color: var(--green-800);
}

.feature-icon-cream {
  background: var(--cream-300);
  color: var(--green-800);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.about-feature strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-800);
  margin-bottom: 2px;
}

.about-feature span {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* --- Programs --- */
.programs {
  position: relative;
  padding: 120px 0;
  background: var(--green-800);
  overflow: hidden;
}

.programs-bg-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(82, 183, 136, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(212, 168, 67, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.programs .section-header {
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}

.programs .section-tag {
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold-400);
}

.programs .section-title {
  color: var(--white);
}

.programs .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.program-card.featured {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.program-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.program-card-accent {
  height: 6px;
  background: linear-gradient(90deg, var(--green-600), var(--green-500));
}

.program-card.featured .program-card-accent {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
}

.program-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold-500);
  color: var(--green-900);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 3;
}

.program-card-body {
  padding: 36px 28px;
}

.program-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}

.program-age {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--green-600);
  background: var(--green-100);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.program-name {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--green-800);
}

.program-desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.program-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.program-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Why Us --- */
.why-us {
  padding: 120px 0;
  background: var(--cream-400);
  position: relative;
  overflow: hidden;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 36px;
}

.why-us-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-check {
  width: 28px;
  height: 28px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
  margin-top: 2px;
}

.why-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--green-800);
  margin-bottom: 4px;
}

.why-item span {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.why-us-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.visual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

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

.visual-card-green {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  height: 220px;
}

.visual-card-yellow {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  height: 100%;
}

.visual-card-yellow img {
  height: 100%;
}

.visual-card-cream {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  height: 200px;
  background: var(--cream-300);
  padding: 24px;
  display: flex;
  align-items: center;
}

.visual-quote {
  position: relative;
}

.visual-quote p {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--green-800);
  line-height: 1.6;
  margin: 8px 0;
}

.visual-quote span {
  font-size: 0.8rem;
  color: var(--green-700);
  font-weight: 600;
}

/* --- Gallery --- */
.gallery {
  padding: 120px 0;
  background: var(--green-50);
  position: relative;
  overflow: hidden;
}

.gallery-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.deco-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.deco-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--gold-500);
  top: -80px;
  left: -80px;
}

.deco-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--green-500);
  bottom: -60px;
  right: -60px;
}

.gallery .section-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 67, 50, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.gallery-item-wide {
  grid-column: 1 / 9;
  height: 320px;
}

.gallery-item:nth-child(2) {
  grid-column: 9 / 13;
  height: 150px;
}

.gallery-item:nth-child(3) {
  grid-column: 1 / 7;
  height: 280px;
}

.gallery-item:nth-child(4) {
  grid-column: 7 / 13;
  height: 280px;
}

.gallery-item:nth-child(5) {
  grid-column: 1 / 7;
  height: 280px;
}

/* --- Contact --- */
.contact {
  padding: 120px 0;
  background: var(--cream-400);
  position: relative;
  overflow: hidden;
}

.contact-bg-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 90% 20%, rgba(27, 67, 50, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-800);
  margin-bottom: 4px;
}

.contact-detail span,
.contact-detail a {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-detail a:hover {
  color: var(--green-700);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper {
  position: relative;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-600), var(--gold-500), var(--green-500));
}

.contact-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--green-800);
}

.form-intro {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-800);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.15);
}

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

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

.form-success.show {
  display: block;
}

.success-icon {
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--green-800);
}

.form-success p {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* --- CTA --- */
.cta {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-600) 100%);
  overflow: hidden;
}

.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.cta-shape-1 {
  width: 400px;
  height: 400px;
  background: var(--gold-500);
  top: -150px;
  right: -100px;
}

.cta-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--cream-500);
  bottom: -60px;
  left: 10%;
}

.cta-shape-3 {
  width: 120px;
  height: 120px;
  background: var(--gold-400);
  top: 30%;
  left: 5%;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--green-900);
}

.cta-buttons .btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.4);
}

.cta-buttons .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.cta-buttons .btn-outline-light:hover {
  background: var(--white);
  color: var(--green-800);
  border-color: var(--white);
}

/* --- Footer --- */
.footer {
  position: relative;
  background: var(--green-900);
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.04;
  background: var(--gold-500);
}

.footer-shape:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.footer-shape:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: -60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.logo-text-light {
  color: var(--white) !important;
}

.logo-sub {
  color: var(--gold-400) !important;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 6px;
}

.footer-contact p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.footer-contact a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
}

.footer-contact a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--gold-400);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subheadline {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-images {
    height: 400px;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .program-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 250, 247, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-headline br {
    display: block;
  }

  .hero-image {
    display: none;
  }

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

  .program-card.featured {
    transform: none;
  }

  .program-card.featured:hover {
    transform: translateY(-8px);
  }

  .program-card:last-child {
    max-width: none;
  }

  .gallery-item-wide {
    grid-column: 1 / -1;
    height: 240px;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: 1 / -1;
    height: 220px;
  }

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

  .contact-form-card {
    padding: 28px;
  }

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

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

  .visual-card-yellow {
    grid-row: 1 / 3;
  }

  .visual-card-green,
  .visual-card-cream {
    grid-row: auto;
  }

  .visual-card-green {
    height: 200px;
  }

  .visual-card-cream {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .about-images {
    height: 300px;
  }

  .about-img-main {
    width: 240px;
    height: 300px;
  }

  .about-img-float {
    width: 180px;
    height: 150px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .scroll-indicator {
    animation: none;
  }
}
