/* ============================================
   ACTIVEPULSE CLUB - MODERN GRADIENT NEUMORPHIC DESIGN
   Design System: Neumorphism + Asymmetric Balance
   Color Scheme: Gradient
   Animation Style: Particle Animation
   ============================================ */

/* ============================================
   CSS VARIABLES - GRADIENT THEME
   ============================================ */
:root {
  /* Primary Gradient Colors */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-success: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  --gradient-dark: linear-gradient(135deg, #2d3561 0%, #1a1f3a 100%);
  
  /* Solid Colors for Text and Borders */
  --color-primary: #667eea;
  --color-primary-dark: #5568d3;
  --color-secondary: #f5576c;
  --color-secondary-dark: #e34555;
  --color-accent: #4facfe;
  --color-accent-dark: #3a9ae7;
  --color-success: #43e97b;
  --color-dark: #2d3561;
  --color-darker: #1a1f3a;
  
  /* Neutral Colors */
  --color-white: #ffffff;
  --color-light-gray: #f8f9fa;
  --color-gray: #e9ecef;
  --color-medium-gray: #6c757d;
  --color-text-dark: #2c3e50;
  --color-text-light: #6c757d;
  
  /* Neumorphic Shadows */
  --shadow-neumorphic-light: 8px 8px 16px rgba(163, 177, 198, 0.6), 
                              -8px -8px 16px rgba(255, 255, 255, 0.9);
  --shadow-neumorphic-dark: 8px 8px 16px rgba(0, 0, 0, 0.3), 
                             -8px -8px 16px rgba(255, 255, 255, 0.1);
  --shadow-neumorphic-inset: inset 6px 6px 12px rgba(163, 177, 198, 0.4), 
                              inset -6px -6px 12px rgba(255, 255, 255, 0.8);
  --shadow-hover: 0 12px 40px rgba(102, 126, 234, 0.4);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.1);
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Source Sans Pro', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-xxl: 4rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* ============================================
   GOOGLE FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: var(--transition-normal);
}

a:hover {
  color: var(--color-primary-dark);
}

/* ============================================
   BUTTON STYLES - GLOBAL
   ============================================ */
.btn,
button:not(.navbar-toggler):not(.accordion-button),
input[type='submit'] {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary-glow {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.btn-primary-glow:hover {
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
  transform: translateY(-3px);
  color: var(--color-white);
}

.btn-secondary-glow {
  background: var(--gradient-secondary);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(245, 87, 108, 0.4);
}

.btn-secondary-glow:hover {
  box-shadow: 0 12px 32px rgba(245, 87, 108, 0.6);
  transform: translateY(-3px);
  color: var(--color-white);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-3px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.125rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-normal);
}

.navbar {
  padding: var(--spacing-sm) 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: var(--transition-normal);
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.nav-link {
  font-weight: 600;
  color: var(--color-dark) !important;
  padding: var(--spacing-xs) var(--spacing-md) !important;
  margin: 0 var(--spacing-xs);
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  transition: var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--color-primary) !important;
  transform: translateY(-2px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  padding: var(--spacing-xxl) 0;
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
  z-index: 1;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-xl);
}

.hero-title {
  color: var(--color-white);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  color: var(--color-white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  color: var(--color-white);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
  animation: fadeInUp 1.2s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease-out 0.6s both;
}

/* Page Hero (smaller version for internal pages) */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: var(--spacing-xxl) 0;
  margin-top: 70px;
}

.page-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(118, 75, 162, 0.9) 0%, rgba(102, 126, 234, 0.9) 100%);
}

.page-title {
  color: var(--color-white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-sm);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  color: var(--color-white);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--color-white);
}

.content-block {
  padding: var(--spacing-lg);
}

.content-heading {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.content-text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition-slow);
}

.image-container:hover img {
  transform: scale(1.05);
}

.parallax-image {
  box-shadow: var(--shadow-neumorphic-light);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--gradient-primary);
  padding: var(--spacing-xl) 0;
}

.stat-widget {
  text-align: center;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
}

.stat-widget:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-white);
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   ACTIVITIES SECTION
   ============================================ */
.activities-section {
  background: var(--color-light-gray);
}

.activity-card,
.blog-card,
.team-card {
  height: 100%;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neumorphic-light);
  overflow: hidden;
  transition: all var(--transition-normal);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.activity-card:hover,
.blog-card:hover,
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
  margin: 0 auto;
}

.card-image:hover img {
  transform: scale(1.1);
}

.card-content {
  padding: var(--spacing-lg);
  text-align: center;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.card-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.card-role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   METHODOLOGY / TIMELINE SECTION
   ============================================ */
.methodology-section {
  background: var(--color-white);
}

.timeline-container {
  position: relative;
  padding: var(--spacing-lg) 0;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: var(--spacing-xl);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  width: 30px;
  height: 30px;
  background: var(--gradient-accent);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.2);
  z-index: 2;
}

.timeline-content {
  width: 45%;
  padding: var(--spacing-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-neumorphic-light);
  transition: var(--transition-normal);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

.timeline-content:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--color-dark);
}

.timeline-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  background: var(--color-white);
}

.team-card .card-image {
  height: 350px;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  background: var(--color-light-gray);
}

.blog-meta {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--spacing-sm);
}

.read-more-link {
  display: inline-block;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 3px;
  transition: var(--transition-normal);
}

.read-more-link::after {
  content: '→';
  margin-left: var(--spacing-xs);
  transition: var(--transition-normal);
}

.read-more-link:hover {
  color: var(--color-primary-dark);
  transform: translateX(5px);
}

.read-more-link:hover::after {
  margin-left: var(--spacing-sm);
}

/* ============================================
   WEBINARS SECTION
   ============================================ */
.webinars-section {
  background: var(--color-white);
}

.webinar-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-neumorphic-light);
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.webinar-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.webinar-date {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--spacing-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.resources-section {
  background: var(--color-light-gray);
}

.resource-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-neumorphic-light);
  transition: var(--transition-normal);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.resource-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.external-link {
  display: inline-block;
  margin-top: var(--spacing-md);
  padding: 12px 24px;
  background: var(--gradient-accent);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.external-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
  color: var(--color-white);
}

/* ============================================
   INFO CARDS
   ============================================ */
.info-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-neumorphic-light);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.info-card-content {
  width: 100%;
}

.info-card-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
}

.info-card-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

.mission-card {
  border-top: 4px solid var(--color-primary);
}

.vision-card {
  border-top: 4px solid var(--color-secondary);
}

.value-card {
  border-left: 4px solid var(--color-accent);
}

.contact-info-card {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.contact-info-card .info-card-title,
.contact-info-card .info-card-text {
  color: var(--color-white);
}

.location-card {
  background: var(--color-light-gray);
  border: 2px solid var(--color-gray);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--color-light-gray);
}

.contact-form-container {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-neumorphic-light);
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--spacing-xs);
  font-size: 1rem;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-gray);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  transition: var(--transition-normal);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

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

select.form-control {
  cursor: pointer;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  background: var(--color-white);
}

.accordion-item {
  border: none;
  margin-bottom: var(--spacing-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-neumorphic-light);
  overflow: hidden;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark);
  background: var(--color-white);
  padding: var(--spacing-md) var(--spacing-lg);
  border: none;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23667eea'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: var(--spacing-lg);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ============================================
   LEGAL PAGES (PRIVACY & TERMS)
   ============================================ */
.legal-content {
  background: var(--color-white);
  padding-top: 100px;
}

.legal-document {
  background: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
}

.legal-heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 2px solid var(--color-gray);
}

.legal-text {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  padding: var(--spacing-xxl) var(--spacing-md);
  margin-top: 70px;
}

.success-content {
  background: var(--color-white);
  padding: var(--spacing-xxl);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 600px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--color-white);
  margin: 0 auto var(--spacing-lg);
  animation: scaleIn 0.5s ease-out;
}

.success-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.success-text {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-md);
}

.success-subtext {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xl);
}

.success-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   ABOUT US PAGE SPECIFIC
   ============================================ */
.about-story,
.mission-vision,
.values-section,
.impact-section {
  padding: var(--spacing-xxl) 0;
}

.about-story {
  background: var(--color-white);
}

.mission-vision {
  background: var(--color-light-gray);
}

.values-section {
  background: var(--color-white);
}

.impact-section {
  background: var(--color-light-gray);
}

.join-movement {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: var(--spacing-xxl) 0;
}

.join-movement .section-title,
.join-movement .section-subtitle {
  color: var(--color-white);
}

.join-movement .section-title {
  -webkit-text-fill-color: var(--color-white);
}

/* ============================================
   CONTACT PAGE SPECIFIC
   ============================================ */
.contact-info-section {
  background: var(--color-white);
}

.main-contact-section {
  background: var(--color-light-gray);
}

.locations-section {
  background: var(--color-white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--gradient-dark);
  color: var(--color-white);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

.footer-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-md);
}

.footer-heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: var(--transition-normal);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.social-links a {
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: var(--color-white);
}

.footer-bottom {
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Particle Animation */
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  animation: particle-float 3s infinite ease-in-out;
}

@keyframes particle-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(20px, -20px) scale(1.2);
    opacity: 0.8;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-sm);
    box-shadow: var(--shadow-card);
  }
  
  .nav-link {
    margin: var(--spacing-xs) 0;
  }
  
  .timeline-container::before {
    left: 30px;
  }
  
  .timeline-marker {
    left: 30px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
  }
  
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;
  }
  
  .hero-section,
  .page-hero {
    min-height: 70vh;
  }
  
  .hero-buttons,
  .success-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .stat-widget {
    margin-bottom: var(--spacing-md);
  }
  
  .card-image {
    height: 200px;
  }
  
  .team-card .card-image {
    height: 280px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    padding: var(--spacing-md);
  }
  
  .legal-document {
    padding: var(--spacing-md);
  }
  
  .success-content {
    padding: var(--spacing-lg);
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-secondary {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

.shadow-neumorphic {
  box-shadow: var(--shadow-neumorphic-light);
}

.shadow-hover {
  box-shadow: var(--shadow-hover);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
[data-sr] {
  visibility: hidden;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-sm) var(--spacing-md);
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .site-header,
  .site-footer,
  .hero-section,
  .page-hero {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .legal-document {
    box-shadow: none;
  }
}
/* ============================================
   ABOUT PAGE - STORY SECTION
   ============================================ */
.story-section {
  background: var(--color-white);
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-lg);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.content-paragraph {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-md);
}

.image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.03);
}

/* ============================================
   ABOUT PAGE - MISSION SECTION
   ============================================ */
.mission-section {
  background: var(--color-light-gray);
}

.mission-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-sm);
}

.mission-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ============================================
   ABOUT PAGE - LEADERSHIP SECTION
   ============================================ */
.leadership-section {
  background: var(--color-white);
}

.team-card-detailed {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-neumorphic-light);
  transition: var(--transition-normal);
  height: 100%;
}

.team-card-detailed:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.team-card-detailed .card-image {
  height: 300px;
  overflow: hidden;
}

.team-card-detailed .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card-detailed:hover .card-image img {
  transform: scale(1.05);
}

.team-card-detailed .card-content {
  padding: var(--spacing-lg);
}

.card-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

/* ============================================
   ABOUT PAGE - ACHIEVEMENTS
   ============================================ */
.achievements-section {
  background: var(--color-light-gray);
}

.achievement-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-neumorphic-light);
  height: 100%;
  transition: var(--transition-normal);
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.achievement-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--spacing-md);
}

.achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-gray);
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  padding-left: 1.5rem;
}

.achievement-list li:last-child {
  border-bottom: none;
}

.achievement-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================
   ABOUT PAGE - TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--color-white);
}

.testimonial-card {
  background: var(--color-light-gray);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: var(--transition-normal);
  text-align: center;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-image {
  margin-bottom: var(--spacing-md);
}

.testimonial-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 4px solid var(--color-primary);
}

.testimonial-content {
  text-align: center;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  font-style: italic;
  margin-bottom: var(--spacing-md);
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

/* ============================================
   ABOUT PAGE - GALLERY
   ============================================ */
.gallery-section {
  background: var(--color-light-gray);
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

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

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

/* ============================================
   ABOUT & CONTACTS - CTA SECTION
   ============================================ */
.cta-section {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.cta-title {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--spacing-md);
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}

/* ============================================
   CONTACTS PAGE - INFO ICON
   ============================================ */
.info-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.contact-info-card .info-icon {
  color: var(--color-white);
}

/* ============================================
   CONTACTS PAGE - FORM SECTION
   ============================================ */
.contact-form-section {
  background: var(--color-light-gray);
}

/* ============================================
   CONTACTS PAGE - HOURS & MAP
   ============================================ */
.operating-hours-section {
  background: var(--color-white);
}

.hours-card {
  border-left: 4px solid var(--color-primary);
}

.hours-list {
  margin-top: var(--spacing-md);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-gray);
}

.hours-row:last-child {
  border-bottom: none;
}

.day-label {
  font-weight: 600;
  color: var(--color-dark);
}

.time-label {
  color: var(--color-text-light);
  font-weight: 500;
}

.additional-info-card {
  border-left: 4px solid var(--color-accent);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 0.6rem 0;
  color: var(--color-text-light);
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.7;
}

.info-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.map-section {
  background: var(--color-light-gray);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
  border: none;
}

/* ============================================
   ABOUT & CONTACTS - RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .hours-row {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
  }

  .gallery-item img {
    height: 200px;
  }

  .team-card-detailed .card-image {
    height: 240px;
  }
}
