:root {
  /* Premium Bright School Color Palette (IDUL FITRI EDITION) */
  --primary-bg: #FFFFFF; /* Pure White */
  --secondary-bg: #F8FAFC; /* Sangat Terang Abu-biru */
  --light-bg: #F1F5F9; /* Abu-abu Extra Terang */
  --white: #FFFFFF;
  
  --accent: #F59E0B; /* Cerah Emas/Oranye */
  --accent-light: #FCD34D;
  --accent-hover: #D97706;
  
  --blue-primary: #065F46; /* Hijau Zamrud/Emerald Tua (Lebaran) */
  --blue-light: #10B981; /* Hijau Terang (Lebaran) */
  
  --text-main: #1E293B; /* Teks Utama Gelap (Navy) */
  --text-muted: #64748B; /* Teks Sekunder Abu */
  
  --dark-text: #0F172A; /* Teks Utama Lebih Hitam */
  --dark-text-muted: #475569;
  
  --glass-bg: rgba(255, 255, 255, 0.85); /* Frost Glass Putih */
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05); /* Bayangan Lembut */
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--secondary-bg); /* Berubah dari dark ke terang */
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.primary-bg { background-color: var(--blue-primary); color: var(--white); } /* BG Biru untuk block section tertentu */
.light-bg { background-color: var(--primary-bg); color: var(--text-main); } /* BG Putih murni */
.dark-text { color: var(--dark-text); }
.dark-text-muted { color: var(--dark-text-muted); }
.primary-text { color: var(--blue-primary); }
.primary-text-soft { color: var(--blue-light); }

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.text-sm { font-size: 0.875rem; }
.text-opacity-80 { opacity: 0.8; }
.text-gradient-primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

.light-overlay {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Bayangan lebih ringan untuk tema terang */
}

/* Nav */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95); /* Header Putih saat discroll */
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-bottom: 1px solid #E2E8F0;
  padding: 0.7rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--blue-primary); /* Teks Logo berubah biru dari putih */
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--blue-primary);
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted); /* Teks nav abu-abu */
  position: relative;
}

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

.nav-links a:hover, .nav-links a.active {
  color: var(--blue-primary); /* Active link jadi biru tua */
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--blue-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 1rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradient overlay lebih biru/terang dan fresh */
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.75) 100%),
              url('../images/IMG_20250502_074037.jpg') center/cover;
  z-index: -2;
}

.hero-content {
  max-width: 900px;
  z-index: 1;
  color: var(--white);
}

.badge {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.hero p {
  font-size: 1.2rem;
  color: #E2E8F0;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.floating-ornament {
  position: absolute;
  color: var(--accent);
  font-size: 4rem;
  opacity: 0.8;
  z-index: 5;
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4));
}

.ornament-1 {
  top: 15%;
  left: 10%;
  animation: float-up-down 6s ease-in-out infinite;
}

.ornament-2 {
  bottom: 20%;
  right: 15%;
  font-size: 5rem;
  animation: float-up-down 8s ease-in-out infinite reverse;
}

@keyframes float-up-down {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Holiday Banner */
.holiday-banner {
  padding: 1.5rem 1rem; /* Padding diperkecil drastis */
  background: linear-gradient(135deg, var(--blue-primary) 0%, #047857 100%);
  position: relative;
  z-index: 10;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

.holiday-content {
  align-items: center;
  gap: 2rem;
}

.holiday-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem; /* Font size sedikit dikecilkan */
  margin: 0.5rem 0; /* Margin atas bawah lebih rapat */
  color: var(--accent-light);
}

.holiday-text p {
  margin: 0;
  font-size: 0.95rem; /* Ukuran paragraf dirapatkan */
}

.pulse-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.75rem;
  animation: pulse-glow 2s infinite;
  margin-bottom: 0.2rem;
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.countdown-container {
  display: flex;
  gap: 0.8rem; /* Gap diperkecil */
  justify-content: flex-end;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0.8rem 0.6rem; /* Padding atas bawah box jam sangat dikurangi */
  text-align: center;
  min-width: 75px; /* Lebar lebih slim */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.countdown-item span {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem; /* Font size angkanya diperkecil */
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.countdown-item p {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
  color: var(--accent-light);
}

.footer-logo span {
  color: var(--white);
}

/* Hover Button Down */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 10;
  opacity: 0.7;
}

.scroll-down:hover {
  opacity: 1;
  color: var(--accent);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-15px) translateX(-50%); }
  60% { transform: translateY(-7px) translateX(-50%); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-family: var(--font-heading);
}

.btn-primary {
  background: var(--accent); /* Kuning/Orange/Gold langsung solid */
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  background: var(--accent-hover);
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-primary);
  border: 1px solid var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue-primary);
  transform: translateY(-2px);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Sections */
.section {
  padding: 6rem 1rem;
}

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

.grids {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-content h2, .section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.text-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Quote Box */
.quote-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  position: relative;
}

.quote-box i {
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.8;
  background: var(--white); /* menyesuaikan primary background .light-bg HTML*/
  padding: 0 10px;
}

.quote-box p {
  margin: 0;
  font-style: italic;
  font-weight: 500;
  color: var(--dark-text);
}

.image-card {
  position: relative;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  justify-content: center;
}

.image-card img {
  width: 90%;
  max-width: 400px;
  aspect-ratio: 3/4; /* Proporsi portrait */
  object-fit: cover;
  border-radius: 50% / 40% 40% 50% 50%; /* Bentuk elips/telur yang estetik */
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: block;
  border: 10px solid var(--white); /* Frame putih tebal */
}

.card-caption {
  position: absolute;
  bottom: 5px;
  right: 10%;
  padding: 1.2rem 1.8rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  background: var(--white);
  border: 1px solid var(--light-bg);
  text-align: center;
}

.card-caption h3 {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  color: var(--blue-primary);
  margin-bottom: 0.2rem;
}

.card-caption p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

/* Visi Misi */
.bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%23FFFFFF" fill-opacity="0.05" d="M37.3,-50.2C49.9,-41.2,62.8,-32.8,70.6,-20.5C78.4,-8.2,81.1,8,75.9,22.2C70.6,36.4,57.5,48.5,42.4,56.8C27.3,65.1,10.2,69.5,-5.5,68.4C-21.2,67.3,-35.6,60.6,-47.5,50.4C-59.5,40.1,-69.1,26.2,-72.1,11C-75.1,-4.2,-71.5,-20.5,-63,-33.5C-54.6,-46.5,-41.4,-56.3,-27.9,-59.8C-14.4,-63.3,-0.6,-60.5,12.1,-56C24.8,-51.5,37.3,-50.2,37.3,-50.2Z" transform="translate(100 100) scale(1.1)"/></svg>') no-repeat center center / contain;
  z-index: 0;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.vm-card {
  padding: 3rem 2.5rem;
  border-radius: 20px;
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.vm-icon {
  width: 70px;
  height: 70px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.vm-card h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--blue-primary);
}

.vm-highlight {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  font-style: italic;
  margin-bottom: 1rem;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.mission-list i {
  color: var(--accent);
  margin-top: 5px;
}

/* Stats Section */
.stats {
  padding: 4rem 1rem;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--blue-primary);
  margin-bottom: 1rem;
}

.stat-item h3 {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Features/Program */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid #F1F5F9;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--blue-light);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.05);
  color: var(--blue-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--blue-primary);
  color: var(--white);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--dark-text);
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--dark-text-muted);
  font-size: 0.95rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(6, 95, 70, 0.8); /* Zamrud overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  padding: 1rem;
  text-align: center;
}

.gallery-overlay i {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-caption {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  transform: translateY(20px);
  transition: var(--transition);
  transition-delay: 0.1s;
}

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

.gallery-item:hover .gallery-overlay i,
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  display: none; 
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  object-fit: contain;
  border: 4px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
  animation: zoom-in 0.3s;
}

.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: var(--accent-light);
  padding: 15px 0;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  animation: zoom-in 0.3s;
}

.close-lightbox {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close-lightbox:hover,
.close-lightbox:focus {
  color: var(--accent);
  text-decoration: none;
}

@keyframes zoom-in {
  from {transform:scale(0.8); opacity:0} 
  to {transform:scale(1); opacity:1}
}

/* Footer */
.footer {
  padding: 5rem 1rem 0;
  background-color: var(--blue-primary) !important; /* Biru SD Gelap */
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-logo {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--blue-primary);
  transform: translateY(-3px);
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--accent);
  bottom: -5px;
  left: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #CBD5E1;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: #CBD5E1;
}

.contact-info i {
  color: var(--accent);
  margin-top: 5px;
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  font-size: 0.9rem;
  color: #94A3B8;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

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

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

/* Responsiveness */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .grids { grid-template-columns: 1fr; gap: 4rem; }
  .image-card { order: -1; max-width: 600px; margin: 0 auto; }
  .card-caption { bottom: -20px; right: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .hidden-mobile { display: none; }
  .vm-card { padding: 2rem 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .countdown-container { justify-content: flex-start; flex-wrap: wrap; }
  .countdown-item { padding: 1rem 0.5rem; min-width: 70px; }
  .countdown-item span { font-size: 1.8rem; }
}
