/* ============================================
   BLUE SKY DAYCARE - STYLESHEET
   
   COLOR PALETTE (edit these CSS variables to change colors site-wide):
   - Primary: Soft sky blue (#5BA4D9)
   - Secondary: Warm coral (#F4A261)
   - Accent: Soft green (#7CB587)
   - Background: Warm cream (#FDF8F3)
   - Text: Warm charcoal (#3D3D3D)
   ============================================ */

:root {
  /* Main Colors - Edit these to change the color scheme */
  --color-primary: #5ba4d9;
  --color-primary-dark: #4a8bc4;
  --color-primary-light: #e8f4fc;

  --color-secondary: #f4a261;
  --color-secondary-dark: #e8924d;
  --color-secondary-light: #fef3e8;

  --color-accent: #7cb587;
  --color-accent-light: #e8f5ea;

  /* Background & Text */
  --color-bg: #fdf8f3;
  --color-bg-white: #ffffff;
  --color-text: #3d3d3d;
  --color-text-light: #6b6b6b;
  --color-text-lighter: #9b9b9b;

  /* Shadows & Borders */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50px;

  /* Typography */
  --font-display: "Quicksand", sans-serif;
  --font-body: "Nunito", sans-serif;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
}

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

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-secondary);
  color: white;
  box-shadow: 0 4px 15px rgba(244, 162, 97, 0.4);
}

.btn-primary:hover {
  background: var(--color-secondary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 162, 97, 0.5);
}

.btn-secondary {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: white;
}

.btn-full {
  width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

/* More opaque when scrolled for readability */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  z-index: 1001;
  transition: width 0.05s linear;
  border-radius: 0 2px 2px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

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

.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.3s ease;
}

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

.btn-nav {
  background: var(--color-secondary);
  color: white !important;
  padding: 10px 24px;
  border-radius: var(--radius-full);
}

.btn-nav:hover {
  background: var(--color-secondary-dark);
  color: white !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ============================================
   PARALLAX SKY BACKGROUND
   ============================================ */
.sky-parallax {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 130vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #d4ecfb 0%,
    #e8f4fc 35%,
    var(--color-bg) 100%
  );
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 24px 80px;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Clouds — now with soft blue tint + drop shadow for contrast */
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  filter: drop-shadow(0 4px 12px rgba(91, 164, 217, 0.15));
}

.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
}

.cloud-1 {
  width: 220px;
  height: 64px;
  top: 12%;
  left: 8%;
  animation: float-1 22s ease-in-out infinite;
}

.cloud-1::before {
  width: 90px;
  height: 90px;
  top: -48px;
  left: 28px;
}

.cloud-1::after {
  width: 65px;
  height: 65px;
  top: -34px;
  left: 95px;
}

.cloud-2 {
  width: 170px;
  height: 50px;
  top: 22%;
  right: 12%;
  animation: float-2 28s ease-in-out infinite;
}

.cloud-2::before {
  width: 68px;
  height: 68px;
  top: -36px;
  left: 22px;
}

.cloud-2::after {
  width: 50px;
  height: 50px;
  top: -26px;
  left: 72px;
}

.cloud-3 {
  width: 140px;
  height: 42px;
  top: 38%;
  left: 4%;
  animation: float-3 19s ease-in-out infinite;
}

.cloud-3::before {
  width: 56px;
  height: 56px;
  top: -28px;
  left: 16px;
}

.cloud-3::after {
  width: 40px;
  height: 40px;
  top: -20px;
  left: 58px;
}

.cloud-4 {
  width: 180px;
  height: 52px;
  top: 8%;
  right: 35%;
  animation: float-1 24s ease-in-out infinite;
  animation-delay: -8s;
}

.cloud-4::before {
  width: 72px;
  height: 72px;
  top: -38px;
  left: 25px;
}

.cloud-4::after {
  width: 55px;
  height: 55px;
  top: -28px;
  left: 80px;
}

.cloud-5 {
  width: 110px;
  height: 34px;
  top: 50%;
  right: 6%;
  animation: float-3 26s ease-in-out infinite;
  animation-delay: -12s;
  opacity: 0.7;
}

.cloud-5::before {
  width: 44px;
  height: 44px;
  top: -22px;
  left: 12px;
}

.cloud-5::after {
  width: 32px;
  height: 32px;
  top: -16px;
  left: 46px;
}

/* Different float paths for more natural movement */
@keyframes float-1 {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(20px) translateY(-6px);
  }
  50% {
    transform: translateX(35px) translateY(2px);
  }
  75% {
    transform: translateX(12px) translateY(5px);
  }
}

@keyframes float-2 {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  33% {
    transform: translateX(-25px) translateY(-4px);
  }
  66% {
    transform: translateX(-10px) translateY(6px);
  }
}

@keyframes float-3 {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(28px) translateY(-8px);
  }
}

.sun {
  position: absolute;
  top: 8%;
  right: 8%;
  width: 80px;
  height: 80px;
  background: #ffd23f;
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(255, 210, 63, 0.5),
    0 0 120px rgba(255, 210, 63, 0.25);
  animation: pulse 4s ease-in-out infinite;
}

/* Soft glow aura */
.sun::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  right: -25px;
  bottom: -25px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 210, 63, 0.15) 0%,
    transparent 70%
  );
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.hero-content {
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.highlight {
  color: var(--color-primary);
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
  max-width: 500px;
}

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

.hero-image {
  animation: fadeInUp 1s ease 0.2s backwards;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-text-lighter);
  font-size: 0.875rem;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--color-text-lighter);
  border-bottom: 2px solid var(--color-text-lighter);
  transform: rotate(45deg);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   PLACEHOLDER IMAGES
   (Remove these styles once real images are added)
   ============================================ */
.placeholder-image {
  background: linear-gradient(
    135deg,
    var(--color-primary-light) 0%,
    var(--color-secondary-light) 100%
  );
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-family: var(--font-display);
  font-weight: 600;
  border: 3px dashed var(--color-primary);
  min-height: 300px;
}

.placeholder-image small {
  font-weight: 400;
  font-size: 0.875rem;
  margin-top: 8px;
  opacity: 0.7;
}

.hero-placeholder {
  min-height: 450px;
}

.gallery-placeholder {
  min-height: 200px;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-tag {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.125rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: var(--section-padding) 0;
  background: var(--color-bg-white);
  position: relative;
  z-index: 1;
}

/* Gradient mask so the sky/clouds fade out naturally into this section */
.features::after {
  content: "";
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--color-bg-white) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Subtle polka dot texture for white sections */
.features::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(91, 164, 217, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}

.features-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--color-bg);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--color-primary);
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
  background-color: var(--color-bg);
}

/* Soft wavy texture for cream sections */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%235BA4D9' fill-opacity='0.06' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

.about-content .lead {
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 500;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   PROGRAMS SECTION
   ============================================ */
.programs {
  padding: var(--section-padding) 0;
  background: var(--color-bg-white);
  position: relative;
  z-index: 1;
}

.programs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(91, 164, 217, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}

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

.program-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.program-image {
  height: 250px;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-image .placeholder-image {
  height: 100%;
  min-height: 250px;
  border-radius: 0;
  border: none;
  border-bottom: 3px dashed var(--color-primary);
}

.program-content {
  padding: 32px;
}

.program-age {
  display: inline-block;
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.program-content h3 {
  margin-bottom: 16px;
  color: var(--color-primary);
}

.program-features {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

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

.program-features li::before {
  content: "✓";
  color: var(--color-accent);
  font-weight: 700;
}

/* ============================================
   CURRICULUM SECTION
   ============================================ */
.curriculum {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
  background-color: var(--color-bg);
}

.curriculum::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.357-.13.72-.264 1.088-.402l1.768-.661C33.64 15.347 39.647 14 50 14c10.271 0 15.362 1.222 24.629 4.928.955.383 1.869.74 2.75 1.072h6.225c-2.51-.73-5.139-1.691-8.233-2.928C65.888 13.278 60.562 12 50 12c-10.626 0-16.855 1.397-26.66 5.063l-1.767.662c-2.475.923-4.66 1.674-6.724 2.275h6.335zm0-20C13.258 2.892 8.077 4 0 4V2c5.744 0 9.951-.574 14.85-2h6.334zM77.38 0C85.239 2.966 90.502 4 100 4V2c-6.842 0-11.386-.542-16.396-2h-6.225zM0 14c8.44 0 13.718-1.21 22.272-4.402l1.768-.661C33.64 5.347 39.647 4 50 4c10.271 0 15.362 1.222 24.629 4.928C84.112 12.722 89.438 14 100 14v-2c-10.271 0-15.362-1.222-24.629-4.928C65.888 3.278 60.562 2 50 2 39.374 2 33.145 3.397 23.34 7.063l-1.767.662C13.223 10.84 8.163 12 0 12v2z' fill='%235BA4D9' fill-opacity='0.06' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.curriculum-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.curriculum-card {
  flex: 0 1 calc(33.333% - 20px);
  max-width: 350px;

  background: var(--color-bg-white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.curriculum-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.curriculum-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.curriculum-card h3 {
  margin-bottom: 12px;
  color: var(--color-primary);
}

.curriculum-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  padding: var(--section-padding) 0;
  background: var(--color-bg-white);
  position: relative;
  z-index: 1;
}

.gallery::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(91, 164, 217, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  pointer-events: none;
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .placeholder-image {
  height: 100%;
  min-height: auto;
  border-radius: 0;
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  cursor: default;
}

.lightbox-overlay.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 1px;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* Arrow icons via borders */
.lightbox-nav::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid white;
  border-right: 2px solid white;
}

.lightbox-prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.lightbox-next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: var(--section-padding) 0;
  position: relative;
  z-index: 1;
  background-color: var(--color-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 30px 24px;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-padding) 0;
  background: linear-gradient(
    135deg,
    var(--color-primary-light) 0%,
    var(--color-bg) 100%
  );
  position: relative;
  z-index: 1;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--color-text-light);
  margin-bottom: 40px;
}

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

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

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--color-text);
  margin-bottom: 4px;
}

.contact-item p {
  margin-bottom: 0;
  color: var(--color-text-light);
}

.contact-item a {
  color: var(--color-primary);
}

.contact-form-wrapper {
  background: var(--color-bg-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  margin-bottom: 24px;
  color: var(--color-primary);
}

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

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-text);
  color: white;
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand .logo-icon {
  font-size: 2.5rem;
}

.footer-brand .logo-text {
  color: white;
  font-size: 1.75rem;
}

.footer-brand p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 900px) {
  /* Hide extra clouds on mobile for cleaner look */
  .cloud-4,
  .cloud-5 {
    display: none;
  }

  .cloud-1,
  .cloud-2,
  .cloud-3 {
    transform: scale(0.7);
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    min-height: auto;
    padding-top: 140px;
  }

  .hero-content {
    order: 1;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .scroll-indicator {
    display: none;
  }

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

  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.3s ease;
  }

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

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

  .curriculum-card {
    flex: 0 1 100%;
    max-width: 100%;
  }

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

  .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .program-features {
    grid-template-columns: 1fr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-links ul {
    align-items: center;
  }
}

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

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

  .contact-form-wrapper {
    padding: 24px;
  }

  .faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }
}

/* ============================================
   REAL IMAGE STYLES
   (Add these when replacing placeholders)
   ============================================ */

/* Hero Image */
.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* About Section Image */
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Program Cards */
.program-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Gallery Images */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Google Map */
.contact-map {
  margin-top: auto;
  padding-top: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.contact-map iframe {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex-grow: 1;
  min-height: 180px;
}

.form-success {
  background: linear-gradient(135deg, #5ba4d9, #4a8bc4);
  color: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
  animation: slideIn 0.5s ease-out;
}

.form-success h4 {
  margin: 0 0 10px 0;
  font-size: 24px;
}

.form-success p {
  margin: 0;
  font-size: 16px;
  opacity: 0.95;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
