/*
 * StartupX Premium Ecosystem CSS Design System
 * Theme: Premium Corporate & Modern Classic
 * Color Palette: Matte Black (#111111), Deep Navy (#0B1F3A), White (#FFFFFF), Metallic Gold (#D4AF37)
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Sora:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --color-bg-base: #111111;
  --color-bg-darker: #080808;
  --color-bg-navy: #0B1F3A;
  --color-gold: #D4AF37;
  --color-gold-hover: #F3E5AB;
  --color-gold-glow: rgba(212, 175, 55, 0.25);
  --color-white: #FFFFFF;
  --color-text-primary: #F3F4F6;
  --color-text-secondary: #9CA3AF;
  --color-text-muted: #6B7280;
  --color-glass-bg: rgba(11, 31, 58, 0.35);
  --color-glass-border: rgba(212, 175, 55, 0.15);
  --color-glass-border-hover: rgba(212, 175, 55, 0.4);

  --font-heading: 'Sora', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  --max-width: 1280px;
  --header-height: 80px;
}

/* --- Base & Reset Rules --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-base);
  color: var(--color-text-primary);
  font-family: var(--font-body);
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at 50% 0%, var(--color-bg-navy) 0%, var(--color-bg-base) 80%);
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: #222;
  border: 2px solid var(--color-bg-base);
  border-radius: 5px;
}

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

/* Selection Highlight */
::selection {
  background-color: var(--color-gold);
  color: var(--color-bg-base);
}

/* --- Layout & Typography Utilities --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.font-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

p {
  color: var(--color-text-secondary);
}

.text-gradient-gold {
  background: linear-gradient(135deg, var(--color-white) 30%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--color-gold);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: var(--color-glass-border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--color-gold-glow);
  transform: translateY(-5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold) 0%, #B8860B 100%);
  color: var(--color-bg-base);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold-hover) 0%, var(--color-gold) 100%);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

/* Section Header Styling */
.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  border: 1px solid var(--color-glass-border);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.05);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  max-width: 650px;
  margin: 0 auto;
  color: var(--color-text-secondary);
}

/* --- Navigation Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  height: 70px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-white);
}

.logo svg {
  height: 32px;
  width: auto;
}

.logo span {
  background: linear-gradient(135deg, var(--color-white) 50%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2rem);
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 31, 58, 0.4) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.hero-tag span.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  animation: pulse-gold 2s infinite;
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Statistics Mini-Grid in Hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
}

.hero-stat-item h3 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.hero-stat-item p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual Graphic */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-sphere {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--color-bg-navy) 0%, #111 100%);
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 0 50px rgba(11, 31, 58, 0.6), inset 0 0 40px rgba(212, 175, 55, 0.1);
  position: relative;
  overflow: hidden;
  animation: float-slow 6s ease-in-out infinite;
}

.visual-sphere img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.visual-sphere::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 175, 55, 0.15);
  animation: spin-slow 20s linear infinite;
}

.visual-overlay-card {
  position: absolute;
  bottom: 10px;
  left: -40px;
  background: rgba(17, 17, 17, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-glass-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: float-delayed 6s ease-in-out infinite;
}

.visual-overlay-card .icon-holder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
}

.visual-overlay-card .text-holder h4 {
  font-size: 0.9rem;
  font-weight: 700;
}

.visual-overlay-card .text-holder p {
  font-size: 0.75rem;
  margin: 0;
}

/* --- About StartupX Section --- */
.about-section {
  padding: 8rem 0;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-graphics {
  background: radial-gradient(circle, rgba(11, 31, 58, 0.6) 0%, transparent 70%);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.experience-badge-large {
  background: var(--color-glass-bg);
  border: 1px solid var(--color-gold);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-badge-large h2 {
  font-size: 3rem;
  color: var(--color-gold);
}

.experience-badge-large p {
  color: var(--color-white);
  font-weight: 600;
  margin-top: 0.5rem;
}

.about-narrative h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-narrative p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Two Communities Grid */
.communities-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.community-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
}

.community-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-gold);
}

.community-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
}

.community-card h3 {
  font-size: 1.5rem;
  color: var(--color-white);
}

.community-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--color-gold);
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.community-features {
  list-style: none;
}

.community-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  font-size: 0.975rem;
}

.community-features li::before {
  content: '✓';
  color: var(--color-gold);
  font-weight: bold;
}

/* --- What We Do (Cards) --- */
.what-we-do-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-darker) 100%);
  position: relative;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(11, 31, 58, 0.5) 0%, rgba(17, 17, 17, 0.8) 100%);
  border-color: var(--color-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-gold-glow);
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background: var(--color-gold);
  color: var(--color-bg-base);
  box-shadow: 0 0 15px var(--color-gold-glow);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.95rem;
}

/* --- AI Education (Branching Universe) --- */
.ai-section {
  padding: 8rem 0;
  position: relative;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.ai-book-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 3D Book Layout Container */
.book-wrapper {
  perspective: 1000px;
}

.book-mockup {
  width: 260px;
  height: 380px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-20deg) rotateX(10deg);
  box-shadow: 15px 20px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.6s ease;
}

.book-mockup:hover {
  transform: rotateY(-5deg) rotateX(5deg);
}

.book-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #050d18 0%, #0c1a2f 100%);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  z-index: 10;
}

.book-cover-logo {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.1em;
}

.book-cover-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-top: 3rem;
}

.book-cover-title span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-top: 0.5rem;
}

.book-cover-footer {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.book-spine {
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  height: 100%;
  background: #040810;
  transform: rotateY(-90deg);
  transform-origin: right;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: inset -5px 0 10px rgba(0, 0, 0, 0.8);
}

.book-pages {
  position: absolute;
  top: 5px;
  left: 10px;
  width: 250px;
  height: 370px;
  background: #e6e6e6;
  transform: translateZ(-10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  z-index: -1;
}

.ai-details h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.ai-chapters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.chapter-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
}

.chapter-item:hover {
  border-color: var(--color-gold);
  color: var(--white);
  background: rgba(212, 175, 55, 0.03);
}

.chapter-item svg {
  color: var(--color-gold);
}

/* --- Why Students Choose StartupX --- */
.why-section {
  padding: 8rem 0;
  background: rgba(11, 31, 58, 0.1);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.why-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-feature-item {
  display: flex;
  gap: 1.25rem;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.why-feature-item:hover {
  border-color: var(--color-gold);
  transform: translateX(5px);
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
}

.why-feature-text h4 {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 0.35rem;
}

.why-feature-text p {
  font-size: 0.925rem;
}

/* --- For Startups Section --- */
.startups-section {
  padding: 8rem 0;
}

.startups-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
  align-items: center;
}

.startups-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.startups-list {
  list-style: none;
  margin: 2rem 0;
}

.startups-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.startups-list li svg {
  color: var(--color-gold);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* --- Community Impact (Counters) --- */
.impact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--color-bg-navy) 0%, var(--color-bg-base) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.impact-item {
  position: relative;
}

.impact-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.08);
}

.impact-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.impact-label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Upcoming Events Section --- */
.events-section {
  padding: 8rem 0;
  position: relative;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.event-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  background: var(--color-glass-bg);
  border: 1px solid var(--color-glass-border);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.event-image-container {
  width: 100%;
  height: 190px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.event-card:hover .event-image {
  transform: scale(1.05);
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.event-card:hover::before {
  opacity: 1;
}

.event-card:hover {
  border-color: var(--color-glass-border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px var(--color-gold-glow);
  transform: translateY(-5px);
}

.event-type-badge {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.event-type-badge.hackathon {
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.event-type-badge.workshop {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.event-type-badge.mixer {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.event-title {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.event-desc {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.event-meta-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.meta-item svg {
  flex-shrink: 0;
  color: var(--color-gold);
}

.meta-item span {
  font-size: 0.9rem;
  color: var(--color-text-primary);
  font-family: var(--font-body);
}

.event-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.event-card:hover .event-btn {
  background: var(--color-gold);
  color: var(--color-bg-base);
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* --- Gallery Sections --- */
.gallery-section {
  padding: 8rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(11, 31, 58, 0.9) 0%, rgba(17, 17, 17, 0.2) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition-fast);
}

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

.gallery-overlay h4 {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: var(--color-gold);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 8, 8, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 85%;
  max-height: 80%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100vh;
  border-radius: 8px;
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

.lightbox-caption {
  text-align: center;
  color: var(--color-text-secondary);
  margin-top: 1rem;
  font-family: var(--font-heading);
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 8rem 0;
  background: var(--color-bg-darker);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #222;
  border: 1px solid var(--color-gold);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 0.95rem;
  color: var(--color-white);
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--color-gold);
}

.testimonial-content {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: 1.6;
  position: relative;
}

.testimonial-content::before {
  content: '“';
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.15);
  position: absolute;
  top: -20px;
  left: -15px;
}

/* --- Partners Marquee Ticker --- */
.partners-section {
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.partners-section h3 {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2.5rem;
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  gap: 5rem;
  padding-right: 5rem;
}

.marquee-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 45px;
  opacity: 0.45;
  transition: var(--transition-fast);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.15rem;
}

.marquee-logo:hover {
  opacity: 0.95;
  color: var(--color-gold);
}

.marquee-logo svg {
  height: 32px;
  fill: currentColor;
}

/* --- Blog/News Section --- */
.blog-section {
  padding: 8rem 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  transition: var(--transition-smooth);
}

.blog-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-body {
  padding: 2rem;
}

.blog-meta {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-title {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-text {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.blog-link:hover {
  color: var(--color-gold-hover);
}

/* --- Join StartupX (Call To Action) --- */
.join-section {
  padding: 8rem 0;
  background: radial-gradient(circle at 50% 50%, var(--color-bg-navy) 0%, var(--color-bg-base) 100%);
  position: relative;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.join-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.join-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.join-card h3 {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.join-card p {
  font-size: 0.95rem;
  margin-bottom: 2rem;
  min-height: 70px;
}

/* --- Contact & Newsletter --- */
.contact-section {
  padding: 8rem 0;
  background: var(--color-bg-darker);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4.5rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-info-list {
  list-style: none;
  margin: 2.5rem 0;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.contact-info-list li svg {
  color: var(--color-gold);
  flex-shrink: 0;
}

.newsletter-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  margin-top: 3rem;
}

.newsletter-box h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.newsletter-box p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input {
  flex-grow: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-form input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.newsletter-form button {
  padding: 0.75rem 1.5rem;
}

/* Contact Form Styling */
.contact-form-card {
  padding: 3rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(39, 174, 96, 0.15);
  border: 1px solid #27ae60;
  color: #2ecc71;
}

.form-status.error {
  display: block;
  background: rgba(192, 57, 43, 0.15);
  border: 1px solid #c0392b;
  color: #e74c3c;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 5rem 0 2.5rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1.25rem;
  font-size: 0.925rem;
}

.footer-nav-col h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.footer-nav-col ul {
  list-style: none;
}

.footer-nav-col ul li {
  margin-bottom: 0.75rem;
}

.footer-nav-col ul li a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
}

.footer-nav-col ul li a:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background: var(--color-gold);
  color: var(--color-bg-base);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-terms {
  display: flex;
  gap: 1.5rem;
}

.footer-terms a {
  text-decoration: none;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-terms a:hover {
  color: var(--color-gold);
}

/* --- Floating AI Chatbot Assistant --- */
.chatbot-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chatbot-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, #B8860B 100%);
  color: var(--color-bg-base);
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.chatbot-btn:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.chatbot-btn svg {
  width: 28px;
  height: 28px;
  transition: var(--transition-fast);
}

.chatbot-window {
  width: 360px;
  height: 500px;
  background: #111;
  border: 1px solid var(--color-gold);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  display: none;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.chatbot-window.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--color-bg-navy) 0%, #061122 100%);
  border-bottom: 1px solid var(--color-glass-border);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.chatbot-header-text h4 {
  font-size: 0.95rem;
  color: var(--color-white);
}

.chatbot-header-text p {
  font-size: 0.75rem;
  color: var(--color-gold);
  margin: 0;
}

.chatbot-close-btn {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.chatbot-messages {
  flex-grow: 1;
  padding: 1.25rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: radial-gradient(circle at center, rgba(11, 31, 58, 0.1) 0%, var(--color-bg-base) 100%);
}

.chat-bubble {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  word-wrap: break-word;
}

.chat-bubble.bot {
  background: var(--color-glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-bubble.user {
  background: linear-gradient(135deg, var(--color-gold) 0%, #B8860B 100%);
  color: var(--color-bg-base);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  font-weight: 500;
}

.chatbot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: #111;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.chatbot-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-text-secondary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.chatbot-chip:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.chatbot-input-container {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #161616;
}

.chatbot-input-container input {
  flex-grow: 1;
  background: none;
  border: none;
  color: var(--color-white);
  padding: 1rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.chatbot-send-btn {
  background: none;
  border: none;
  color: var(--color-gold);
  padding: 0 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-send-btn:hover {
  color: var(--color-gold-hover);
}

/* Floating WhatsApp Button */
.whatsapp-widget {
  position: fixed;
  bottom: 105px;
  right: 30px;
  z-index: 999;
}

.whatsapp-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* --- Scroll Animation Classes (triggered by JS) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left {
  transform: translateX(-50px);
}

.reveal.reveal-right {
  transform: translateX(50px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- Animation Keyframes --- */
@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@keyframes float-slow {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes float-delayed {

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

  50% {
    transform: translateY(10px);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 2rem auto;
  }

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

  .hero-stats {
    max-width: 600px;
    margin: 3.5rem auto 0 auto;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .communities-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .what-we-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ai-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .startups-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .impact-item:nth-child(3)::after {
    display: none;
  }

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

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

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

  .join-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {

  /* Mobile Menu Styles */
  .header-container {
    position: relative;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #111;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    transition: var(--transition-smooth);
    z-index: 999;
  }

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

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-actions {
    display: none;
  }

  .what-we-do-grid {
    grid-template-columns: 1fr;
  }

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

  .impact-item::after {
    display: none !important;
  }

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

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

  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .chatbot-window {
    width: calc(100vw - 40px);
    right: 20px;
    bottom: 90px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: 50px;
    margin-bottom: 0.5rem;
  }
}