:root {
  --primary: #348F7A;
  --primary-dark: #267060;
  --primary-light: #4ab09a;
  --white: #ffffff;
  --black: #111111;
  --gray: #f5f7f6;
  --text-dark: #1a2e2a;
  --text-muted: #6b8c85;
  --top-header-height: 44px;
  --header-height: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  background: #fff;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── TOP HEADER ─────────────────────────────── */
.top-header {
  background: var(--primary);
  height: var(--top-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: relative;
  z-index: 1001;
  animation: slideDownFade 0.6s ease 0s both;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 0;
}

.top-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s;
  padding: 0 20px;
  position: relative;
}
.top-contact a:hover { opacity: 0.8; }

.top-contact a + a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.4);
}

.contact-icon {
  width: 26px; height: 26px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--primary); font-size: 11px; }

.top-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-social a {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid rgba(255,255,255,0.3);
}
.top-social a:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-1px);
}

/* ── MAIN HEADER ─────────────────────────────── */
.main-header {
  background: var(--white);
  height: var(--header-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(52,143,122,0.12);
  transition: box-shadow 0.3s;
  animation: slideDownFade 0.6s ease 0.15s both;
}

.logo {
  animation: slideDownFade 0.6s ease 0.25s both;
}

nav a {
  animation: slideDownFade 0.5s ease both;
}
nav a:nth-child(1) { animation-delay: 0.30s; }
nav a:nth-child(2) { animation-delay: 0.38s; }
nav a:nth-child(3) { animation-delay: 0.46s; }
nav a:nth-child(4) { animation-delay: 0.54s; }
nav a:nth-child(5) { animation-delay: 0.62s; }

.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon i { color: #fff; font-size: 20px; }
.logo-text { line-height: 1.1; }
.logo-text span:first-child {
  display: block;
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
}
.logo-text span:last-child {
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 1.5px; text-transform: uppercase;
}

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  font-size: 14px; font-weight: 500;
  color: var(--black);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  position: relative;
  letter-spacing: 0.2px;
}
nav a:hover { color: var(--primary); background: rgba(52,143,122,0.06); }
nav a.active { color: var(--white); background: var(--primary); }
nav a.active:hover { color: var(--white); background: var(--primary-dark); }

/* ── HERO / BANNER ─────────────────────────────── */
.hero {
  position: relative;
  height: 700px;
  padding-bottom: 60px;
  overflow: visible;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(52,143,122,0.88) 0%, rgba(20,60,52,0.75) 60%, rgba(0,0,0,0.4) 100%),
    url('https://images.unsplash.com/photo-1559757175-0eb30cd8c063?w=1600&q=80') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 45%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=800&q=80') center/cover no-repeat;
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.35;
  mix-blend-mode: luminosity;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 40px;
  max-width: 680px;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero-tag span {
  width: 6px; height: 6px;
  background: var(--primary-light);
  border-radius: 50%;
}

.hero-title {
  font-family: 'Inter', 'Lato', sans-serif;
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease 0.25s both;
}
.hero-title .line1 {
  display: block;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin-bottom: 6px;
  font-family: 'Roboto', 'Open Sans', sans-serif;
}
.hero-title .line2 {
  color: var(--white);
  display: block;
  font-size: clamp(36px, 5vw, 58px);
}
.hero-title .line3 {
  display: block;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  transition: color 0.3s;
  cursor: default;
}
.hero-title .line3:hover { color: #000; }

.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 16px; line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  animation: fadeUp 0.7s ease 0.4s both;
}

.btn-discover {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px; font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--primary);
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  animation: fadeUp 0.7s ease 0.55s both;
  letter-spacing: 0.5px;
  overflow: hidden;
  position: relative;
}
.btn-discover::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.btn-discover:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(52,143,122,0.45);
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-discover:hover::before { transform: scaleX(1); }
.btn-discover i { font-size: 12px; transition: transform 0.3s; }
.btn-discover:hover i { transform: translateX(4px); }

/* ── CARDS STRIP ─────────────────────────────── */
.cards-strip {
  position: relative;
  z-index: 10;
  margin-top: -90px;
  padding: 0 60px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.stat-card {
  background: var(--white);
  padding: 108px 32px 40px;
  box-shadow: 0 8px 36px rgba(52,143,122,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: visible;
  transition: box-shadow 0.35s, background 0.3s, transform 0.35s;
  border: 1px solid rgba(52,143,122,0.10);
  border-radius: 16px;
}
.cards-strip .stat-card:first-child { border-radius: 16px; }
.cards-strip .stat-card:last-child  { border-radius: 16px; }

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s;
}
.stat-card:hover { background: #f9fdfb; transform: translateY(-6px); box-shadow: 0 16px 48px rgba(52,143,122,0.18); }
.stat-card:hover::after { transform: scaleX(1); }

.card-img-circle {
  width: 180px; height: 180px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
  z-index: 3;
}
.card-img-circle img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.card-body { width: 100%; }
.card-body h3 {
  font-size: 20px; font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Inter', 'Lato', sans-serif;
}
.card-body p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7;
}

.card-arrow {
  margin-top: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(52,143,122,0.2);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  font-size: 14px;
}
.card-arrow:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ── EVENT SECTION ──────────── */
.event-section {
  background: #ffffff;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}

.hex-bg {
  position: absolute;
  top: 0; right: 0;
  width: 65%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.25) 25%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,1) 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.25) 25%, rgba(0,0,0,0.65) 60%, rgba(0,0,0,1) 100%);
  filter: blur(0.4px) drop-shadow(0 1px 4px rgba(52,143,122,0.10));
}

.event-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.event-poster {
  width: 260px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}

.poster-bg {
  background: linear-gradient(160deg, #1a0533 0%, #3b1060 30%, #6b2fa0 55%, #c05a20 80%, #e8832a 100%);
  padding: 20px 16px 24px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.poster-bg::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,120,0,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.poster-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.poster-logo {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
  position: relative; z-index: 2;
}
.poster-logo-icon {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.poster-logo-icon i { color: #fff; font-size: 13px; }
.poster-logo div {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.poster-logo div span {
  font-size: 8px; font-weight: 700;
  color: #fff; letter-spacing: 0.5px;
}

.poster-dolphin {
  font-size: 36px;
  text-align: center;
  margin: 4px 0;
  position: relative; z-index: 2;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.poster-title-block {
  text-align: center;
  position: relative; z-index: 2;
  margin-top: 4px;
}
.poster-title-block h3 {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: 28px; font-weight: 900;
  color: #F5C842;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
  letter-spacing: 1px;
}
.poster-quote {
  font-family: 'Inter', 'Lato', sans-serif;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  margin: 6px 0 10px;
}

.poster-date-badge {
  background: #E87830;
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 8px 14px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.5px;
  display: inline-block;
}
.poster-date-badge span {
  display: block;
  font-size: 9px;
  letter-spacing: 1.5px;
  margin-top: 2px;
  opacity: 0.9;
}

.poster-figure {
  font-size: 48px;
  text-align: center;
  margin-top: 10px;
  position: relative; z-index: 2;
  filter: drop-shadow(0 0 16px rgba(255,120,0,0.6));
}

.event-heading {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1;
  margin-bottom: 18px;
}
.event-heading-green { color: var(--primary); }

.event-gold-line {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, #C9A84C, #E8C96A);
  border-radius: 2px;
  margin-bottom: 22px;
}

.event-tagline {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  font-style: italic;
  margin-bottom: 10px;
}

.event-meta {
  font-size: 15px;
  color: #78787B;
  margin-bottom: 32px;
}

.btn-brochure {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
}
.btn-brochure:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52,143,122,0.35);
}

/* ── WELCOME SECTION ─────────────────────────── */
.welcome-section {
  background: #F7F6F2;
  padding: 80px 60px;
}

.welcome-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.welcome-label {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.welcome-divider {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, #C9A84C, #E8C96A);
  border-radius: 2px;
  margin-bottom: 22px;
}

.welcome-title {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.welcome-foundation {
  color: var(--primary);
  display: inline-block;
  transition: color 0.3s;
  cursor: default;
}
.welcome-foundation:hover { color: var(--black); }

.welcome-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.welcome-right p {
  font-size: 15px;
  line-height: 1.85;
  color: #78787B;
  font-weight: 400;
}

.welcome-right strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* ── GENERIC SECTION ─────────────────────────── */
.section { padding: 90px 40px 70px; }

.section-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-desc {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.8; max-width: 560px;
}

/* ── ABOUT ─────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-img {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.about-img img {
  width: 100%; height: 400px;
  object-fit: cover; display: block;
}
.about-img::before {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 60%; height: 60%;
  background: var(--primary);
  opacity: 0.08;
  border-radius: 24px;
  z-index: -1;
}
.about-content .stats-row {
  display: flex; gap: 32px;
  margin-top: 32px;
}
.stat-item h4 {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: 36px; font-weight: 900;
  color: var(--primary);
}
.stat-item p { font-size: 13px; color: var(--text-muted); }

/* ── SERVICES ─────────────────────────────── */
.services-bg { background: var(--gray); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 48px auto 0;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(52,143,122,0.08);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(52,143,122,0.15);
}
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon i { color: #fff; font-size: 24px; }
.service-card h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 10px; color: var(--text-dark);
}
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── GALLERY ─────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-item img:hover { transform: scale(1.05); }
.gallery-item.h1 { height: 240px; }
.gallery-item.h2 { height: 220px; }

/* ── CONTACT FORM ─────────────────────────────── */
.contact-form {
  display: flex; flex-direction: column;
  gap: 16px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid #dde8e5;
  font-family: inherit; font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--primary); }
.contact-form textarea { resize: vertical; }
.contact-form .btn-submit {
  background: var(--primary);
  color: #fff; border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  letter-spacing: 0.5px;
  font-family: inherit;
}
.contact-form .btn-submit:hover {
  transform: scale(1.04);
  background: var(--primary-dark);
}

/* ── FOOTER ─────────────────────────────── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 28px;
  font-size: 13px;
}
footer span { color: var(--primary-light); }

/* ── SCROLL REVEAL ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── KEYFRAMES ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ══════════════════════════════════════════════
   HAMBURGER BUTTON
══════════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   MOBILE — max-width 768px
══════════════════════════════════════════════ */
@media (max-width: 768px) {

  *, *::before, *::after { box-sizing: border-box; }
  body { overflow-x: hidden; }

  .top-header { display: none !important; }

  .main-header {
    padding: 0 16px;
    height: 60px;
    position: sticky; top: 0; z-index: 1000;
  }

  .hamburger { display: flex; }

  nav {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 60px; left: 0; right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    padding: 8px 0 16px;
    gap: 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.32s ease, opacity 0.28s ease;
    z-index: 999;
  }
  nav.mobile-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  nav a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(52,143,122,0.09);
    animation: none !important;
    transition-delay: 0s !important;
  }
  nav a:last-child { border-bottom: none; }
  nav a.active { background: var(--primary); color: #fff; border-radius: 0; }

  .hero {
    height: auto;
    min-height: 380px;
    padding: 70px 16px 90px;
    align-items: center;
  }
  .hero-content { padding: 0; max-width: 100%; }
  .hero-title { font-size: clamp(22px, 7vw, 32px); }
  .hero-desc { font-size: 13px; }
  .btn-discover { font-size: 13px; padding: 13px 24px; }

  .cards-strip {
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    margin-top: 50px;
    gap: 70px;
  }
  .stat-card { width: 100%; }

  .welcome-section { padding: 50px 16px; }
  .welcome-inner {
    display: flex !important;
    flex-direction: column;
    gap: 28px;
  }

  .event-section { padding: 40px 16px; }
  .event-inner {
    display: flex !important;
    flex-direction: column;
    gap: 36px;
  }
  .event-poster-wrap { display: flex; justify-content: center; }
  .event-poster { width: 100%; max-width: 280px; }
  .hex-bg { display: none; }

  .values-section { padding: 50px 16px; }
  .values-inner {
    display: flex !important;
    flex-direction: column;
    gap: 32px;
  }
  .values-images {
    position: static;
    min-height: unset;
    width: 100%;
  }
  .values-img-main {
    position: static;
    width: 100%;
    height: 240px;
    border-radius: 6px;
    overflow: hidden;
  }
  .values-img-small { display: none; }
  .values-deco { display: none; }

  .commitment-banner { padding: 50px 16px; text-align: center; }
  .commitment-content h2 { font-size: clamp(18px, 5.5vw, 26px); }

  .activity-section { padding: 48px 16px; }
  .activity-grid {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }
  .ka-card-center { grid-column: unset; max-width: 100%; margin: 0; }
  .activity-img, .ka-img { height: 200px; }

  .objective-section { padding: 50px 16px; }
  .objective-inner {
    display: flex !important;
    flex-direction: column;
    gap: 28px;
  }
  .objective-img { order: -1; }
  .objective-img img { height: 220px; }

  .site-footer { width: 100%; overflow: hidden; }
  .footer-inner {
    display: flex !important;
    flex-direction: column;
    gap: 32px;
    padding: 40px 16px 28px;
    width: 100%;
    max-width: 100%;
  }
  .footer-brand,
  .footer-col { width: 100%; }
  .footer-newsletter-form { max-width: 100%; }
  .footer-newsletter-form input { min-width: 0; flex: 1; }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 16px;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .page-banner { height: 200px; }
  .page-banner-title { font-size: clamp(28px, 8vw, 44px); }

  .section { padding: 48px 16px; }
}

/* ── Very small screens ── */
@media (max-width: 400px) {
  .hero-title { font-size: 22px; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-newsletter-form input { border-right: 1px solid #3a3a3a; border-bottom: none; }
  .footer-newsletter-form button { width: 100%; padding: 12px; }
}

/* ══════════════════════════════════════════════
   OUR VALUES SECTION
══════════════════════════════════════════════ */
.values-section {
  background: #fff;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.values-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
.values-deco i {
  color: transparent;
  -webkit-text-stroke: 1.5px #c8e0d9;
  font-size: 80px;
  opacity: 0.7;
}
.values-deco-heart { top: 24px; right: 24px; }
.values-deco-heart i { font-size: 72px; }
.values-deco-drop { bottom: 24px; left: 24px; }
.values-deco-drop i { font-size: 64px; }

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.values-images {
  position: relative;
  min-height: 480px;
}

.values-img-main {
  position: absolute;
  right: 0; top: 0;
  width: 78%;
  height: 440px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.values-img-main img { width: 100%; height: 100%; object-fit: cover; }

.values-img-small {
  position: absolute;
  left: 0; top: 100px;
  width: 42%;
  height: 220px;
  border-radius: 4px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  z-index: 2;
}
.values-img-small img { width: 100%; height: 100%; object-fit: cover; }

.values-label {
  font-size: 13px; font-weight: 600;
  color: #C9A84C;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.values-gold-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, #C9A84C, #E8C96A);
  border-radius: 2px;
  margin-bottom: 24px;
}
.values-title {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 24px;
}
.values-green { color: var(--primary); }

.values-desc {
  font-size: 14px;
  color: #78787B;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 32px;
}

.btn-outline-green {
  display: inline-block;
  border: 1.5px solid var(--primary);
  color: var(--text-dark);
  background: transparent;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, transform 0.25s;
}
.btn-outline-green:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   COMMITMENT BANNER
══════════════════════════════════════════════ */
.commitment-banner {
  position: relative;
  background:
    url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&q=80')
    center/cover no-repeat;
  padding: 90px 60px;
  text-align: center;
  overflow: hidden;
}
.commitment-overlay {
  position: absolute; inset: 0;
  background: rgba(52,143,122,0.82);
}
.commitment-content {
  position: relative; z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}
.commitment-content h2 {
  font-family: 'Roboto', 'Open Sans', sans-serif;
  font-size: clamp(26px, 3.5vw, 46px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 36px;
}
.btn-outline-gold {
  display: inline-block;
  border: 1.5px solid #C9A84C;
  color: #C9A84C;
  background: transparent;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, transform 0.25s;
}
.btn-outline-gold:hover {
  background: #C9A84C;
  color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════
   KEY ACTIVITY AREA
══════════════════════════════════════════════ */
.activity-section {
  background: #fff;
  padding: 80px 60px;
}
.activity-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.activity-label {
  font-size: 13px; font-weight: 600;
  color: #C9A84C;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}
.activity-title {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #e8efed;
}
.activity-card {
  background: #fff;
  padding: 0 0 24px;
  text-align: center;
  transition: box-shadow 0.3s;
  cursor: pointer;
}
.activity-card:hover { box-shadow: 0 8px 32px rgba(52,143,122,0.15); z-index: 1; }
.activity-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 18px;
}
.activity-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.activity-card:hover .activity-img img { transform: scale(1.06); }
.activity-name {
  font-size: 13px; font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 0 16px;
}

/* ══════════════════════════════════════════════
   OUR OBJECTIVE
══════════════════════════════════════════════ */
.objective-section {
  background: #F7F6F2;
  padding: 80px 60px;
}
.objective-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.objective-label {
  font-size: 13px; font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.objective-gold-line {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, #C9A84C, #E8C96A);
  border-radius: 2px;
  margin-bottom: 20px;
}
.objective-title {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.objective-desc {
  font-size: 14px;
  color: #78787B;
  line-height: 1.9;
  text-align: justify;
  margin-bottom: 32px;
}
.objective-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
}
.objective-img img {
  width: 100%; height: 360px;
  object-fit: cover; display: block;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.65);
}

.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.3fr;
  gap: 48px;
  padding: 60px 60px 40px;
}

.footer-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-icon i { color: #fff; font-size: 20px; }
.footer-logo-text {
  display: flex; flex-direction: column;
  line-height: 1.1;
}
.footer-logo-name {
  font-family: 'Inter', 'Lato', sans-serif;
  font-size: 18px; font-weight: 700;
  color: #fff !important;
  letter-spacing: -0.3px;
}
.footer-logo-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45) !important;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-brand-desc {
  font-size: 13px; line-height: 1.8;
  color: rgba(255,255,255,0.5);
  text-align: left;
}

.footer-heading {
  font-size: 16px; font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  display: flex; align-items: center; gap: 8px;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a i { color: var(--primary); font-size: 10px; }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-contact-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.footer-contact-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.footer-contact-list i { color: var(--primary); font-size: 13px; margin-top: 2px; flex-shrink: 0; }

.footer-newsletter-desc {
  font-size: 13px; line-height: 1.7;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.55);
}
.footer-newsletter-form {
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}
.footer-newsletter-form input {
  flex: 1;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  border-right: none;
  padding: 12px 16px;
  font-size: 13px;
  color: #fff;
  font-family: inherit;
  outline: none;
}
.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-form button {
  background: var(--primary);
  border: none;
  padding: 12px 16px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}
.footer-newsletter-form button:hover { background: var(--primary-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  max-width: 1260px; margin: 0 auto;
  width: 100%;
}
.footer-bottom span { color: var(--primary-light); font-weight: 600; }