/* ═══════════════════════════════════════════════════════════
   BLOOM '26 — AIESEC in University of Kelaniya
   Premium CSR Campaign Website
   ═══════════════════════════════════════════════════════════ */

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

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  --primary: #F4BE5A;
  --primary-deep: #D99B2B;
  --primary-glow: rgba(244, 190, 90, 0.25);
  --primary-subtle: rgba(244, 190, 90, 0.08);
  --dark: #0F0F0F;
  --dark-2: #141414;
  --dark-3: #1A1A1A;
  --dark-4: #222222;
  --white: #FFFFFF;
  --white-60: rgba(255, 255, 255, 0.60);
  --white-30: rgba(255, 255, 255, 0.30);
  --white-10: rgba(255, 255, 255, 0.10);
  --white-06: rgba(255, 255, 255, 0.06);
  --white-04: rgba(255, 255, 255, 0.04);

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.40);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 72px;
  --section-pad: 120px;
  --container-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-deep) var(--dark-3);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark-3);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-deep);
  border-radius: var(--radius-full);
}

body {
  font-family: var(--font-sans);
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
svg {
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── NOISE OVERLAY ─── */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ─── CURSOR GLOW ─── */
.cursor-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 190, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: transform 0.08s linear;
}

/* ─── CONTAINER ─── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── GLASS CARD ─── */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(244, 190, 90, 0.12);
  border-color: rgba(244, 190, 90, 0.20);
}

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 60%, #e8a820 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(244, 190, 90, 0.2);
}

.btn-ghost {
  background: var(--white-06);
  color: var(--white);
  border: 1px solid var(--white-10);
}

.btn-ghost:hover {
  background: var(--white-10);
  border-color: var(--white-30);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── SECTION COMMON ─── */
.section {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-subtle);
  border: 1px solid rgba(244, 190, 90, 0.20);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--white-60);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 64px;
}

/* ─── ANIMATION CLASSES ─── */
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up {
  transform: translateY(40px);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Delay classes */
.delay-1 {
  transition-delay: 0.10s;
}

.delay-2 {
  transition-delay: 0.20s;
}

.delay-3 {
  transition-delay: 0.30s;
}

.delay-4 {
  transition-delay: 0.40s;
}

.delay-5 {
  transition-delay: 0.50s;
}

.delay-6 {
  transition-delay: 0.60s;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition-slow), backdrop-filter var(--transition-slow), border-color var(--transition-slow);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.80);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--glass-border);
}

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

.nav-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.logo-bloom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-year {
  color: var(--white-60);
  font-weight: 500;
  font-size: 16px;
}

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

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--white-60);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: var(--white-06);
}

.nav-contact-btn {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: var(--dark) !important;
  font-weight: 700;
  padding: 8px 20px;
  margin-left: 8px;
}

.nav-contact-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(244, 190, 90, 0.2);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.hamburger:hover {
  background: var(--white-06);
}

.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Hamburger open state */
.hamburger.open .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .ham-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-3) 100%);
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content-left {
  text-align: left;
}

.hero-content-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}



.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--primary-subtle);
  border: 1px solid rgba(244, 190, 90, 0.25);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--white-60);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

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

/* Illustration Styles */
.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
}

.illustration-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(244, 190, 90, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

.illustration-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.tree-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawTree 3s ease-out forwards;
}

@keyframes drawTree {
  to {
    stroke-dashoffset: 0;
  }
}

.bloom {
  transform-origin: center;
  animation: bloomPop 2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: scale(0);
}

.bloom-1 {
  animation-delay: 1.5s;
}

.bloom-2 {
  animation-delay: 1.7s;
}

.bloom-3 {
  animation-delay: 1.9s;
}

.bloom-4 {
  animation-delay: 2.1s;
}

.bloom-5 {
  animation-delay: 2.3s;
}

@keyframes bloomPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.health-cross {
  opacity: 0;
  animation: fadeInCross 1s ease forwards 2.5s;
}

@keyframes fadeInCross {
  to {
    opacity: 1;
  }
}

.silhouette {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpSilhouette 1s ease forwards 2s;
}

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

.particle {
  animation: floatParticle 4s ease-in-out infinite alternate;
}

.particle-1 {
  animation-delay: 0s;
}

.particle-2 {
  animation-delay: 0.5s;
}

.particle-3 {
  animation-delay: 1s;
}

.particle-4 {
  animation-delay: 1.5s;
}

.particle-5 {
  animation-delay: 2s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }

  100% {
    transform: translateY(-20px) scale(1.5);
    opacity: 1;
    filter: drop-shadow(0 0 5px var(--primary));
  }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--white-30);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid var(--white-30);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════════════════ */
.about-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 60px;
}

.about-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card-wide {
  grid-column: 1 / -1;
}

.card-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-subtle);
  border: 1px solid rgba(244, 190, 90, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.card-text {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.7;
}

/* Impact metrics inside about card */
.impact-metrics {
  display: flex;
  gap: 40px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-val {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.metric-lbl {
  font-size: 13px;
  color: var(--white-60);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE SECTION
   ═══════════════════════════════════════════════════════════ */
.timeline-section {
  background: var(--dark-2);
  position: relative;
}

.timeline-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(244, 190, 90, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.timeline-wrapper {
  position: relative;
  margin-top: 72px;
  padding: 0 0 40px;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(244, 190, 90, 0.30) 10%, rgba(244, 190, 90, 0.30) 90%, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding-bottom: 48px;
  display: flex;
  align-items: flex-start;
}

.timeline-left {
  justify-content: flex-end;
  padding-right: 64px;
  align-self: flex-start;
}

.timeline-right {
  margin-left: 50%;
  padding-left: 64px;
  justify-content: flex-start;
}

.timeline-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--dark-2);
  border: 2px solid var(--primary-deep);
  transition: transform var(--transition-spring), box-shadow var(--transition-base);
}

.timeline-left .timeline-dot {
  right: -7px;
  top: 20px;
}

.timeline-right .timeline-dot {
  left: -7px;
  top: 20px;
}

.timeline-dot-active {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 6px rgba(244, 190, 90, 0.15), 0 0 20px rgba(244, 190, 90, 0.30) !important;
}

.timeline-card {
  padding: 28px;
  max-width: 420px;
}

.timeline-card:hover .timeline-dot {
  transform: scale(1.4);
  box-shadow: 0 0 0 6px rgba(244, 190, 90, 0.10);
}

.timeline-date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.timeline-event-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.timeline-event-desc {
  font-size: 14px;
  color: var(--white-60);
  line-height: 1.6;
  margin-bottom: 16px;
}

.timeline-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-subtle);
  border: 1px solid rgba(244, 190, 90, 0.15);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

.timeline-tag-active {
  background: rgba(244, 190, 90, 0.15);
  border-color: rgba(244, 190, 90, 0.40);
}

.timeline-card-active {
  border-color: rgba(244, 190, 90, 0.20) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(244, 190, 90, 0.15), 0 0 40px rgba(244, 190, 90, 0.06) !important;
}

/* ═══════════════════════════════════════════════════════════
   PARTNERS SECTION
   ═══════════════════════════════════════════════════════════ */
.partners-section {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.partner-tier {
  margin-bottom: 48px;
}

.partner-tier-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 20px;
  padding-left: 4px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.partner-logos-large .partner-logo-slot {
  height: 120px;
  min-width: 280px;
  flex: 1;
  max-width: 400px;
}

.partner-logo-slot {
  height: 88px;
  flex: 1;
  min-width: 140px;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.partner-logo-slot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 190, 90, 0.04) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.partner-logo-slot:hover::after {
  opacity: 1;
}

.partner-logo-sm {
  height: 70px;
  min-width: 110px;
  max-width: 170px;
}

.partner-placeholder {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-30);
}

.partner-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 40px;
  background: var(--primary-subtle);
  border: 1px solid rgba(244, 190, 90, 0.15);
  border-radius: var(--radius-lg);
  margin-top: 20px;
}

.partner-cta p {
  font-size: 17px;
  font-weight: 600;
  color: var(--white-60);
  flex: 1;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════ */
.gallery-section {
  background: var(--dark-2);
  overflow: hidden;
}

.gallery-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0 8px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .carousel-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 33.3333%;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-subtle);
  border: 1px solid rgba(244, 190, 90, 0.15);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(244, 190, 90, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-fast);
  padding: 0;
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  height: 280px;
}

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--white-30);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
  transition: background var(--transition-base);
}

.gallery-item:hover .gallery-placeholder {
  background: linear-gradient(135deg, rgba(244, 190, 90, 0.04) 0%, transparent 100%);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-caption {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════
   TEAM SECTION
   ═══════════════════════════════════════════════════════════ */
.team-section {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.team-hierarchy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.team-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.team-tier-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  width: 100%;
}

.team-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.team-card-lead {
  min-width: 280px;
  max-width: 320px;
  padding: 36px 28px;
  border-color: rgba(244, 190, 90, 0.12);
}

.team-card-ocp {
  min-width: 320px;
  max-width: 360px;
  border-color: rgba(244, 190, 90, 0.25);
  box-shadow: 0 8px 32px rgba(244, 190, 90, 0.05);
}

.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--primary-subtle);
  border: 2px solid rgba(244, 190, 90, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.team-card:hover .team-avatar {
  border-color: rgba(244, 190, 90, 0.50);
  box-shadow: 0 0 0 6px rgba(244, 190, 90, 0.08);
}

.team-avatar-sm {
  width: 64px;
  height: 64px;
}

.team-avatar-md {
  width: 104px;
  height: 104px;
}

.avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.team-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.team-role {
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.team-socials {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--primary-subtle);
  border: 1px solid rgba(244, 190, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.social-link:hover {
  background: rgba(244, 190, 90, 0.15);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--dark);
  position: relative;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(244, 190, 90, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md) !important;
  overflow: hidden;
}

.faq-item:hover {
  transform: none !important;
  border-color: rgba(244, 190, 90, 0.15) !important;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  gap: 16px;
  text-align: left;
  transition: color var(--transition-fast);
}

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

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--primary-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), background var(--transition-base);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: rgba(244, 190, 90, 0.15);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition-base);
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.7;
  border-top: 1px solid var(--glass-border);
  padding-top: 16px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 64px;
}

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

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-subtle);
  border: 1px solid rgba(244, 190, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 2px;
}

.contact-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

/* Form */
.contact-form {
  padding: 40px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-60);
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
  background: var(--white-04);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--white-30);
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgba(244, 190, 90, 0.50);
  background: var(--white-06);
  box-shadow: 0 0 0 4px rgba(244, 190, 90, 0.08);
}

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

.form-success {
  text-align: center;
  padding: 14px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
  background: var(--primary-subtle);
  border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 190, 90, 0.40), transparent);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: start;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--white-60);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--white-06);
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-spring);
}

.footer-social-link:hover {
  color: var(--primary);
  background: var(--primary-subtle);
  border-color: rgba(244, 190, 90, 0.20);
  transform: translateY(-3px);
}

.footer-links-grid {
  display: flex;
  gap: 60px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white-30);
  margin-bottom: 20px;
}

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

.footer-links-col a {
  font-size: 14px;
  color: var(--white-60);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer-links-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--white-30);
}

.footer-made {
  font-size: 13px;
  color: var(--white-30);
  display: flex;
  align-items: center;
  gap: 4px;
}

.heart {
  color: var(--primary);
  animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

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

  .about-card-wide {
    grid-column: 1 / -1;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links-grid {
    gap: 40px;
  }
}

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

  /* Nav mobile */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition-base), opacity var(--transition-base);
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
  }

  .nav-contact-btn {
    text-align: center;
    margin-left: 0;
    margin-top: 8px;
  }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content-left {
    text-align: center;
  }

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

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

  .hero-illustration {
    max-width: 400px;
    margin: 0 auto;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-card-wide {
    grid-column: 1;
  }

  .impact-metrics {
    flex-direction: column;
    gap: 20px;
  }

  /* Timeline */
  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    padding-left: 52px !important;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }

  .timeline-dot {
    left: 14px !important;
    right: auto !important;
  }

  .timeline-card {
    max-width: 100%;
  }

  /* Gallery */
  .gallery-carousel {
    padding: 0 40px;
  }

  .carousel-btn {
    width: 36px;
    height: 36px;
  }

  .gallery-item {
    height: 240px;
  }

  /* Team */
  .team-row {
    flex-direction: column;
    align-items: center;
  }

  /* Partners */
  .partner-cta {
    flex-direction: column;
    text-align: center;
  }

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

  .contact-form {
    padding: 24px;
  }

  /* Footer */
  .footer-links-grid {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-carousel {
    padding: 0 32px;
  }

  .carousel-btn {
    width: 32px;
    height: 32px;
  }

  .hero-stats {
    padding: 20px;
  }

  .section-title {
    font-size: 32px;
  }
}