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

:root {
  --green-900: #0d3b1e;
  --green-800: #14532d;
  --green-700: #166534;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --gold: #d4a853;
  --gold-light: #f0d68a;
  --cream: #faf8f3;
  --dark: #1a1a2e;
  --text: #2d3a3a;
  --text-light: #5a6a6a;
  --white: #ffffff;
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

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

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease;
}
#preloader.hide { opacity: 0; pointer-events: none; }
#preloader .spinner {
  width: 50px; height: 50px;
  border: 4px solid var(--green-100);
  border-top-color: var(--green-600);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
  background: transparent;
}
nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  padding: 10px 48px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
nav.scrolled .nav-logo { color: var(--green-800); }
.nav-logo i { font-size: 1.5rem; }
.nav-logo span { letter-spacing: -0.3px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--green-400);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a { color: var(--text); }
nav.scrolled .nav-links a:hover { color: var(--green-700); }
nav.scrolled .nav-links a::after { background: var(--green-600); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: 0.3s ease;
}
nav.scrolled .hamburger span { background: var(--green-800); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  background: #0a2f1a;
}

/* ── Slideshow ── */
.hero-slideshow {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease, transform 1.8s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 7s ease-out;
}
.hero-slide.active img {
  transform: scale(1.08);
}

/* Dark overlay on slideshow for text readability */
.hero-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10,47,26,0.82) 0%, rgba(26,79,46,0.55) 50%, rgba(10,47,26,0.70) 100%);
}

/* ── Particles ── */
.hero-particles {
  position: absolute; inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.hero-particles span {
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(74, 222, 128, 0.30);
  border-radius: 50%;
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ── Hero Content ── */
.hero-content {
  position: relative; z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--green-400);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 1px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--green-400), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 8px 30px rgba(22,163,74,0.35);
}
.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(22,163,74,0.45);
}
.hero-btn i { margin-left: 8px; transition: transform 0.3s; }
.hero-btn:hover i { transform: translateX(4px); }

/* ── Hero Slide Controls ── */
.hero-slide-controls {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 18px;
}
.slide-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.70);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.slide-arrow:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.40);
}
.slide-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}
.slide-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.30);
  cursor: pointer;
  transition: background 0.4s, transform 0.4s, width 0.4s, border-radius 0.4s;
  padding: 0;
}
.slide-dot.active {
  background: var(--green-400);
  width: 28px;
  border-radius: 5px;
  transform: scaleY(1.1);
}
.slide-dot:hover {
  background: rgba(255,255,255,0.55);
}

/* ── Hero Wave ── */
.hero-wave {
  position: absolute; bottom: 0; left: 0; right: 0;
  line-height: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ── Container ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section titles ── */
.section {
  padding: 100px 0;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-900);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}
.section-title.light { color: var(--white); }
.section-sub.light { color: rgba(255,255,255,0.7); }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── About ── */
#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-100), #c8e6d0);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--green-600);
}
.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--green-800);
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.about-stat {
  text-align: center;
  padding: 16px 8px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
}
.about-stat h4 {
  font-size: 1.8rem; font-weight: 800;
  color: var(--green-600);
}
.about-stat p {
  font-size: 0.8rem; color: var(--text-light);
  margin: 0;
}

/* ── Vision & Mission ── */
#vision-mission {
  background: linear-gradient(135deg, var(--green-900) 0%, #0f4a2a 100%);
  position: relative;
  overflow: hidden;
}
#vision-mission::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(34,197,94,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(212,168,83,0.05) 0%, transparent 70%);
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
  position: relative; z-index: 1;
}
.vm-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: transform 0.4s, background 0.4s;
}
.vm-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}
.vm-card .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(34,197,94,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem; color: var(--green-400);
}
.vm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.vm-card p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}
.vm-card ul {
  list-style: none;
  margin-top: 16px;
}
.vm-card ul li {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}
.vm-card ul li::before {
  content: '\2713';
  position: absolute; left: 0;
  color: var(--green-400);
  font-weight: 700;
}

/* ── Streams ── */
#streams { background: var(--white); }
.streams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stream-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.stream-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.stream-card:hover::before { transform: scaleX(1); }
.stream-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.stream-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-600);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.stream-card .icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-50), var(--green-100));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem; color: var(--green-600);
  transition: transform 0.4s, background 0.4s;
}
.stream-card:hover .icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
}
.stream-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 8px;
}
.stream-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Contact ── */
#contact {
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.06), transparent);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  position: relative; z-index: 1;
}
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 20px;
}
.contact-info > p {
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 20px;
}
.contact-item .icon {
  width: 44px; height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--green-400);
}
.contact-item h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-item p, .contact-item a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  text-decoration: none;
}
.contact-item a:hover { color: var(--green-400); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  background: rgba(255,255,255,0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.submit-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 6px 24px rgba(22,163,74,0.3);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(22,163,74,0.4);
}
.form-status {
  text-align: center;
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-top: 12px;
  font-size: 0.9rem;
  display: none;
}
.form-status.success { display: block; background: rgba(34,197,94,0.15); color: var(--green-400); }
.form-status.error { display: block; background: rgba(239,68,68,0.15); color: #f87171; }

/* ── Footer ── */
footer {
  background: #072715;
  padding: 40px 0 24px;
  text-align: center;
}
footer .social-links {
  display: flex; justify-content: center; gap: 16px;
  margin-bottom: 20px;
}
footer .social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
footer .social-links a:hover {
  background: var(--green-600);
  color: var(--white);
}
footer p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}
footer p span { color: var(--green-400); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Toast notification ── */
.toast {
  position: fixed; top: 24px; right: 24px;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateX(120%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  max-width: 380px;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.success { background: var(--green-700); }
.toast.error { background: #991b1b; }
.toast i { margin-right: 8px; }

/* ── Responsive ── */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .streams-grid { grid-template-columns: repeat(2, 1fr); }
  .vm-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  nav.scrolled { padding: 10px 20px; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(13,59,30,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 32px 40px;
    gap: 24px;
    transition: right 0.4s ease;
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: rgba(255,255,255,0.85); font-size: 1rem; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .section { padding: 64px 0; }
  .streams-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stream-card { padding: 24px 16px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .about-stat h4 { font-size: 1.4rem; }
  .contact-form { padding: 24px; }
}

@media (max-width: 480px) {
  .streams-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.8rem; }
  .hero-btn { padding: 14px 28px; font-size: 0.9rem; }
}
