/* Yoda Ela Cycle Challenge 2026 - Styling (Light Theme) */
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kaushan+Script&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Variables */
:root {
  --primary: #10b981;        /* Vibrant Emerald Green */
  --primary-hover: #059669;  /* Darker Emerald */
  --accent: #d97706;         /* Amber Gold (darker for contrast on white) */
  --bg-light: #f8fafc;       /* Clean Light Slate Off-White */
  --bg-light-alt: #ffffff;   /* Pure White for cards and header */
  --bg-section-tint: #f0fdf4; /* Pale Mint Green tint for section alternating bg */
  
  --text-dark: #0f172a;      /* Dark Slate for primary text */
  --text-muted: #475569;     /* Soft Slate for paragraph text */
  --text-light: #ffffff;     /* White text where appropriate (e.g. Hero Section) */
  
  --card-bg: #ffffff;
  --card-border: #e2e8f0;
  --card-hover-border: rgba(16, 185, 129, 0.3);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Header & Navbar - Pure White Background */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.navbar {
  max-width: 1300px;
  margin: 0 auto;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-right: 12px;
}

.logo-text h2 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.05em;
}

.logo-text span {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  left: 0;
  bottom: -6px;
  border-radius: 10px;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.register-btn {
  background: var(--primary);
  color: var(--text-light) !important;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.register-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
}

.register-btn::after {
  display: none !important;
}

/* Mobile Hamburger Menu */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1010;
}

.menu-icon span {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero Section (Replicated from reference image) */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 120px 8% 80px 8%;
  background-color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background-image: url('images/home%20page%20image.jfif');*/
  background-image: url('images/updated home.jpg');  
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 1;
  transform-origin: center center;
  animation: hero-bg-motion 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05); /* Extra subtle wash, original colors preserved */
  z-index: 2;
}

@keyframes hero-bg-motion {
  0% {
    transform: scale(1) translateY(0);
    background-position: center 48%;
  }
  100% {
    transform: scale(1.04) translateY(-14px);
    background-position: center 52%;
  }
}

.hero-content {
  flex: 1 1 600px;
  max-width: 650px;
  position: relative;
  z-index: 3;
  background: transparent; /* No card background, directly on sky */
  padding: 0;
  box-shadow: none;
}

/* Hero Title Styles */
.hero-title {
  font-family: var(--font-heading);
  line-height: 1.02;
  margin-bottom: 8px;
}

.title-brand {
  display: block;
  font-size: 6.2rem;
  font-weight: 800;
  color: #123e25; /* Dark Green */
  letter-spacing: -0.01em;
}

.title-event {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 3.1rem;
  font-weight: 800;
  color: #12243d; /* Dark Navy Blue */
  letter-spacing: -0.01em;
  margin-top: -6px;
}

.bike-icon-svg {
  width: 58px;
  height: 58px;
  color: #12243d;
  display: inline-block;
  vertical-align: middle;
}

/* Tagline with Script Font */
.hero-tagline-cursive {
  font-family: 'Kaushan Script', cursive;
  font-size: 2.1rem;
  color: #123e25;
  margin-top: 10px;
  margin-bottom: 6px;
  font-weight: 500;
}

.tagline-divider {
  width: 280px;
  height: 1px;
  background: rgba(18, 62, 37, 0.3);
  margin-bottom: 24px;
  position: relative;
}

.tagline-divider::after {
  content: "◆";
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  color: #123e25;
  font-size: 0.6rem;
}

.hero-description-text {
  font-family: var(--font-body);
  font-size: 1.06rem;
  color: #000000; /* Slate dark gray */
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 540px;
  font-weight: 500;
}

/* Horizontal Metadata Row */
.hero-meta-horizontal {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.meta-row-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 2px solid rgba(18, 62, 37, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #12243d;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: 2px;
}

.meta-row-item span {
  color: #0f172a;
}

.meta-svg {
  color: #123e25;
  flex-shrink: 0;
}

/* Buttons Styling */
.hero-buttons-row {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.btn-green-fill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #123e25;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: var(--transition);
}

.btn-green-fill:hover {
  background-color: #0c2919;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(18, 62, 37, 0.25);
}

.btn-bike-svg {
  color: #ffffff;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: white;
  color: #12243d;
  border: 2px solid #12243d;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: var(--transition);
}

.btn-outline-dark:hover {
  background-color: rgba(18, 36, 61, 0.05);
  border-color: #12243d;
  transform: translateY(-2px);
}

.btn-pin-svg {
  color: #12243d;
}

/* Registration deadline callout */
.hero .home-registration-deadline {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  position: relative;
  margin-top: -34px;
  padding: 16px 24px;
  border: 2px solid #ea580c;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: deadline-pulse-shadow 2.4s ease-in-out infinite;
  max-width: 100%;
}

.deadline-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ea580c, #ca8a04);
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(234, 88, 12, 0.3);
  animation: deadline-bell-swing 2.5s ease-in-out infinite alternate;
}

.deadline-text-container {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.closing-label {
  color: #ea580c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.closing-date {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.deadline-timer {
  font-size: 0.85rem;
  font-weight: 700;
  color: #c2410c;
  font-family: monospace;
  background: rgba(255, 237, 213, 0.85);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(234, 88, 12, 0.2);
  letter-spacing: normal;
}

@keyframes deadline-pulse-shadow {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.15);
    border-color: #ea580c;
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.35), 0 0 0 6px rgba(234, 88, 12, 0.1);
    border-color: #f97316;
    transform: translateY(-3px);
  }
}

@keyframes deadline-bell-swing {
  0% { transform: rotate(-10deg) scale(1); }
  50% { transform: rotate(10deg) scale(1.08); }
  100% { transform: rotate(-10deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero .home-registration-deadline,
  .deadline-icon-wrapper {
    animation: none;
  }
}

/* Celebration Stamp */
.tourism-stamp {
  position: absolute;
  top: 130px;
  right: 12%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(4deg);
  z-index: 3;
}

.stamp-border {
  border: 2px dashed #12243d;
  border-radius: 6px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(2px);
}

.stamp-line {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  color: #12243d;
  letter-spacing: 0.08em;
  line-height: 1.25;
}

.stamp-line.accent {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.stamp-leaf {
  font-size: 1.6rem;
  transform: scaleX(-1) rotate(-15deg);
}

/* Curved Bottom Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 54%;
  background-color: #0b1a12; /* Deep dark forest green */
  border-top-right-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 5% 24px 8%;
  z-index: 3;
  box-shadow: 10px -5px 30px rgba(0, 0, 0, 0.15);
}

.stat-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.stat-bar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #10b981; /* Light green icon tint */
  transition: var(--transition);
}

.stat-bar-circle:hover {
  background-color: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.5);
}

.stat-svg {
  width: 20px;
  height: 20px;
}

.stat-bar-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-bar-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.25;
  max-width: 100px;
}

/* Professional Styled Countdown Section */
.about-countdown-banner {
  position: relative;
  max-width: 480px;
  width: 100%;
  padding: 24px 28px;
  margin-bottom: 32px;
  
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  transition: var(--transition);
  z-index: 1;
}

.about-countdown-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
}

.about-countdown-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  
}

.about-countdown-banner .about-countdown-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  color: #123e25;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

/* Pulsing live dot */
.about-countdown-label::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse-live 1.8s infinite;
}

@keyframes pulse-live {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.about-countdown-banner .about-countdown-items {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.about-countdown-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 62, 37, 0.06);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.02);
  min-width: 0; /* allows scaling below contents */
  transition: var(--transition);
}

.about-countdown-item:hover {
  background: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.about-countdown-item .countdown-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #123e25;
  line-height: 1;
  margin-bottom: 2px;
}

.about-countdown-item .countdown-name {
  font-size: 0.62rem;
  color: #475569;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-countdown-panel {
  position: relative;
  flex: 1 1 auto;
  max-width: 480px;
  display: flex;
  justify-content: flex-end;
  align-self: center;
  z-index: 3;
  margin-left: auto;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .route-hero {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .route-overview-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .route-gallery .gallery-item.tall {
    grid-row: span 1;
    min-height: 220px;
  }

  .route-final-cta {
    grid-template-columns: 1fr;
  }

  .about-countdown-banner {
    margin-bottom: 28px;
  }

  .overview-layout {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .overview-media {
    min-height: 260px;
  }

  .overview-media img {
    min-height: 260px;
  }
}

/* Sections Global Styling (Light Theme) */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px;
}

.bg-alt {
  background-color: var(--bg-section-tint); /* Alternating light mint green background */
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.bg-alt > div {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.align-left {
  text-align: left;
}

.section-subtitle {
  display: inline-block;
  color: var(--primary-hover);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-family: "Kaushan Script", cursive;
}

.accent-bar {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 0 auto;
}

.section-header.align-left .accent-bar {
  margin: 0;
}

/* About Section (Light Theme & Enhanced Aesthetics) */
#about {
  position: relative;
  overflow: hidden;
}

#about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0) 60%),
    radial-gradient(circle at 90% 90%, rgba(217, 119, 6, 0.1) 0%, rgba(217, 119, 6, 0) 60%),
    url('images/about event.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.05; /* Low opacity prevents text legibility issues */
  z-index: 0;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 450px));
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  transition: height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-card::before {
  background: linear-gradient(90deg, var(--accent) 0%, #f59e0b 100%);
}

.mission-card::before {
  background: linear-gradient(90deg, var(--primary) 0%, #34d399 100%);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
  border-color: rgba(16, 185, 129, 0.15);
}

.vision-card:hover {
  border-color: rgba(217, 119, 6, 0.2);
  box-shadow: 0 20px 40px rgba(217, 119, 6, 0.04);
}

.about-card:hover::before {
  height: 7px;
}

.card-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-card .card-icon-container {
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.mission-card .card-icon-container {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.about-card:hover .card-icon-container {
  transform: scale(1.08) rotate(5deg);
}

.card-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.about-card h3 {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
  letter-spacing: 0.03em;
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Event Overview Section */
.overview-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.03);
  margin-top: 40px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.overview-layout:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.20);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.06);
}

.section-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.overview-media {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  background: #e8f7ef;
}

.overview-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 22px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
  transform: scale(1.08);
}

.overview-layout:hover .overview-media img {
  transform: scale(1.12);
}

.overview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.005) 50%, rgba(255, 255, 255, 0.01) 100%);
  pointer-events: none;
}

.overview-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  background: var(--primary);
  color: var(--text-light);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.overview-layout:hover .overview-badge {
  background: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
}

.overview-content {
  padding: 8px 6px;
}

.overview-content h3 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.overview-quote {
  font-family: "Kaushan Script", cursive;
  font-size: 1.4rem;
  color: var(--primary-hover);
  margin-bottom: 16px;
}

.overview-content p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0;
}

.guide {
  margin: 22px 0;
}

.guide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}


.guide-button:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.4);
  outline-offset: 3px;
}

.overview-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.overview-hidden {
  display: none;
}

/* Event Highlights Grid */
.overview-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 20px 0;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.highlight-icon-box svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.map-icon {
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--primary-hover);
}

.nature-icon {
  background-color: rgba(16, 185, 129, 0.08);
  color: var(--primary-hover);
}

.heritage-icon {
  background-color: rgba(217, 119, 6, 0.08);
  color: var(--accent);
}

.tourism-icon {
  background-color: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

.highlight-item:hover .highlight-icon-box {
  transform: scale(1.08);
}

.highlight-item:hover .map-icon {
  background-color: var(--primary);
  color: white;
}

.highlight-item:hover .nature-icon {
  background-color: var(--primary);
  color: white;
}

.highlight-item:hover .heritage-icon {
  background-color: var(--accent);
  color: white;
}

.highlight-item:hover .tourism-icon {
  background-color: #3b82f6;
  color: white;
}

.highlight-text {
  display: flex;
  flex-direction: column;
}

.highlight-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.25;
}

.highlight-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.overview-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--primary-hover);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 6px 0;
  font-family: var(--font-heading);
  position: relative;
  transition: var(--transition);
}

.overview-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.overview-link:hover {
  color: var(--primary);
  gap: 10px;
}

.overview-link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.overview-link span {
  transition: transform 0.3s ease;
}

.overview-link:hover span {
  transform: translateX(3px);
}

.overview-link.expanded:hover span {
  transform: translateX(-3px);
}

.overview-link.expanded span {
  transform: rotate(90deg);
  display: inline-block;
}

/* Event Categories Section */
.race-categories-section {
  margin-top: 48px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(18, 62, 37, 0.06), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(18, 62, 37, 0.16);
}

.race-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.race-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.race-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
}

.race-card-header {
  padding: 28px 24px 22px;
  color: #fff;
  background: linear-gradient(135deg, #115e59, #0f766e);
  position: relative;
}

.full-race .race-card-header {
  background: linear-gradient(135deg, #064e3b, #047857);
}

.half-race .race-card-header {
  background: linear-gradient(135deg, #115e59, #0f766e);
}

.quarter-race .race-card-header {
  background: linear-gradient(135deg, #78350f, #b45309);
}

.race-distance {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.1);
}

.race-card h4 {
  margin: 0 0 4px;
  font-size: 1.6rem;
  font-weight: 700;
}

.race-tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
}

.race-details-body {
  padding: 24px;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  gap: 20px;
}

.race-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.race-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.info-text {
  display: flex;
  flex-direction: column;
}

.info-label {
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-val {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.free-badge {
  color: #047857;
  background: rgba(52, 211, 153, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 800;
}

.prize-pool-container {
  margin-top: auto;
  border-top: 1px dashed rgba(15, 23, 42, 0.1);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prize-pool-title {
  color: var(--text-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.prize-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  border-left: 4px solid transparent;
}

.prize-rank {
  display: flex;
  align-items: center;
  gap: 8px;
}

.medal-icon {
  font-size: 1.1rem;
}

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

.prize-amount {
  font-weight: 700;
  color: var(--text-dark);
}

.gold-prize {
  background: rgba(217, 119, 6, 0.05);
  border-left-color: #d97706;
}
.gold-prize .prize-amount {
  color: #b45309;
  font-size: 0.95rem;
}

.silver-prize {
  background: rgba(100, 116, 139, 0.05);
  border-left-color: #64748b;
}
.silver-prize .prize-amount {
  color: #475569;
}

.bronze-prize {
  background: rgba(180, 83, 9, 0.05);
  border-left-color: #b45309;
}
.bronze-prize .prize-amount {
  color: #92400e;
}

@media (max-width: 900px) {
  .race-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .race-categories-section {
    padding: 24px 20px;
  }
}

.event-categories-section {
  margin-top: 48px;
  padding: 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(0, 250, 167, 0.642);
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.01);
}

.categories-heading {
  margin-bottom: 24px;
}

.categories-heading h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  font-family: "Kaushan Script", cursive;
  text-align: center;
  align-items: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  
}

.category-pill {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 999px;
  padding: 14px 20px;
  text-align: center;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  cursor: default;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.category-pill:hover {
  transform: translateY(-3px);
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.category-pill.optional {
  border-color: rgba(16, 185, 129, 0.25);
  color: var(--primary-hover);
  background-color: rgba(16, 185, 129, 0.01);
}

.category-pill.optional:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--text-light);
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.25);
}

/* Event Organizer Section */
.event-organizer-section {
  margin-top: 48px;
  padding: 60px 40px;
  border-radius: 28px;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.96)), url('images/organizers.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border: 1px solid var(--card-border);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.03);
  z-index: 1;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.event-organizer-section:hover {
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
}

.organizer-heading {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.organizer-icon {
  color: var(--primary);
  background: rgba(16, 185, 129, 0.08);
  padding: 12px;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.06);
}

.organizer-heading h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-family: "Kaushan Script", cursive;
}

.organizer-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

.organizer-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.organizer-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.015);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.organizer-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 16px 36px rgba(16, 185, 129, 0.08);
}

.organizer-logo-wrapper {
  height: 90px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.organizer-logo {
  max-height: 100%;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.organizer-card:hover .organizer-logo {
  transform: scale(1.05);
}

.organizer-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-heading);
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.organizer-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Responsiveness for Organizer Cards Grid */
@media (max-width: 1024px) {
  .organizer-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .organizer-heading h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .organizer-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .event-organizer-section {
    padding: 40px 20px;
  }
  .organizer-heading h3 {
    font-size: 1.6rem;
  }
}

/* Event Sponsors Section */
.event-sponsors-section {
  margin-top: 48px;
  padding: 60px 40px;
  border-radius: 28px;
  background: var(--bg-light-alt);
  border: 1px solid var(--card-border);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.03);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.event-sponsors-section:hover {
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
}

.sponsors-heading {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sponsors-icon {
  color: var(--accent);
  background: rgba(217, 119, 6, 0.08);
  padding: 12px;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.06);
}

.sponsors-heading h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  font-family: "Kaushan Script", cursive;
}

.sponsors-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Sponsors Infinite Scrolling Ticker */
.sponsors-ticker-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

/* Fade effects on the edges of the ticker */
.sponsors-ticker-container::before,
.sponsors-ticker-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.sponsors-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.sponsors-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.sponsors-ticker-track {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: scroll-logos 25s linear infinite;
  align-items: center;
}

/* Pause the animation on hover */
.sponsors-ticker-container:hover .sponsors-ticker-track {
  animation-play-state: paused;
}

.sponsor-logo-item {
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 15px 25px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.sponsor-logo {
  max-height: 80%;
  max-width: 85%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.sponsor-logo-item:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: rgba(217, 119, 6, 0.35);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.08);
}

.sponsor-logo-item:hover .sponsor-logo {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsiveness for Sponsors Section */
@media (max-width: 1024px) {
  .sponsors-heading h3 {
    font-size: 1.8rem;
  }
  .sponsor-logo-item {
    width: 160px;
    height: 80px;
    padding: 12px 20px;
  }
}

@media (max-width: 600px) {
  .event-sponsors-section {
    padding: 40px 20px;
  }
  .sponsors-heading h3 {
    font-size: 1.6rem;
  }
  .sponsors-ticker-track {
    gap: 40px;
  }
  .sponsor-logo-item {
    width: 140px;
    height: 70px;
    padding: 10px 15px;
  }
}

/* Yoda Ela Heritage Section (Light Theme) */
.heritage-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.heritage-content {
  flex: 1;
}

.heritage-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.heritage-description p {
  margin-bottom: 12px;
}

.heritage-hidden {
  display: none;
}

.heritage-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  background: none;
  border: none;
  color: var(--primary-hover);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.heritage-read-more:hover {
  color: var(--primary);
}

.heritage-read-more.expanded span {
  transform: rotate(90deg);
  display: inline-block;
}

.heritage-description strong {
  color: var(--text-dark);
}

.heritage-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.stat-box {
  background: var(--bg-light-alt);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}

.stat-text {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.heritage-image-wrapper {
  flex: 1;
  position: relative;
}

/* Animated Gallery Slider */
.heritage-gallery-slider {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.gallery-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

.gallery-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide.active img {
  transform: scale(1.06);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #123e25;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.heritage-gallery-slider:hover .gallery-nav {
  opacity: 1;
}

.gallery-nav:hover {
  background: #ffffff;
  color: var(--primary-hover);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
}

.gallery-nav:active {
  transform: translateY(-50%) scale(0.92);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
  background: rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gallery-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dots .dot.active {
  background: #ffffff;
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .heritage-gallery-slider {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .heritage-gallery-slider {
    height: 250px;
  }
  .image-overlay-card {
    left: 10px;
    bottom: -15px;
    padding: 12px 16px;
    max-width: 240px;
  }
}

.image-overlay-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 20px;
  max-width: 280px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  z-index: 10;
}

.image-overlay-card h4 {
  color: var(--primary-hover);
  font-size: 1rem;
  margin-bottom: 6px;
}

.image-overlay-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}
/* ==========================================================================
   Kala Wewa & Tissa Wewa Reservoirs Section (Modern Styling)
   ========================================================================== */
.reservoir-section {
  position: relative;
  padding: 70px 0 80px 0;
  background: radial-gradient(circle at 50% 0%, rgba(15, 76, 58, 0.05) 0%, rgba(255, 255, 255, 0) 70%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}

.reservoir-header {
  text-align: center;
  margin-bottom: 50px;
}

.reservoir-header .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(15, 76, 58, 0.08);
  border: 1px solid rgba(15, 76, 58, 0.15);
  color: #0f4c3a;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.reservoir-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.reservoir-header .section-description {
  font-size: 15.5px;
  color: #475569;
  max-width: 760px;
  margin: 14px auto 0 auto;
  line-height: 1.65;
}

.reservoirs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.reservoir-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px -10px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.reservoir-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -12px rgba(15, 76, 58, 0.18);
  border-color: rgba(15, 76, 58, 0.4);
}

.reservoir-image-box {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  background: #0f172a;
}

.reservoir-image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 23, 42, 0.45) 100%);
  pointer-events: none;
}

.reservoir-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reservoir-card:hover .reservoir-img {
  transform: scale(1.08);
}

.reservoir-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 16px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.origin-badge {
  background: rgba(5, 150, 105, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.destination-badge {
  background: rgba(2, 132, 199, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.reservoir-body {
  padding: 32px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.reservoir-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.meta-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.meta-tag.builder {
  background: #ecfdf5;
  color: #047857;
  border-color: #a7f3d0;
}

.reservoir-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.reservoir-summary {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 22px;
}

.reservoir-highlights {
  list-style: none;
  padding: 18px 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  margin-top: auto;
}

.reservoir-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13.5px;
  color: #334155;
  line-height: 1.5;
}

.hl-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.reservoir-highlights strong {
  color: #0f172a;
}

@media (max-width: 900px) {
  .reservoirs-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .reservoir-image-box {
    height: 230px;
  }
  .reservoir-body {
    padding: 24px 22px;
  }
  .reservoir-header h2 {
    font-size: 28px;
  }
}

/* Route Section (Light Theme) */
.route-page {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.route-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #f6fcf7 0%, #eef8f1 100%);
  border: 1px solid rgba(18, 62, 37, 0.12);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
}

.route-hero-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.route-hero-title {
  font-family: "Crimson Text", serif;
  font-size: 2.2rem;
  line-height: 1.15;
  color: #123e25;
  max-width: 560px;
}

.route-hero-copy {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
}

.route-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.route-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f6fcf7 0%, #eef8f1 100%);
  border-radius: 24px;
  padding: 14px;
  min-height: 320px;
}
.section-container.route-page h1 {
  font-family: "Kaushan Script", cursive;
  font-size: 2.5rem;
  line-height: 1.15;
  color: var(--text-dark);
  max-width: 560px;
  margin: 0 auto 24px auto;
  text-align: center;
}
.route-hero-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12);
}

.route-overview-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.route-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 20px 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.route-card-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-hover);
}

.route-card-label {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.route-map-section .route-map-panel,
.know-before-you-ride,
.route-support-section,
.route-gallery-section,
.route-timeline-section {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.05);
}

.route-map-panel {
  padding: 32px;
  background: linear-gradient(135deg, #0e2d1d 0%, #1d4a2e 100%);
  color: var(--text-light);
}

.route-map-image-wrapper {
  margin-top: 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

.route-map-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  background: #f8fafc;
}

.route-map-header .section-subtitle {
  color: #a7f3d0;
}

.route-map-header h3 {
  color: var(--text-light);
  font-size: 1.8rem;
  margin-bottom: 0;
}

.route-map-graphic {
  position: relative;
  min-height: 360px;
  margin-top: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  overflow: hidden;
}

.route-map-line {
  position: absolute;
  left: 70px;
  right: 70px;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #10b981 0%, #f59e0b 50%, #ef4444 100%);
}

.route-marker {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
}

.route-marker .marker-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f59e0b;
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
}

.route-marker.start { left: 8%; top: 22%; }
.route-marker.canal { left: 28%; top: 48%; }
.route-marker.villages { left: 44%; top: 24%; }
.route-marker.nature { left: 60%; top: 58%; }
.route-marker.river { left: 72%; top: 28%; }
.route-marker.irrigation { left: 80%; top: 64%; }
.route-marker.finish { left: 90%; top: 38%; }

.marker-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.95);
  color: #123e25;
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
}

.marker-info strong {
  color: var(--primary-hover);
}

.route-experience-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.experience-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.experience-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.experience-card-content {
  padding: 20px;
}

.experience-card-content h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.experience-card-content p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.route-timeline-section {
  padding: 32px;
}

.route-timeline-sticky {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.timeline-branch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.timeline-node {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 62, 37, 0.14);
  background: #f4fbf6;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.timeline-node.active {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.know-before-you-ride,
.route-support-section,
.route-gallery-section {
  padding: 32px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.info-card {
  background: #f7fcf8;
  border: 1px solid rgba(18, 62, 37, 0.1);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-label {
  font-size: 0.75rem;
  color: var(--primary-hover);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.info-card strong {
  color: var(--text-dark);
  line-height: 1.5;
}

.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.support-pill {
  background: #eef8f1;
  color: #164232;
  border: 1px solid rgba(18, 62, 37, 0.12);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
}

.route-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.route-gallery .gallery-item {
  overflow: hidden;
  border-radius: 20px;
  min-height: 220px;
}

.route-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.route-gallery .gallery-item.tall {
  grid-row: span 2;
  min-height: 460px;
}

.route-final-cta {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border: 1px solid rgba(18, 62, 37, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fbf8 0%, #ebf7ee 100%);
}

.route-final-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.route-final-cta-content {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.route-final-cta-content h3 {
  font-size: 1.8rem;
  color: #123e25;
  line-height: 1.2;
}

.route-layout {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.route-map-container {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.route-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.route-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(248, 250, 252, 0.9) 0%, rgba(248, 250, 252, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 5%;
}

.route-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
}

.point-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid var(--bg-light-alt);
  box-shadow: 0 0 15px rgba(217, 119, 6, 0.4);
  margin-bottom: 12px;
}

.route-point.start .point-dot {
  background: var(--primary);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.route-point.end .point-dot {
  background: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.4);
}

.route-point span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(4px);
}

.route-line {
  flex-grow: 1;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--accent), #ef4444);
  position: relative;
  top: -16px;
  margin: 0 -10px;
}

.route-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.route-step {
  display: flex;
  gap: 20px;
}

.step-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(16, 185, 129, 0.25);
  line-height: 1;
}

.step-desc h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-desc p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Schedule Section (Light Theme) */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 120px;
  width: 2px;
  background: rgba(15, 23, 42, 0.08);
}

.timeline-item {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-time {
  width: 90px;
  text-align: right;
  font-weight: 700;
  color: var(--accent);
  font-size: 1rem;
  padding-top: 18px;
  flex-shrink: 0;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg-section-tint);
  border: 3px solid var(--primary);
  margin: 22px 22px 0 22px;
  z-index: 5;
  flex-shrink: 0;
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 24px;
  flex-grow: 1;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
  transition: var(--transition);
}

.timeline-item:hover .timeline-content {
  border-color: var(--card-hover-border);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.05);
  transform: translateX(5px);
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* FAQ Accordion (Light Theme) */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(15, 23, 42, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p {
  padding: 0 24px 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item.active {
  border-color: var(--card-hover-border);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.04);
}

/* ==========================================================================
   Modern Professional Registration Section
   ========================================================================== */
.register-layout {
  max-width: 820px;
  margin: 0 auto;
}

/* Modern Featured Google Form Hero Card */
.modern-register-card {
  background: linear-gradient(145deg, #0f4c3a 0%, #17654f 100%);
  color: #ffffff;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 76, 58, 0.18), 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.modern-register-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.register-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: #a7f3d0;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 8px #34d399;
}

.register-card-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 14px 0;
  letter-spacing: -0.02em;
}

.register-card-subtitle {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.register-cta-wrapper {
  margin-bottom: 20px;
}

.btn-modern-google-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  color: #0f4c3a;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-modern-google-form:hover {
  background: #f0fdf4;
  color: #0f4c3a;
  transform: translateY(-3px);
  box-shadow: 0 15px 32px rgba(0, 0, 0, 0.28);
}

.register-security-note {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.register-security-note i {
  margin-right: 6px;
  color: #34d399;
}

/* Inquiry Support Row (WhatsApp and Email on ONE LINE) */
.inquiry-support-wrapper {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.inquiry-support-header {
  text-align: center;
  margin-bottom: 22px;
}

.inquiry-support-header h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px 0;
}

.inquiry-support-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
}

/* Single Line Layout for Buttons */
.inquiry-buttons-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.inquiry-btn {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: 14px;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.inquiry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.whatsapp-btn:hover {
  border-color: #25d366;
  background: #f0fdf4;
}

.email-btn:hover {
  border-color: #ea4335;
  background: #fef2f2;
}

.inquiry-btn-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.whatsapp-btn .inquiry-btn-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.email-btn .inquiry-btn-icon {
  background: rgba(234, 67, 53, 0.12);
  color: #ea4335;
}

.inquiry-btn-text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.inquiry-btn-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.inquiry-btn-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .modern-register-card {
    padding: 32px 20px;
  }
  .register-card-title {
    font-size: 1.55rem;
  }
  .btn-modern-google-form {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  .inquiry-buttons-row {
    flex-direction: column;
    gap: 12px;
  }
  .inquiry-btn {
    width: 100%;
  }
}

.register-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
  background: var(--bg-light);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-group select option {
  background-color: #ffffff;
  color: var(--text-dark);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0 24px 0;
}

.checkbox-group input {
  margin-top: 4px;
  cursor: pointer;
}

.checkbox-group label {
  text-transform: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0;
  cursor: pointer;
}

.submit-btn {
  width: 100%;
  background: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.submit-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.form-feedback {
  margin-top: 15px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-feedback.success {
  color: var(--primary-hover);
}

.form-feedback.error {
  color: #ef4444;
}

/* Contact Section (Light Theme) */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-card-info {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.01);
  transition: var(--transition);
}

.contact-card-info:hover {
  transform: translateY(-5px);
  border-color: var(--card-hover-border);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.05);
}

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact-card-info h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.contact-card-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer Section - Slate Dark anchoring light layout */
.site-footer {
  background-color: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 24px 20px 24px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  grid-column: 2;
  max-width: 450px;
  text-align: center;
}

.footer-brand h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-family: "Kaushan Script", cursive;
  text-align: center;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  text-align: center;
}

.footer-links {
  grid-column: 3;
  justify-self: end;
}

.footer-links h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

/* Responsive Media Queries */
@media(max-width: 1024px) {
  .hero {
    height: auto;
    min-height: 100vh;
    flex-direction: column;
    padding-top: 120px;
    padding-bottom: 40px;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .tagline-divider {
    margin: 0 auto 24px auto;
  }
  
  .tagline-divider::after {
    left: 50%;
  }

  .hero-meta-horizontal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-buttons-row {
    justify-content: center;
    margin-bottom: 30px;
  }

  .hero-countdown-panel {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .tourism-stamp {
    position: relative;
    top: 0;
    right: 0;
    transform: none;
    order: -1;
    margin-bottom: 20px;
  }

  .hero-stats-bar {
    position: relative;
    width: 100%;
    border-radius: 24px;
    padding: 24px;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .stat-bar-item {
    flex: 1 1 150px;
  }

  .heritage-layout {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .heritage-image-wrapper {
    width: 100%;
    max-width: 500px;
  }

  .image-overlay-card {
    left: 20px;
    bottom: -20px;
  }
}

@media(max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .route-details {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media(max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .overview-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-card {
    padding: 32px 24px;
  }
  .event-categories-section, .event-organizer-section {
    padding: 24px 20px;
  }
}

@media(max-width: 1000px) {
  .menu-icon {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 85px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 85px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    flex-direction: column;
    align-items: center;
    padding: 60px 24px;
    gap: 30px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 16px;
    color: var(--text-dark);
  }
}

@media(max-width: 768px) {
  .title-brand {
    font-size: 3.6rem;
  }

  .title-event {
    font-size: 1.8rem;
    gap: 8px;
    margin-top: 0;
  }

  .bike-icon-svg {
    width: 36px;
    height: 36px;
  }

  .hero-tagline-cursive {
    font-size: 1.5rem;
  }

  .tagline-divider {
    width: 180px;
  }

  .tagline-divider::after {
    left: 50%;
  }

  .hero-stats-bar {
    padding: 20px 10px;
  }

  .stat-bar-item {
    flex: 1 1 100px;
  }

  .stat-bar-circle {
    width: 36px;
    height: 36px;
    margin-bottom: 8px;
  }

  .stat-svg {
    width: 16px;
    height: 16px;
  }

  .stat-bar-value {
    font-size: 1.1rem;
  }

  .stat-bar-label {
    font-size: 0.6rem;
  }

  .about-countdown-banner {
    padding: 16px;
    margin-bottom: 28px;
  }

  .about-countdown-banner .about-countdown-label {
    justify-content: center;
    margin-bottom: 12px;
  }

  .about-countdown-banner .about-countdown-items {
    gap: 6px;
  }

  .about-countdown-item {
    padding: 8px 4px;
    border-radius: 12px;
  }

  .about-countdown-item .countdown-value {
    font-size: 1.4rem;
  }

  .about-countdown-item .countdown-name {
    font-size: 0.55rem;
    letter-spacing: 0.05em;
  }

  .section-container {
    padding: 70px 20px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    padding-left: 45px;
  }

  .timeline-time {
    text-align: left;
    width: auto;
    padding-top: 0;
    margin-bottom: 8px;
  }

  .timeline-dot {
    position: absolute;
    left: -39px;
    top: -4px;
    margin: 0;
  }

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

  .register-card {
    padding: 24px 16px;
  }

  .route-overlay {
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  .route-line {
    display: none;
  }

  .route-map-container {
    height: 480px;
  }

  .route-overview-cards,
  .experience-cards,
  .info-grid,
  .route-gallery {
    grid-template-columns: 1fr;
  }

  .route-timeline-sticky {
    flex-direction: column;
    align-items: flex-start;
  }

  .route-gallery .gallery-item.tall {
    grid-row: span 1;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
    max-width: 100%;
  }

  .footer-links {
    grid-column: auto;
    justify-self: center;
  }

  .footer-links ul {
    align-items: center;
  }
}

/* ==========================================================================
   Blogs & Community Posts Section Styling
   ========================================================================== */
.section-lead-description {
  max-width: 680px;
  margin: 12px auto 0 auto;
  color: var(--text-muted);
  font-size: 15px;
  text-align: center;
}

.blogs-wrapper {
  max-width: 1000px;
  margin: 35px auto 0 auto;
}

.feed-header {
  margin: 35px 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--card-border);
}

.feed-header h3 {
  font-size: 20px;
  color: var(--text-dark);
}

/* Post Creation Form */
.create-post-card {
  background: var(--bg-light-alt);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.create-post-header {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}

.create-post-header h3 {
  font-size: 18px;
  color: var(--text-dark);
}

.create-post-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.create-post-card input,
.create-post-card select,
.create-post-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}

.create-post-card input:focus,
.create-post-card select:focus,
.create-post-card textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.blog-submit-btn {
  width: auto;
  min-width: 180px;
  float: right;
  margin-top: 10px;
}

/* Blogs Feed Grid */
.blogs-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.blog-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-hover-border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.blog-card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.blog-author-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.blog-author-details h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

.blog-timestamp {
  font-size: 11px;
  color: var(--text-muted);
}

.blog-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.blog-badge.badge-event {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary);
}

.blog-badge.badge-article {
  background: rgba(217, 119, 6, 0.1);
  color: var(--accent);
}

.blog-card-body {
  margin-bottom: 20px;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  word-break: break-word;
}

.blog-card-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.action-btn {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.action-btn:hover {
  background: rgba(16, 185, 129, 0.08);
  color: var(--primary);
}

.action-btn.liked {
  color: #ef4444;
}

.no-blogs-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  background: var(--bg-light-alt);
  border-radius: 16px;
  border: 1px dashed var(--card-border);
}

.no-blogs-found h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.no-blogs-found p {
  color: var(--text-muted);
  font-size: 14px;
}

@media (max-width: 768px) {
  .blogs-feed-grid {
    grid-template-columns: 1fr;
  }
}

/* Highlight animation for published post */
.blog-card.new-post-highlight {
  animation: highlightPulse 2s ease-in-out;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25) !important;
}

@keyframes highlightPulse {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.4);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0.2);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
  }
}

/* ==========================================================================
   YODA ELA 2026 - COMMUNITY BLOG PAGE STYLES (Editorial Layout)
   ========================================================================== */

.community-page-body {
  background-color: #ffffff !important;
  min-height: 100vh;
  color: #1f2937;
  font-family: 'Poppins', 'Inter', sans-serif;
}

.community-main {
  padding-top: 125px;
  padding-bottom: 90px;
  background-color: #ffffff;
}

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

/* Community Top Heading */
.community-header {
  text-align: center;
  margin-bottom: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0f4c3a;
  margin-bottom: 10px;
}

.community-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.community-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: #4b5563;
  margin-bottom: 30px;
  max-width: 620px;
  text-align: center;
  line-height: 1.5;
}

.btn-share-story {
  background-color: #0f4c3a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(15, 76, 58, 0.22);
}

.btn-share-story:hover {
  background-color: #0a382b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 76, 58, 0.32);
}

/* Loading & Empty States */
.community-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 0;
  color: #6b7280;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid #e5e7eb;
  border-top-color: #0f4c3a;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.empty-community-state {
  text-align: center;
  padding: 60px 24px;
  background: #fafafa;
  border: 1px dashed #d1d5db;
  border-radius: 16px;
  margin-top: 20px;
}

.empty-community-state h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 8px;
}

.empty-community-state p {
  color: #6b7280;
  margin-bottom: 20px;
}

/* Editorial Post Cards */
.community-posts-section {
  width: 100%;
}

.community-post-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.community-post-card:hover {
  border-color: rgba(15, 76, 58, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.post-author-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.post-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4c3a 0%, #0284c7 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(15, 76, 58, 0.15);
}

.post-author-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #111827;
  line-height: 1.2;
}

.post-date {
  font-size: 13px;
  color: #6b7280;
  margin-top: 3px;
}

.post-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.post-card-media {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin: 16px 0 20px 0;
  border: 1px solid #f3f4f6;
  max-height: 440px;
  background: #f8fafc;
}

.post-card-media img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.post-card-body {
  margin-bottom: 22px;
}

.post-text-content {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #374151;
  line-height: 1.65;
}

.btn-read-more {
  background: none;
  border: none;
  color: #0284c7;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  padding: 6px 0 0 0;
  display: inline-block;
}

.btn-read-more:hover {
  text-decoration: underline;
  color: #0369a1;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid #f3f4f6;
}

.comment-count-badge {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-toggle-comments {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f4c3a;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-toggle-comments:hover {
  background: #0f4c3a;
  color: #ffffff;
  border-color: #0f4c3a;
}

/* Facebook-Style Comment Section */
.facebook-comments-wrapper {
  margin-top: 24px;
  padding: 24px;
  background: #fafafa;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
}

.comments-header h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.no-comments-msg {
  font-size: 13px;
  color: #9ca3af;
  font-style: italic;
}

.fb-comment-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fb-comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f4c3a, #0284c7);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.fb-comment-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fb-comment-bubble {
  background: #f3f4f6;
  border-radius: 18px;
  padding: 12px 18px;
  display: inline-block;
  max-width: 100%;
}

.fb-comment-author {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #111827;
  display: block;
  margin-bottom: 3px;
}

.fb-comment-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
  word-break: break-word;
}

.fb-comment-time {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
  margin-left: 14px;
}

.add-comment-form {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

.comment-form-row {
  display: flex;
  gap: 12px;
}

.comment-name-input,
.comment-email-input {
  flex: 1;
  padding: 9px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.comment-name-input:focus,
.comment-email-input:focus,
.comment-textarea:focus {
  border-color: #0f4c3a;
}

.comment-input-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.comment-textarea {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  resize: vertical;
  min-height: 48px;
  outline: none;
}

.btn-post-comment {
  background: #0f4c3a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 11px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  align-self: flex-end;
}

.btn-post-comment:hover {
  background: #0a382b;
}

/* See All Posts Button */
.see-all-container {
  margin-top: 32px;
  text-align: center;
}

.btn-see-all-posts {
  background: #0f4c3a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(15, 76, 58, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-see-all-posts:hover {
  background: #0a382b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 76, 58, 0.3);
}

/* Category Badge & Like Button Styling */
.post-category-badge {
  margin-left: auto;
  background: #f0fdf4;
  color: #0f4c3a;
  border: 1px solid #bbf7d0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-like-post {
  background: #fdf2f2;
  color: #e11d48;
  border: 1px solid #fecdd3;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-like-post:hover,
.btn-like-post.liked {
  background: #ffe4e6;
  border-color: #fda4af;
  transform: scale(1.03);
}

.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #111827;
  outline: none;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s;
}

.form-select:focus {
  border-color: #0f4c3a;
  box-shadow: 0 0 0 3px rgba(15, 76, 58, 0.12);
}

/* Create Post Modal Dialog */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #ffffff;
  border-radius: 20px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 32px;
  color: #9ca3af;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.modal-close-btn:hover {
  color: #111827;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.45;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.modal-form .form-group {
  display: flex;
  flex-direction: column;
}

.modal-form label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.modal-form label .req {
  color: #ef4444;
}

.modal-form label .opt {
  color: #9ca3af;
  font-weight: 400;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #111827;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.modal-form input[type="text"]:focus,
.modal-form input[type="email"]:focus,
.modal-form textarea:focus {
  border-color: #0f4c3a;
  box-shadow: 0 0 0 3px rgba(15, 76, 58, 0.12);
}

.file-upload-dropzone {
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  background: #fafafa;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.file-upload-dropzone:hover,
.file-upload-dropzone.drag-over {
  border-color: #0f4c3a;
  background: #f0fdf4;
}

.file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.dropzone-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
  pointer-events: none;
}

.dropzone-content svg {
  color: #0f4c3a;
}

.image-preview-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-preview-container img {
  max-height: 200px;
  border-radius: 8px;
  object-fit: contain;
}

.remove-preview-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ef4444;
  color: white;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.modal-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.btn-cancel {
  background: #f3f4f6;
  color: #4b5563;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cancel:hover {
  background: #e5e7eb;
  color: #111827;
}

.btn-publish-post {
  background: #0f4c3a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(15, 76, 58, 0.2);
}

.btn-publish-post:hover {
  background: #0a382b;
  box-shadow: 0 6px 18px rgba(15, 76, 58, 0.3);
}

.modal-feedback {
  font-size: 13px;
  margin-top: 10px;
  text-align: center;
  font-weight: 500;
}

.modal-feedback.success {
  color: #059669;
}

.modal-feedback.error {
  color: #dc2626;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
  .community-main {
    padding-top: 105px;
    padding-bottom: 60px;
  }

  .community-heading {
    font-size: 32px;
  }

  .community-subtitle {
    font-size: 17px;
  }

  .community-post-card {
    padding: 22px;
    border-radius: 14px;
  }

  .post-card-title {
    font-size: 20px;
  }

  .modal-form .form-row {
    grid-template-columns: 1fr;
  }

  .comment-form-row {
    flex-direction: column;
  }

  .comment-input-box {
    flex-direction: column;
  }

  .btn-post-comment {
    width: 100%;
  }

  .modal-card {
    padding: 24px;
  }
}

/* ==========================================================================
   EVENT ORGANIZERS SECTION (Main Organizers & Supporting Organizers)
   ========================================================================== */

.event-organizer-section {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 50px 36px;
  box-sizing: border-box;
}

.organizer-heading {
  text-align: center;
  margin-bottom: 40px;
}

.organizer-heading .section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #0f4c3a;
  display: block;
  margin-bottom: 6px;
}

.organizer-heading h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.organizer-subtitle {
  font-size: 15px;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Subgroup Headings */
.organizers-subgroup-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
}

.organizers-subgroup-title h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.main-badge-icon,
.other-badge-icon {
  font-size: 20px;
}

/* Main Organizers Grid & Cards */
.main-organizers-wrapper {
  margin-bottom: 50px;
}

.main-organizers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.main-organizer-card {
  background: #ffffff;
  border: 2px solid #0f4c3a;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  box-shadow: 0 10px 30px rgba(15, 76, 58, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-organizer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(15, 76, 58, 0.15);
}

.main-org-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: #0f4c3a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(15, 76, 58, 0.25);
}

.main-org-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.main-org-logo-box {
  width: 75px;
  height: 75px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  flex-shrink: 0;
}

.main-org-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.main-org-title-group h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin: 0 0 6px 0;
}

.main-org-tag {
  font-size: 12px;
  font-weight: 600;
  color: #0284c7;
  background: #e0f2fe;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
}

.main-org-desc {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Contact Info List */
.main-org-details-list {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.org-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.org-detail-icon {
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.org-detail-content {
  display: flex;
  flex-direction: column;
}

.detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  font-weight: 600;
}

.org-detail-content strong {
  font-size: 13px;
  color: #1e293b;
  font-weight: 600;
  line-height: 1.4;
}

.main-org-action {
  margin-top: auto;
}

.btn-view-details {
  background: #0f4c3a;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(15, 76, 58, 0.2);
}

.btn-view-details:hover {
  background: #0a382b;
  box-shadow: 0 6px 18px rgba(15, 76, 58, 0.3);
  transform: translateY(-1px);
}

/* Other Supporting Organizers Grid */
.other-organizers-wrapper .organizer-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.organizer-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.organizer-card:hover {
  border-color: #0f4c3a;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.organizer-logo-wrapper {
  width: 70px;
  height: 70px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 12px;
  padding: 8px;
}

.organizer-logo-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.organizer-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.3;
}

.organizer-card p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

/* Responsive Media Queries for Organizers */
@media (max-width: 992px) {
  .main-organizers-grid {
    grid-template-columns: 1fr;
  }
  .other-organizers-wrapper .organizer-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .other-organizers-wrapper .organizer-cards-grid {
    grid-template-columns: 1fr;
  }
  .main-organizer-card {
    padding: 22px;
  }
  .main-org-header {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Last Year Achievements Section Styling
   ========================================================================== */
.achievements,
.achievements-section {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
}

.achievements-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.achievements-heading h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin: 10px 0 16px;
}

.achievements-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Stat Highlights Grid */
.achievements-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.achieve-stat-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.achieve-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.08);
}

.achieve-stat-card .stat-icon {
  font-size: 2.4rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section-tint);
  border-radius: 12px;
  flex-shrink: 0;
}

.achieve-stat-card .stat-details {
  display: flex;
  flex-direction: column;
}

.achieve-stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.achieve-stat-card .stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* Gallery Grid (14 Images) */
.achievements-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.achieve-gallery-card {
  background: var(--bg-light-alt);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.35s ease;
}

.achieve-gallery-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.achieve-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e2e8f0;
}

.achieve-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.achieve-gallery-card:hover .achieve-img {
  transform: scale(1.08);
}

.achieve-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.achieve-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.achieve-gallery-card:hover .achieve-overlay {
  opacity: 1;
}

.zoom-icon {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--primary);
  padding: 8px 16px;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.achieve-gallery-card:hover .zoom-icon {
  transform: translateY(0);
}

.achieve-card-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #ffffff;
}

.achieve-card-content h4 {
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.35;
}

.achieve-card-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Memories & Narrative Block */
.achievements-memories-block {
  background: var(--bg-section-tint);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 24px;
  padding: 44px 36px;
  margin-top: 20px;
}

.memories-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 36px;
}

.memory-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.memories-header h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.memories-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

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

.memory-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.memory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.07);
}

.memory-icon-box {
  font-size: 2rem;
  margin-bottom: 14px;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--card-border);
}

.memory-card h4 {
  font-size: 1.12rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.memory-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Lightbox Modal */
.achieve-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.achieve-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 2001;
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  animation: lightboxScale 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightboxScale {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2005;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  color: #ffffff;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close:hover {
  background: var(--primary);
  transform: scale(1.08);
}

.lightbox-nav {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 2005;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.65);
  color: #ffffff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover {
  background: var(--primary);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-nav.prev {
  left: 14px;
}

.lightbox-nav.next {
  right: 14px;
}

.lightbox-img-container {
  width: 100%;
  max-height: 60vh;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img {
  max-width: 100%;
  max-height: 60vh;
  object-fit: contain;
}

.lightbox-caption {
  padding: 20px 24px;
  background: #ffffff;
  position: relative;
}

.lightbox-caption h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.lightbox-caption p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.lightbox-counter {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-section-tint);
  padding: 2px 10px;
  border-radius: 12px;
}

/* Responsiveness for Achievements */
@media (max-width: 1100px) {
  .achievements-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .achievements-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .achievements-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .memories-grid {
    grid-template-columns: 1fr;
  }
  .achievements-memories-block {
    padding: 30px 20px;
  }
  .achievements-heading h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 520px) {
  .achievements-stats-grid {
    grid-template-columns: 1fr;
  }
  .achievements-gallery-grid {
    grid-template-columns: 1fr;
  }
  .lightbox-content {
    max-width: 95vw;
  }
}


