/*
Theme Name: Kidz Paradise Theme
Theme URI: https://kidzparadise.com/
Author: Antigravity AI
Author URI: https://gemini.google.com/
Description: A premium, highly aesthetic WordPress theme custom built for daycare and early childhood education centers. Features responsive layouts, gold & navy blue brand tones, and a pre-built custom front-page section alignment.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kidz-paradise-theme
Tags: custom-background, custom-colors, custom-menu, featured-images, flexible-header, full-width-template, theme-options, translation-ready

This theme is built with pure vanilla CSS and standard PHP functions following modern WordPress coding standards.
*/

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

:root {
  --primary-navy: #0b2545;
  --primary-navy-light: #133a68;
  --primary-navy-dark: #06172c;
  --accent-gold: #f4c430;
  --accent-gold-light: #fbe599;
  --accent-gold-dark: #dca815;
  --secondary-aqua: #4ac2e0;
  --secondary-aqua-light: #d1f3fb;
  --warm-bg: #fdfbf7;
  --warm-cream: #faf5eb;
  --white: #ffffff;
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --success: #22c55e;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 32px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(11, 37, 69, 0.05), 0 2px 4px -1px rgba(11, 37, 69, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(11, 37, 69, 0.08), 0 4px 6px -2px rgba(11, 37, 69, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(11, 37, 69, 0.12), 0 10px 10px -5px rgba(11, 37, 69, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--warm-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary-navy);
  font-weight: 700;
}

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

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

ul {
  list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--warm-cream);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-navy-light);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Header & Glassmorphic Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 20px 0;
}

header.scrolled {
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(11, 37, 69, 0.05);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 60px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo-img {
  height: 48px;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: 0.5px;
}

.logo-text span {
  color: var(--accent-gold);
}

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

/* Fallback menu styles */
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu li a,
.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-navy);
  position: relative;
  padding: 6px 0;
}

.nav-menu li a::after,
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-gold);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after,
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-menu li a:hover,
.nav-link:hover {
  color: var(--accent-gold-dark);
}

.cta-button {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 14px rgba(244, 196, 48, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.cta-button:hover {
  background-color: var(--primary-navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(11, 37, 69, 0.3);
  transform: translateY(-2px);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-navy);
  margin: 5px 0;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  padding: 160px 0 80px 0;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, var(--secondary-aqua-light) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, var(--accent-gold-light) 0%, transparent 35%);
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary-aqua-light);
  color: var(--primary-navy-light);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(74, 194, 224, 0.3);
  animation: float 3s ease-in-out infinite;
}

.hero-title {
  font-size: 54px;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--accent-gold-dark);
  position: relative;
  z-index: 1;
}

.hero-statement {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 32px;
  font-weight: 500;
  line-height: 1.7;
}

.hero-substatement {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  border-left: 4px solid var(--secondary-aqua);
  padding-left: 20px;
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: var(--border-radius-lg);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: rgba(11, 37, 69, 0.05);
  transform: translateY(-2px);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-blob {
  position: absolute;
  width: 120%;
  height: 120%;
  background: var(--accent-gold-light);
  filter: blur(40px);
  opacity: 0.6;
  border-radius: 50%;
  z-index: -1;
  animation: blob-bounce 8s ease-in-out infinite alternate;
}

.hero-logo-frame {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--primary-navy);
  transform: rotate(-3deg);
  transition: var(--transition-smooth);
  animation: float-logo 5s ease-in-out infinite alternate;
}

.hero-logo-frame:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 0 30px 50px rgba(11, 37, 69, 0.18);
}

.hero-logo-frame .logo-img-large {
  max-width: 280px;
  height: auto;
}

/* Sections Base Styling */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background-color: var(--warm-cream);
}

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

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

.section-badge {
  color: var(--accent-gold-dark);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
}

/* Wave Dividers */
.wave-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 10;
}

.wave-divider-top {
  top: 0;
  transform: translateY(-98%);
}

.wave-divider-bottom {
  bottom: 0;
  transform: translateY(98%);
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider .wave-fill-cream {
  fill: var(--warm-cream);
}

.wave-divider .wave-fill-white {
  fill: var(--white);
}

.wave-divider .wave-fill-navy {
  fill: var(--primary-navy-dark);
}

/* Who We Are Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.about-graphic {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 4/3;
}

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

.philosophy-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 6px solid var(--accent-gold);
  transition: var(--transition-smooth);
}

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

.philosophy-title {
  font-size: 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.philosophy-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 24px;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mv-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(11, 37, 69, 0.05);
}

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

.mv-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.mv-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: var(--secondary-aqua-light);
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.mv-card:nth-child(2) .mv-icon {
  background-color: var(--accent-gold-light);
}

.mv-title {
  font-size: 22px;
}

.mv-text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* What We Do Section */
.programs-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--primary-navy-light);
  background: rgba(255, 255, 255, 0.6);
  padding: 32px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px dashed var(--accent-gold);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.program-card {
  background: var(--white);
  padding: 24px 16px;
  border-radius: var(--border-radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border-bottom: 4px solid var(--secondary-aqua);
}

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

.program-card:nth-child(even) {
  border-bottom-color: var(--accent-gold);
}

.program-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: inline-block;
  animation: float-mini 4s ease-in-out infinite alternate;
}

.program-title {
  font-size: 18px;
  margin-bottom: 12px;
}

.program-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Features Grid (Meals & Birthday) */
.features-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
}

.feature-panel {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 32px;
  align-items: center;
  transition: var(--transition-smooth);
}

.feature-panel:hover {
  box-shadow: var(--shadow-lg);
}

.feature-illustration {
  font-size: 64px;
  background: var(--secondary-aqua-light);
  width: 120px;
  height: 120px;
  min-width: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-detail h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-detail p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.meal-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.meal-badge {
  background: var(--warm-cream);
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(244, 196, 48, 0.3);
}

.birthday-panel {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-navy-light) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.birthday-panel::before {
  content: '🎂';
  position: absolute;
  font-size: 120px;
  opacity: 0.08;
  right: -20px;
  bottom: -20px;
}

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

.birthday-panel h3 {
  color: var(--accent-gold);
  font-size: 24px;
  margin-bottom: 16px;
}

.birthday-panel p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1/1;
  cursor: pointer;
  border: 4px solid var(--white);
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 37, 69, 0.85);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.gallery-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-gold);
  border-radius: 50%;
  color: var(--primary-navy);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  margin-bottom: 10px;
}

.gallery-title {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

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

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

.gallery-item:hover .gallery-icon,
.gallery-item:hover .gallery-title {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 23, 44, 0.95);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 85%;
  max-height: 80%;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.lightbox-modal.active .lightbox-content {
  transform: scale(1);
}

.lightbox-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--border-radius-md);
  border: 4px solid var(--white);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  font-weight: 300;
}

.lightbox-close:hover {
  color: var(--accent-gold);
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  margin-top: 15px;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 500;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-panel {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 6px solid var(--primary-navy);
}

.contact-info-title {
  font-size: 26px;
  margin-bottom: 24px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

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

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background-color: var(--warm-cream);
  color: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail-item:nth-child(2) .contact-detail-icon {
  color: var(--accent-gold-dark);
}

.contact-detail-item:nth-child(3) .contact-detail-icon {
  color: var(--secondary-aqua);
}

.contact-detail-content h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-detail-content p {
  color: var(--text-muted);
  font-size: 15px;
  white-space: pre-line;
}

/* Vector Styled Map Mockup */
.map-mockup {
  height: 200px;
  background-color: #e2e8f0;
  border-radius: var(--border-radius-md);
  position: relative;
  overflow: hidden;
  border: 2px dashed rgba(11, 37, 69, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-accent-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, transparent 60px, rgba(244, 196, 48, 0.1) 62px, transparent 65px),
              linear-gradient(45deg, transparent 40%, rgba(11, 37, 69, 0.03) 41%, transparent 42%),
              linear-gradient(-45deg, transparent 70%, rgba(11, 37, 69, 0.03) 71%, transparent 72%);
}

.map-pin {
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  border: 3px solid var(--primary-navy);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  animation: float-mini 3s ease-in-out infinite alternate;
}

.map-pin::after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-navy);
  border-radius: 50%;
}

.map-label {
  position: absolute;
  bottom: 20px;
  background: var(--primary-navy);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

/* Contact Form */
.contact-form-panel {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

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

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  background: var(--warm-bg);
  border: 2px solid transparent;
  border-radius: var(--border-radius-sm);
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 4px rgba(11, 37, 69, 0.05);
}

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

.form-submit-btn {
  width: 100%;
  background-color: var(--primary-navy);
  color: var(--white);
  font-weight: 700;
  padding: 14px;
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.form-submit-btn:hover {
  background-color: var(--accent-gold);
  color: var(--primary-navy);
  box-shadow: 0 6px 20px rgba(244, 196, 48, 0.3);
  transform: translateY(-2px);
}

.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  display: block;
  background-color: rgba(34, 197, 94, 0.1);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Footer Section */
footer {
  background-color: var(--primary-navy-dark);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-about .logo-text {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-about .logo-text span {
  color: var(--accent-gold);
}

.footer-desc {
  opacity: 0.8;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--white);
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background: var(--accent-gold);
  color: var(--primary-navy);
  transform: translateY(-3px);
}

.footer-links-title {
  font-size: 20px;
  color: var(--accent-gold);
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
}

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

.footer-menu-link {
  opacity: 0.8;
  font-size: 15px;
}

.footer-menu-link:hover {
  opacity: 1;
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0.8;
  font-size: 15px;
}

.footer-hours-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 16px;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes float-mini {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-5px); }
}

@keyframes float-logo {
  0% { transform: rotate(-3deg) translateY(0px); }
  100% { transform: rotate(-1deg) translateY(-12px); }
}

@keyframes blob-bounce {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(20px, -20px); }
}

/* Reveal Transitions */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 44px;
  }
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--warm-bg);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    box-shadow: -10px 0 30px rgba(11, 37, 69, 0.1);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-substatement {
    border-left: none;
    border-top: 3px solid var(--secondary-aqua);
    padding-left: 0;
    padding-top: 15px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .about-graphic {
    aspect-ratio: 16/9;
  }
  
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }
  
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-panel {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 30px;
  }
}
