/* 
   SunBolon SA - Primary Landing Styles
   Theme: Royal Blue & Strategic Orange
 */

:root {
  --nav-height: 80px;
  
  /* Brand Colors */
  --land-bg: #ffffff;
  --land-surface: #f8fafc;
  --land-surface-2: #f1f5f9;
  
  --land-primary: #001E7F; /* Royal Blue */
  --land-primary-hover: #0a2eb0;
  --land-secondary: #EA7A00; /* Strategic Orange */
  --land-secondary-hover: #d16b00;
  
  --land-text: #0f172a;
  --land-text-muted: #64748b;
  --land-border: rgba(0, 30, 127, 0.1);
  
  --glare: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

.landing-body {
  margin: 0;
  padding: 0;
  background-color: var(--land-bg);
  color: var(--land-text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  display: block;  /* Override dashboard flex layout */
  margin-left: 0 !important;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  margin-top: 0;
  line-height: 1.2;
}

.hero-title, .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.title-gradient {
  background: linear-gradient(to right, var(--land-primary), #0033cc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Navigation */
.landing-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--land-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.nav-logo-text {
  font-size: 19px;
  font-weight: 800;
  color: var(--land-primary);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  color: var(--land-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--land-primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-partner-login {
  padding: 10px 22px;
  background: transparent;
  color: var(--land-primary);
  border: 1px solid var(--land-primary);
  text-decoration: none;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-partner-login:hover {
  background: var(--land-primary);
  color: #fff;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 180px 0 100px;
  background: radial-gradient(circle at 100% 0%, rgba(234, 122, 0, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 0% 100%, rgba(0, 30, 127, 0.03) 0%, transparent 50%);
  text-align: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.03;
  z-index: -1;
}

.hero-bg-glow {
  position: absolute;
  top: -10%; right: -10%;
  width: 40%; height: 40%;
  background: radial-gradient(circle, rgba(234, 122, 0, 0.1) 0%, transparent 70%);
  z-index: -1;
  filter: blur(60px);
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 30, 127, 0.05);
  color: var(--land-primary);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 64px;
  color: var(--land-text);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--land-text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-btn-primary {
  padding: 16px 36px;
  background: var(--land-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.2s;
}

.hero-btn-secondary {
  padding: 16px 36px;
  background: #fff;
  color: var(--land-primary);
  border: 1px solid var(--land-border);
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.2s;
}

.hero-btn-primary:hover {
  background: var(--land-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 30, 127, 0.2);
}

/* Stats Bar Section */
.stats-bar-section {
  padding: 60px 0;
  background: var(--land-primary);
  color: #fff;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 42px;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  color: var(--land-secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.8;
}

/* Trust Section */
.trust-section {
  padding: 100px 0;
  background: #fff;
}

.trust-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.trust-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.trust-feature {
  display: flex;
  gap: 20px;
}

.trust-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--land-surface);
  color: var(--land-secondary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section Common */
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-kicker { 
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--land-secondary);
  margin-bottom: 12px;
}
.section-title { font-size: 36px; color: var(--land-primary); margin-bottom: 20px; }
.section-desc { font-size: 17px; color: var(--land-text-muted); max-width: 700px; }
.section-header.center .section-desc { margin: 0 auto; }

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--land-surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--land-border);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 30, 127, 0.05);
  border-color: var(--land-secondary);
}

.service-icon {
  width: 42px;
  height: 42px;
  color: var(--land-primary);
  margin-bottom: 20px;
}

.service-title { font-size: 18px; color: var(--land-primary); margin-bottom: 12px; }
.service-text { font-size: 14px; color: var(--land-text-muted); line-height: 1.6; }

/* Network Section */
.network-section {
  padding: 100px 0;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.network-item {
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--land-border);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
}

.network-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 30, 127, 0.05);
  border-color: var(--land-secondary);
}

.network-item-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--land-primary);
}

/* Event Archive & Portfolio */
.events-section { padding: 100px 0; }

.archive-section { padding: 100px 0; background: var(--land-surface-2); }
.archive-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; }
.archive-tab {
  padding: 8px 20px;
  background: #fff;
  border: 1px solid var(--land-border);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  color: var(--land-text-muted);
  cursor: pointer;
}
.archive-tab.active { background: var(--land-primary); color: #fff; border-color: var(--land-primary); }

.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.archive-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--land-border); }
.archive-thumb { position: relative; height: 180px; }
.archive-thumb img { width: 100%; height: 100%; object-fit: cover; }
.archive-overlay { 
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: rgba(0,30,127,0.4); display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: 0.3s;
}
.archive-card:hover .archive-overlay { opacity: 1; }
.archive-play-btn { width:44px; height:44px; background:var(--land-secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color:#fff;}
.archive-body { padding: 20px; }
.archive-year { font-size: 11px; font-weight: 800; color: var(--land-secondary); margin-bottom: 4px; }
.archive-title { font-size: 16px; color: var(--land-primary); margin-bottom: 12px; line-height: 1.4; }
.archive-actions { display: flex; gap: 12px; }
.archive-link { font-size: 12px; font-weight: 700; color: var(--land-text-muted); text-decoration: none; display: flex; align-items: center; gap: 4px; }

/* Professional Polish: Badges & Reveal */
.event-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: var(--land-primary);
  color: #fff;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,30,127,0.2);
}

.confirmed-badge {
  background: var(--land-secondary);
  background: linear-gradient(135deg, var(--land-secondary) 0%, #ff9d33 100%);
}

.future-badge {
  background: var(--land-primary);
  background: linear-gradient(135deg, var(--land-primary) 0%, #0033cc 100%);
}

.upcoming-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.upcoming-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,30,127,0.12);
  border-color: var(--land-secondary);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.is-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; }

/* Advisory Section */
.advisory-section { padding: 100px 0; }
.advisory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.advisor-card { background: var(--land-surface); padding: 40px; border-radius: 20px; text-align: center; border: 1px solid var(--land-border); }
.advisor-photo { width: 80px; height: 80px; background: var(--land-primary); color: #fff; font-size: 32px; font-weight: 800; border-radius: 50%; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; }
.advisor-name { font-size: 18px; color: var(--land-primary); margin-bottom: 4px; }
.advisor-role { font-size: 13px; font-weight: 700; color: var(--land-secondary); text-transform: uppercase; margin-bottom: 12px; }
.advisor-bio { font-size: 13px; color: var(--land-text-muted); line-height: 1.6; }

/* Ticketing Section */
.tickets-section { padding: 100px 0; background: var(--land-surface); }
.ticket-widget-container { max-width: 800px; margin: 0 auto; }

/* Video & Visuals */
.video-section { overflow: hidden; }
.cinematic-video-wrap {
  position: relative; max-width: 900px; margin: 40px auto 0; aspect-ratio: 16/9;
  border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.video-soft-glow {
  position: absolute; top: 50%; left: 50%; width: 120%; height: 120%;
  background: radial-gradient(circle, rgba(234, 122, 0, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%); z-index: -1;
}

/* Partners Marquee 2.0 */
.partners-v2-section { padding: 100px 0; background: #fff; }
.partners-v2-tier { margin-bottom: 40px; }
.partners-v2-subtitle { display: block; text-align: center; font-size: 12px; font-weight: 800; color: var(--land-text-muted); margin-bottom: 30px; letter-spacing: 2px; }
.logo-marquee-outer { overflow: hidden; position: relative; }
.logo-grid-v2 { display: flex; gap: 50px; width: max-content; align-items: center; }
.logo-item-v2 { display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none; width: 140px; opacity: 0.6; filter: grayscale(1); transition: 0.3s; }
.logo-item-v2:hover { opacity: 1; filter: grayscale(0); }
.logo-item-v2 img { height: 40px; width: auto; object-fit: contain; }
.logo-item-v2-name { font-size: 10px; font-weight: 700; color: var(--land-text-muted); text-align: center; }

/* Sponsorship Forms */
.sponsorship-section { padding: 100px 0; }
.split-container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.sponsorship-form-wrap { background: var(--land-surface); padding: 40px; border-radius: 20px; border: 1px solid var(--land-border); }
.sponsorship-form-wrap h3 { font-size: 20px; margin-bottom: 24px; color: var(--land-primary); }
.c-form-group { margin-bottom: 16px; }
.c-form-input { width: 100%; padding: 12px 16px; border-radius: 8px; border: 1px solid var(--land-border); outline: none; font-size: 14px; }
.c-form-input:focus { border-color: var(--land-secondary); }

/* Testimonials Drag Slider */
.testimonials-section { padding: 100px 0; background: var(--land-surface-2); overflow: hidden; }
.testimonials-carousel-outer { position: relative; cursor: grab; }
.testimonials-carousel-outer:active { cursor: grabbing; }
.testimonials-track { display: flex; gap: 24px; padding: 20px 0; transition: transform 0.1s linear; }
.testimonial-card { 
  flex-shrink: 0; width: 400px; max-width: 85vw; background: #fff; padding: 32px; border-radius: 16px; 
  border: 1px solid var(--land-border); box-shadow: 0 4px 15px rgba(0,30,127,0.03);
}
.testimonial-stars { color: #F59E0B; margin-bottom: 12px; }
.testimonial-quote { font-size: 15px; color: var(--land-primary); font-style: italic; line-height: 1.6; margin-bottom: 20px; }
.testimonial-divider { height: 1px; background: var(--land-border); margin-bottom: 20px; }
.testimonial-author-row { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; }
.testimonial-author-info .testimonial-author { font-size: 14px; font-weight: 700; color: var(--land-primary); }
.testimonial-author-info .testimonial-role { font-size: 12px; color: var(--land-text-muted); }

/* Story & Contact Details */
.story-section { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.contact-section { padding: 100px 0; background: var(--land-surface); }
.contact-detailed { padding: 100px 0; background: var(--land-surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-card { background: #fff; padding: 24px; border-radius: 12px; border: 1px solid var(--land-border); margin-bottom: 20px; }
.c-info-title { font-size: 10px; font-weight: 800; color: var(--land-secondary); text-transform: uppercase; margin-bottom: 4px; }
.c-info-text { font-size: 15px; font-weight: 600; color: var(--land-primary); }
.contact-form-wrap { background: #fff; padding: 40px; border-radius: 16px; border: 1px solid var(--land-border); }

/* Footer */
.landing-footer { padding: 40px 0 20px; background: #00124d; color: #fff; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .footer-logo-title { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo { width: 40px; height: 40px; border-radius: 50%; }
.footer-logo-text { font-size: 20px; font-weight: 800; color: #fff; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: rgba(255,255,255,0.4); transition: 0.2s; }
.footer-socials a:hover { color: #fff; }
.footer-links-group h4 { font-size: 14px; color: var(--land-secondary); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-links-group a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; margin-bottom: 12px; }
.footer-links-group a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); margin-top: 60px; padding-top: 30px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-legal a { color: inherit; text-decoration: none; margin-left: 20px; }

/* Mobile Navigation */
.mobile-menu-btn { display: none; background: none; border: none; color: var(--land-primary); cursor: pointer; }

/* Responsive Overrides */
@media (max-width: 900px) {
  .hero-title { font-size: 44px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .network-grid { grid-template-columns: repeat(3, 1fr); }
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
  .advisory-grid { grid-template-columns: repeat(2, 1fr); }
  .split-container, .story-grid, .contact-grid, .footer-container { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .network-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid { grid-template-columns: 1fr; }
  .advisory-grid { grid-template-columns: 1fr; }
}

/* Impact & Gallery Tabs */
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease; }

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.impact-stat-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--land-border);
  box-shadow: 0 4px 20px rgba(0, 30, 127, 0.02);
  transition: transform 0.3s ease;
}

.impact-stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--land-secondary);
}

.impact-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--land-primary);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.impact-stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--land-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--land-border);
}

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

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

.placeholder-photo {
  background: var(--land-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.photo-placeholder-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--land-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  width: 90%;
  max-width: 1000px;
  background: #000;
  position: relative;
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  z-index: 10001;
  transition: 0.2s;
}

.video-modal-close:hover {
  color: var(--land-secondary);
}

/* Image Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* Align to top for parallel positioning */
  padding-top: 60px; /* Space from top */
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  width: fit-content;
  max-width: 80%; /* Reduced size */
  max-height: 80vh; /* Ensure bottom is visible */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 50px rgba(0,0,0,0.6);
  border: 4px solid #fff;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: -50px; /* Positioned just above the image */
  right: 0; /* Aligned with the right edge of the image area */
  color: #fff;
  font-size: 40px; /* Refined size */
  cursor: pointer;
  z-index: 10001;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--land-secondary);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 32px;
  width: 54px;
  height: 54px;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10001;
  user-select: none;
  border: 1px solid rgba(255,255,255,0.2);
}

.lightbox-arrow:hover {
  background: var(--land-secondary);
  border-color: var(--land-secondary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }

@media (max-width: 768px) {
  .lightbox { padding-top: 80px; }
  .lightbox-content { max-width: 95%; max-height: 70vh; }
  .lightbox-arrow { width: 44px; height: 44px; font-size: 20px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: -50px; right: 10px; font-size: 32px; }
}

@media (max-width: 768px) {
  .impact-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .impact-stats-grid { grid-template-columns: 1fr; }
}