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

:root {
  --primary: #1B5E20;
  --primary-light: #2E7D32;
  --primary-dark: #0D3B13;
  --accent: #4CAF50;
  --accent-light: #81C784;
  --gold: #F9A825;
  --gold-light: #FFD54F;
  --earth: #795548;
  --earth-light: #A1887F;
  --bg-dark: #0a0f0a;
  --bg-section: #0f1a0f;
  --bg-card: rgba(27, 94, 32, 0.08);
  --text-primary: #f0f5f0;
  --text-secondary: #a8c5a8;
  --text-muted: #6b8f6b;
  --glass: rgba(27, 94, 32, 0.12);
  --glass-border: rgba(76, 175, 80, 0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

h1, h2, h3, h4, h5, h6 { font-family: 'Outfit', sans-serif; line-height: 1.2; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 15, 10, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
.navbar.scrolled { padding: 10px 0; background: rgba(10, 15, 10, 0.95); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Outfit', sans-serif; font-size: 1.6rem; font-weight: 800;
  color: var(--accent); text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-secondary); text-decoration: none; font-size: 0.9rem;
  font-weight: 500; transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--accent); transition: var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; padding: 10px 24px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 0.9rem; transition: var(--transition);
  border: none; cursor: pointer;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(76,175,80,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { width: 28px; height: 2px; background: var(--text-primary); transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative;
  padding: 120px 0 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(27,94,32,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(76,175,80,0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 80%, rgba(249,168,37,0.05) 0%, transparent 40%);
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
  position: absolute; width: 4px; height: 4px; background: var(--accent-light);
  border-radius: 50%; opacity: 0; animation: float-particle 6s infinite;
}
.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; }
.particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 3s; }
.particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 4s; }
.particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 1.5s; }
.particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 90%; top: 55%; animation-delay: 3.5s; }

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; transform: translateY(-20px) scale(1); }
  80% { opacity: 0.3; transform: translateY(-80px) scale(0.5); }
  100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { max-width: 600px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass); border: 1px solid var(--glass-border);
  padding: 8px 16px; border-radius: 50px; font-size: 0.8rem;
  color: var(--accent-light); margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800;
  margin-bottom: 20px; animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 36px;
  max-width: 480px; animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; padding: 14px 32px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 1rem; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(76,175,80,0.4); }
.btn-secondary {
  background: transparent; color: var(--text-primary); padding: 14px 32px;
  border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: var(--transition); border: 1px solid var(--glass-border);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px; animation: fadeInUp 0.8s ease 0.8s both;
}
.stat-item h3 { font-size: 2rem; font-weight: 800; color: var(--accent); }
.stat-item p { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  animation: fadeInRight 1s ease 0.5s both;
}
.hero-image-wrapper {
  position: relative; width: 100%; max-width: 480px;
}
.hero-image-wrapper img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4/3;
}
.hero-image-wrapper::before {
  content: ''; position: absolute; inset: -4px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent), var(--gold), var(--primary));
  z-index: -1; opacity: 0.5;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== SECTIONS GENERAL ===== */
section { padding: 100px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 30px; height: 2px; background: var(--accent);
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; margin-bottom: 48px;
}

/* ===== ABOUT ===== */
.about { background: var(--bg-section); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img {
  width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/3;
}
.about-image .floating-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--glass); backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); padding: 20px; border-radius: var(--radius);
}
.floating-card h4 { font-size: 2rem; color: var(--gold); }
.floating-card p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== PRODUCTS ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.product-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden; transition: var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-8px); border-color: var(--accent); box-shadow: 0 20px 40px rgba(76,175,80,0.15); }
.product-card img {
  width: 100%; height: 220px; object-fit: cover;
  transition: var(--transition);
}
.product-card:hover img { transform: scale(1.05); }
.product-card .card-body { padding: 24px; }
.product-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.product-card p { font-size: 0.9rem; color: var(--text-secondary); }
.product-tag {
  display: inline-block; background: rgba(76,175,80,0.15); color: var(--accent);
  padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  margin-top: 12px;
}

/* ===== IMPACT ===== */
.impact { background: var(--bg-section); }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.impact-card {
  text-align: center; padding: 40px 24px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); transition: var(--transition);
}
.impact-card:hover { transform: translateY(-6px); border-color: var(--accent); }
.impact-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.impact-card h3 { font-size: 2.2rem; font-weight: 800; color: var(--accent); margin-bottom: 4px; }
.impact-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ===== WHY CHOOSE ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.why-card {
  padding: 32px; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); transition: var(--transition); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transform: scaleX(0); transition: var(--transition); transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { transform: translateY(-6px); }
.why-card .icon {
  font-size: 2rem; margin-bottom: 16px; display: block;
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== PLASTICS2FORESTS ===== */
.p2f { background: var(--bg-section); position: relative; overflow: hidden; }
.p2f-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.p2f-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.p2f-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px; background: var(--glass); border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border); transition: var(--transition);
}
.p2f-feature:hover { border-color: var(--accent); }
.p2f-feature .icon { font-size: 1.5rem; flex-shrink: 0; }
.p2f-feature h4 { font-size: 1rem; margin-bottom: 4px; }
.p2f-feature p { font-size: 0.85rem; color: var(--text-secondary); }
.p2f-image img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; aspect-ratio: 4/3; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  text-align: center; padding: 32px 20px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); border-color: var(--accent); }
.team-photo {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 20px;
  overflow: hidden; border: 3px solid var(--glass-border);
  transition: var(--transition);
}
.team-card:hover .team-photo { border-color: var(--accent); box-shadow: 0 0 24px rgba(76,175,80,0.3); }
.team-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.team-card:hover .team-photo img { transform: scale(1.1); }
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== VIDEO SHOWCASE ===== */
.video-showcase { background: var(--bg-dark); padding: 100px 0; }
.video-player-wrapper {
  display: grid; grid-template-columns: 1fr 280px; gap: 24px; align-items: start;
}
.video-main { position: relative; }
.video-main video {
  width: 100%; border-radius: var(--radius-lg);
  background: #000; display: block;
  box-shadow: var(--shadow);
}
.video-caption {
  padding: 20px 0;
}
.video-caption h4 {
  font-family: 'Outfit', sans-serif; font-size: 1.1rem;
  margin-bottom: 6px; color: var(--text-primary);
}
.video-caption p {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5;
}
.video-thumbnails {
  display: flex; flex-direction: column; gap: 10px;
  max-height: 500px; overflow-y: auto; padding-right: 4px;
}
.video-thumbnails::-webkit-scrollbar { width: 4px; }
.video-thumbnails::-webkit-scrollbar-track { background: transparent; }
.video-thumbnails::-webkit-scrollbar-thumb { background: var(--glass-border); border-radius: 4px; }
.video-thumb {
  position: relative; cursor: pointer; border-radius: var(--radius-sm);
  overflow: hidden; border: 2px solid transparent;
  transition: var(--transition); flex-shrink: 0;
}
.video-thumb:hover { border-color: rgba(76,175,80,0.4); }
.video-thumb.active { border-color: var(--accent); box-shadow: 0 0 12px rgba(76,175,80,0.2); }
.video-thumb img {
  width: 100%; height: 70px; object-fit: cover; display: block;
  transition: var(--transition);
}
.video-thumb:hover img { transform: scale(1.05); }
.thumb-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -60%);
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,0.6); display: flex;
  align-items: center; justify-content: center;
  opacity: 0.8; transition: var(--transition);
}
.video-thumb:hover .thumb-play { opacity: 1; background: rgba(76,175,80,0.7); }
.thumb-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 4px 8px; font-size: 0.65rem; font-weight: 700;
  color: #fff; background: linear-gradient(transparent, rgba(0,0,0,0.8));
  text-transform: uppercase; letter-spacing: 0.5px;
}



/* ===== JOURNEY ROADMAP ===== */
.journey { background: var(--bg-section); }
.roadmap { position: relative; }
.roadmap-line {
  position: absolute; top: 40px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--gold), var(--accent));
  border-radius: 2px; z-index: 1;
}
.roadmap-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; z-index: 2;
}
.roadmap-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 28px 20px 20px;
  transition: var(--transition); position: relative;
  margin-top: 60px;
}
.roadmap-card:hover {
  transform: translateY(-8px); border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(76,175,80,0.15);
}
.roadmap-step {
  position: absolute; top: -28px; left: 20px;
  display: flex; align-items: center; gap: 10px;
}
.roadmap-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 800;
  color: #fff; border: 4px solid var(--bg-section);
  box-shadow: 0 4px 16px rgba(76,175,80,0.3);
}
.roadmap-step svg { color: var(--accent-light); }
.roadmap-year {
  display: inline-block; font-size: 0.75rem; color: var(--gold);
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 8px; padding: 3px 10px;
  background: rgba(249,168,37,0.1); border-radius: 50px;
}
.roadmap-card h3 {
  font-size: 1.05rem; margin-bottom: 8px; line-height: 1.3;
}
.roadmap-card p {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 14px;
}
.roadmap-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.roadmap-tags span {
  font-size: 0.7rem; padding: 3px 10px; border-radius: 50px;
  background: rgba(76,175,80,0.1); color: var(--accent);
  font-weight: 600; border: 1px solid rgba(76,175,80,0.15);
}
.roadmap-card-future {
  border-color: rgba(249,168,37,0.25);
  background: linear-gradient(135deg, rgba(27,94,32,0.15), rgba(249,168,37,0.08));
}
.roadmap-card-future::after {
  content: 'UPCOMING'; position: absolute; top: 12px; right: 12px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 1px;
  color: var(--gold); background: rgba(249,168,37,0.15);
  padding: 3px 8px; border-radius: 50px;
}


/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
  text-align: center; padding: 100px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(76,175,80,0.2), transparent 70%);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark); border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-secondary); font-size: 0.9rem; margin-top: 12px; max-width: 300px; }
.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; color: var(--text-primary); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--glass-border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--text-muted);
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); text-decoration: none; font-size: 0.9rem;
  transition: var(--transition);
}
.footer-socials a:hover { border-color: var(--accent); color: var(--accent); background: rgba(76,175,80,0.1); }

/* ===== PRODUCT IMAGE ZOOM OVERLAY ===== */
.product-image-wrap {
  position: relative; overflow: hidden; cursor: pointer;
}
.product-image-wrap img {
  transition: var(--transition);
}
.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}
.zoom-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
  color: #fff;
}
.product-image-wrap:hover .zoom-overlay {
  opacity: 1;
}
.zoom-overlay svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: var(--transition);
}
.product-image-wrap:hover .zoom-overlay svg {
  transform: scale(1.2);
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
  opacity: 1; visibility: visible;
}
.lightbox-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px; z-index: 10;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.lightbox-close:hover {
  background: rgba(255,255,255,0.2); transform: rotate(90deg);
}
.lightbox-nav {
  position: absolute; top: 50%; z-index: 10;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); transform: translateY(-50%);
}
.lightbox-nav:hover {
  background: rgba(76,175,80,0.3); border-color: var(--accent);
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-content {
  position: relative; z-index: 5;
  max-width: 85vw; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; cursor: grab;
}
.lightbox-content:active { cursor: grabbing; }
.lightbox-img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain; border-radius: var(--radius);
  transition: transform 0.3s ease;
  user-select: none; -webkit-user-drag: none;
}
.lightbox-caption {
  position: absolute; bottom: 70px; left: 50%; transform: translateX(-50%);
  z-index: 10; color: #fff; font-size: 0.95rem; font-weight: 500;
  background: rgba(0,0,0,0.6); padding: 8px 20px; border-radius: 50px;
  backdrop-filter: blur(8px); white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
.lightbox-counter {
  position: absolute; top: 24px; left: 24px; z-index: 10;
  color: rgba(255,255,255,0.7); font-size: 0.85rem; font-weight: 600;
  font-family: 'Outfit', sans-serif;
}
.lightbox-zoom-controls {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.lightbox-zoom-btn {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.lightbox-zoom-btn:hover {
  background: rgba(76,175,80,0.3); border-color: var(--accent);
}

/* ===== WHATSAPP BUTTON ===== */
.btn-whatsapp {
  background: #25D366;
  color: #fff; padding: 14px 32px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 1rem; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  background: #20bd5a;
}

/* ===== FLOATING CALL ===== */
.call-float {
  position: fixed; bottom: 100px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  transition: var(--transition); text-decoration: none;
  animation: call-pulse 2s infinite;
  animation-delay: 1s;
  perspective: 1000px;
}
.call-float:hover {
  transform: scale(1.1);
}
.call-flipper {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  animation: call-rotate 6s infinite ease-in-out;
}
.call-front, .call-back {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 50%;
  background: #007BFF; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.call-back {
  transform: rotateY(180deg);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}
@keyframes call-rotate {
  0%, 45% { transform: rotateY(0deg); }
  50%, 95% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes call-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(0, 123, 255, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(0, 123, 255, 0.15), 0 0 0 12px rgba(0, 123, 255, 0.08); }
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition); text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--bg-dark); color: var(--text-primary); padding: 8px 16px;
  border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: var(--transition); border: 1px solid var(--glass-border);
  font-family: 'Inter', sans-serif;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.15), 0 0 0 12px rgba(37, 211, 102, 0.08); }
}

/* ===== MAP SECTION ===== */
.map-section {
  background: var(--bg-section); padding: 100px 0;
}
.map-wrapper {
  display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: stretch;
}
.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}
.map-container iframe {
  display: block; width: 100%; height: 100%; min-height: 400px;
}
.map-info-cards {
  display: flex; flex-direction: column; gap: 12px;
}
.map-info-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px; background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius); transition: var(--transition);
}
.map-info-card:hover {
  border-color: var(--accent); transform: translateX(-4px);
}
.map-info-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.map-info-card h4 {
  font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  margin-bottom: 2px; color: var(--text-primary);
}
.map-info-card p {
  font-size: 0.8rem; color: var(--text-secondary); line-height: 1.4;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { order: -1; }
  .about-grid, .p2f-content { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .video-player-wrapper { grid-template-columns: 1fr; }
  .video-thumbnails { flex-direction: row; overflow-x: auto; max-height: unset; padding-bottom: 4px; }
  .video-thumb img { height: 60px; width: 120px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-cards { grid-template-columns: repeat(2, 1fr); }
  .roadmap-line { display: none; }
  .map-wrapper { grid-template-columns: 1fr; }
  .map-info-cards { flex-direction: row; flex-wrap: wrap; }
  .map-info-card { flex: 1; min-width: 200px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(10,15,10,0.98); padding: 24px; gap: 16px; border-bottom: 1px solid var(--glass-border); }
  .nav-links.active { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 24px; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-content { max-width: 95vw; }
  .map-info-cards { flex-direction: column; }
  .map-info-card { min-width: unset; }
  .roadmap-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .video-thumb img { height: 50px; width: 100px; }
}
@media (max-width: 480px) {
  .impact-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .call-float { width: 52px; height: 52px; bottom: 84px; right: 20px; }
  .call-float svg { width: 22px; height: 22px; }
}
