:root {
  /* Primary Colors */
  --color-primary: #2962ff;
  --color-primary-dark: #0039cb;
  --color-primary-light: #768fff;
  
  /* Secondary Colors */
  --color-secondary: #ff6d00;
  --color-secondary-dark: #c43e00;
  --color-secondary-light: #ff9e40;
  
  /* Accent Colors */
  --color-accent: #00bfa5;
  --color-accent-dark: #008e76;
  --color-accent-light: #5df2d6;
  
  /* Background Colors */
  --color-bg-light: #f5f7fa;
  --color-bg-dark: #1c2331;
  --color-bg-card: rgba(255, 255, 255, 0.85);
  
  /* Text Colors */
  --color-text-dark: #212121;
  --color-text-light: #ffffff;
  --color-text-muted: #757575;
  
  /* Glass Effect Colors */
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-glass: 0 8px 32px 0 var(--glass-shadow);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Font Sizes */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
  --font-size-hero: 3.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: var(--font-size-md);
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-text-dark);
}

h1 {
  font-size: var(--font-size-hero);
}

h2 {
  font-size: var(--font-size-xxl);
}

h3 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: var(--space-md);
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

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

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

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

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

.bg-light {
  background-color: var(--color-bg-light);
}

.bg-dark {
  background-color: var(--color-bg-dark);
}

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

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

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

.d-flex {
  display: flex;
}

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

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

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.full-width {
  width: 100%;
}

.my-1 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-md);
}

.my-2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.my-3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.mb-1 {
  margin-bottom: var(--space-md);
}

.mb-2 {
  margin-bottom: var(--space-lg);
}

.mb-3 {
  margin-bottom: var(--space-xl);
}

.mt-1 {
  margin-top: var(--space-md);
}

.mt-2 {
  margin-top: var(--space-lg);
}

.mt-3 {
  margin-top: var(--space-xl);
}

/* Glass Effect */
.glass-effect {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  padding: var(--space-lg);
}

/* Button Styles */
.btn, button, input[type='submit'] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: var(--font-size-md);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  background-color: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn:hover, button:hover, input[type='submit']:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:active, button:active, input[type='submit']:active {
  transform: translateY(1px);
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-text-light);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-text-light);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: var(--font-size-lg);
}

/* Form Styles */
.glass-input {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--color-text-dark);
  width: 100%;
  transition: all var(--transition-normal);
}

.glass-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(41, 98, 255, 0.2);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

/* Card Styles */
.card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

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

.card-content {
  padding: var(--space-lg);
  flex: 1;
  width: 100%;
}

/* Section Styles */
section {
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  color: var(--color-text-dark);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  margin: var(--space-sm) auto 0;
  border-radius: var(--radius-full);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  color: var(--color-text-muted);
}

/* Header Styles */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-glass);
  transition: all var(--transition-normal);
}

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

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

.logo img {
  max-height: 60px;
  width: auto;
}

.desktop-nav ul {
  display: flex;
}

.desktop-nav ul li {
  margin-left: var(--space-md);
}

.desktop-nav ul li a {
  color: var(--color-text-dark);
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) var(--space-sm);
  transition: color var(--transition-fast);
}

.desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: width var(--transition-normal);
}

.desktop-nav ul li a:hover {
  color: var(--color-primary);
}

.desktop-nav ul li a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--color-text-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--color-bg-light);
  box-shadow: var(--shadow-md);
  padding: var(--space-lg);
  z-index: 999;
  transform: translateY(-100%);
  transition: transform var(--transition-normal);
}

.mobile-nav.active {
  transform: translateY(0);
}

.mobile-nav ul li {
  margin-bottom: var(--space-md);
}

.mobile-nav ul li a {
  color: var(--color-text-dark);
  font-weight: 500;
  font-size: var(--font-size-lg);
  display: block;
  padding: var(--space-sm) 0;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  position: relative;
}

.parallax-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-content {
  padding: var(--space-xxl) 0;
  z-index: 2;
}

.hero-title {
  color: var(--color-text-light);
  font-size: var(--font-size-hero);
  margin-bottom: var(--space-md);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease forwards;
}

.hero-subtitle {
  color: var(--color-text-light);
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  animation: fadeIn 1s ease forwards 0.6s;
}

/* Mission Section */
.mission-section {
  background-color: var(--color-bg-light);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-xl);
  align-items: center;
}

.mission-image {
  text-align: center;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.mission-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.mission-text h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

/* Statistics Section */
.statistics-section {
  background: var(--gradient-primary);
  color: var(--color-text-light);
}

.statistics-section .section-title {
  color: var(--color-text-light);
}

.statistics-section .section-title::after {
  background: var(--color-text-light);
}

.statistics-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--space-lg);
}

.statistic-card {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  transition: transform var(--transition-normal);
}

.statistic-card:hover {
  transform: translateY(-10px);
}

.statistic-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.statistic-label {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
}

.statistics-description {
  text-align: center;
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  color: var(--color-text-light);
}

/* Team Section */
.team-section {
  background-color: var(--color-bg-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-gap: var(--space-lg);
}

.team-card {
  text-align: center;
}

.team-card .card-image {
  height: 350px;
  width: 100%;
  overflow: hidden;
}

.team-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--color-primary);
}

.team-card .position {
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.team-card .bio {
  color: var(--color-text-muted);
}

/* Success Stories Section */
.success-stories-section {
  background-color: var(--color-bg-light);
}

.success-stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: var(--space-xl);
}

.success-story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-story-card .card-image {
  height: 250px;
  width: 100%;
  overflow: hidden;
}

.success-story-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.success-story-card:hover .card-image img {
  transform: scale(1.05);
}

.success-story-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.success-story-card p {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.success-story-card .btn {
  margin-top: auto;
}

/* Clientele Section */
.clientele-section {
  background-color: var(--color-bg-light);
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  grid-gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  justify-items: center;
}

.client-logo {
  height: 120px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.client-logo:hover {
  transform: scale(1.1);
}

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

.client-testimonials {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider {
  position: relative;
}

.testimonial {
  text-align: center;
  padding: var(--space-lg);
}

.testimonial-text {
  font-style: italic;
  font-size: var(--font-size-lg);
  color: var(--color-text-dark);
  margin-bottom: var(--space-lg);
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--color-primary-light);
  line-height: 0;
  position: absolute;
}

.testimonial-text::before {
  top: 15px;
  left: -15px;
}

.testimonial-text::after {
  bottom: -10px;
  right: -15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: var(--space-md);
  box-shadow: var(--shadow-md);
}

.testimonial-author h4 {
  margin-bottom: 0;
  color: var(--color-primary);
}

.testimonial-author p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

/* Resources Section */
.resources-section {
  background-color: var(--color-bg-light);
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: var(--space-lg);
}

.resource-card {
  text-align: center;
  padding: var(--space-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-text-dark);
}

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

.resource-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--space-md);
  transition: transform var(--transition-normal);
}

.resource-card:hover .resource-icon {
  transform: scale(1.1);
}

.resource-card h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.resource-card p {
  color: var(--color-text-muted);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--color-bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: var(--space-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.image-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--space-md);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: var(--color-text-light);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.gallery-overlay h3 {
  color: var(--color-text-light);
  margin-bottom: var(--space-xs);
}

.gallery-overlay p {
  margin-bottom: 0;
}

/* Events Section */
.events-section {
  background-color: var(--color-bg-light);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: var(--space-xl);
}

.event-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-card .card-image {
  position: relative;
  height: 250px;
  width: 100%;
  overflow: hidden;
}

.event-date {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background-color: var(--color-secondary);
  color: var(--color-text-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.event-date .day {
  display: block;
  font-size: var(--font-size-xl);
  font-weight: 700;
}

.event-date .month {
  display: block;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
}

.event-details {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.event-details span {
  display: flex;
  align-items: center;
}

.event-details i {
  margin-right: var(--space-xs);
  color: var(--color-secondary);
}

.event-description {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

/* Media Section */
.media-section {
  background-color: var(--color-bg-light);
}

.media-grid {
  display: grid;
  grid-gap: var(--space-lg);
}

.media-item {
  display: flex;
  align-items: center;
  padding: var(--space-lg);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.media-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.media-logo {
  flex: 0 0 180px;
  margin-right: var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.media-content {
  flex: 1;
}

.media-content h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.media-date {
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.media-excerpt {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.media-link {
  color: var(--color-secondary);
  font-weight: 500;
  position: relative;
  transition: color var(--transition-fast);
}

.media-link::after {
  content: '→';
  margin-left: var(--space-xs);
  transition: margin-left var(--transition-fast);
}

.media-link:hover {
  color: var(--color-secondary-dark);
}

.media-link:hover::after {
  margin-left: var(--space-sm);
}

/* Customer Stories Section */
.customer-stories-section {
  background-color: var(--color-bg-light);
}

.stories-container {
  max-width: 1000px;
  margin: 0 auto;
}

.story-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.story-tab {
  padding: var(--space-md) var(--space-lg);
  background-color: transparent;
  border: none;
  border-bottom: 2px solid var(--color-text-muted);
  color: var(--color-text-muted);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.story-tab.active, .story-tab:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.story-content {
  position: relative;
  overflow: hidden;
}

.story-panel {
  display: none;
  animation: fadeIn var(--transition-normal);
}

.story-panel.active {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .story-panel.active {
    flex-direction: row;
    align-items: center;
  }
}

.story-image {
  flex: 0 0 50%;
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .story-image {
    margin-bottom: 0;
    margin-right: var(--space-lg);
  }
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.story-text {
  flex: 1;
}

.story-text h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.story-text p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* Contact Section */
.contact-section {
  background-color: var(--color-bg-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--space-xl);
}

@media (min-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-lg);
}

.contact-icon {
  flex: 0 0 40px;
  margin-right: var(--space-md);
}

.contact-item h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
}

.contact-item p {
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.contact-map {
  margin-top: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-container {
  width: 100%;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--space-md);
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.btn-submit {
  width: 100%;
}

/* Footer Section */
.footer-section {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
}

.footer-logo {
  margin-bottom: var(--space-lg);
}

.footer-logo img {
  max-height: 70px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
}

.footer-column {
  min-width: 160px;
}

.footer-column h4 {
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  position: relative;
}

.footer-column h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--color-primary);
  margin-top: var(--space-xs);
}

.footer-column ul li {
  margin-bottom: var(--space-sm);
}

.footer-column ul li a {
  color: var(--color-text-light);
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--color-primary-light);
}

.social-links li a {
  display: flex;
  align-items: center;
}

.social-links li a::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: var(--space-sm);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform var(--transition-fast);
}

.social-links li a:hover::before {
  transform: scale(1.2);
}

.social-links li:nth-child(1) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232962ff"><path d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z"/></svg>');
}

.social-links li:nth-child(2) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232962ff"><path d="M22.46 6c-.77.35-1.6.58-2.46.69.88-.53 1.56-1.37 1.88-2.38-.83.5-1.75.85-2.72 1.05C18.37 4.5 17.26 4 16 4c-2.35 0-4.27 1.92-4.27 4.29 0 .34.04.67.11.98C8.28 9.09 5.11 7.38 3 4.79c-.37.63-.58 1.37-.58 2.15 0 1.49.75 2.81 1.91 3.56-.71 0-1.37-.2-1.95-.5v.03c0 2.08 1.48 3.82 3.44 4.21a4.22 4.22 0 0 1-1.93.07 4.28 4.28 0 0 0 4 2.98 8.521 8.521 0 0 1-5.33 1.84c-.34 0-.68-.02-1.02-.06C3.44 20.29 5.7 21 8.12 21 16 21 20.33 14.46 20.33 8.79c0-.19 0-.37-.01-.56.84-.6 1.56-1.36 2.14-2.23z"/></svg>');
}

.social-links li:nth-child(3) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232962ff"><path d="M12 2c2.717 0 3.056.01 4.122.06 1.065.05 1.79.217 2.428.465.66.254 1.216.598 1.772 1.153a4.908 4.908 0 0 1 1.153 1.772c.247.637.415 1.363.465 2.428.047 1.066.06 1.405.06 4.122 0 2.717-.01 3.056-.06 4.122-.05 1.065-.218 1.79-.465 2.428a4.883 4.883 0 0 1-1.153 1.772 4.915 4.915 0 0 1-1.772 1.153c-.637.247-1.363.415-2.428.465-1.066.047-1.405.06-4.122.06-2.717 0-3.056-.01-4.122-.06-1.065-.05-1.79-.218-2.428-.465a4.89 4.89 0 0 1-1.772-1.153 4.904 4.904 0 0 1-1.153-1.772c-.248-.637-.415-1.363-.465-2.428C2.013 15.056 2 14.717 2 12c0-2.717.01-3.056.06-4.122.05-1.066.217-1.79.465-2.428a4.88 4.88 0 0 1 1.153-1.772A4.897 4.897 0 0 1 5.45 2.525c.638-.248 1.362-.415 2.428-.465C8.944 2.013 9.283 2 12 2zm0 1.802c-2.67 0-2.986.01-4.04.059-.976.045-1.505.207-1.858.344-.466.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.047 1.055-.059 1.37-.059 4.04 0 2.67.01 2.986.059 4.04.045.976.207 1.505.344 1.858.182.466.399.8.748 1.15.35.35.683.566 1.15.748.353.137.882.3 1.857.344 1.054.047 1.37.059 4.04.059 2.67 0 2.987-.01 4.04-.059.976-.045 1.505-.207 1.858-.344.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.353.3-.882.344-1.857.047-1.055.059-1.37.059-4.04 0-2.67-.01-2.986-.059-4.04-.045-.976-.207-1.505-.344-1.858a3.097 3.097 0 0 0-.748-1.15 3.098 3.098 0 0 0-1.15-.748c-.353-.137-.882-.3-1.857-.344-1.054-.047-1.37-.059-4.04-.059zm0 3.064A5.13 5.13 0 0 1 17.134 12a5.13 5.13 0 0 1-5.134 5.134A5.13 5.13 0 0 1 6.866 12a5.13 5.13 0 0 1 5.134-5.134zm0 8.466A3.333 3.333 0 0 0 15.332 12 3.333 3.333 0 0 0 12 8.668 3.333 3.333 0 0 0 8.668 12 3.333 3.333 0 0 0 12 15.332zm6.538-8.671a1.2 1.2 0 1 1-2.4 0 1.2 1.2 0 0 1 2.4 0z"/></svg>');
}

.social-links li:nth-child(4) a::before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%232962ff"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z"/></svg>');
}

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

.footer-bottom p {
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
  opacity: 0.7;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  overflow: auto;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: var(--font-size-xxl);
  color: var(--color-text-light);
  cursor: pointer;
  z-index: 1101;
}

#modalImage {
  max-width: 100%;
  max-height: calc(80vh - 100px);
  object-fit: contain;
}

#modalCaption {
  margin-top: var(--space-md);
  color: var(--color-text-light);
  text-align: center;
}

/* Special Pages */
.success-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-xl);
}

.success-content {
  max-width: 600px;
}

.success-icon {
  font-size: 4rem;
  color: var(--color-accent);
  margin-bottom: var(--space-lg);
}

.success-title {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.success-text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.privacy-page, .terms-page {
  padding-top: 100px;
}

.privacy-content, .terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
}

.privacy-content h2, .terms-content h2 {
  color: var(--color-primary);
  margin-top: var(--space-xl);
}

.privacy-content p, .terms-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

.fade-in-down {
  animation: fadeInDown 1s ease forwards;
}

.pulse {
  animation: pulse 2s infinite;
}

/* Media Queries */
@media (max-width: 1200px) {
  .container {
    padding: 0 var(--space-md);
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: var(--font-size-lg);
  }
}

@media (max-width: 992px) {
  .statistics-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mission-content {
    grid-template-columns: 1fr;
  }
  
  .mission-image {
    order: -1;
    margin-bottom: var(--space-lg);
  }
  
  .media-item {
    flex-direction: column;
  }
  
  .media-logo {
    margin-right: 0;
    margin-bottom: var(--space-md);
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: var(--font-size-md);
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .statistics-container {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .story-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .story-tab {
    width: 100%;
    text-align: center;
    margin-bottom: var(--space-sm);
  }
  
  .footer-top {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-lg);
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: var(--font-size-xl);
  }
  
  .client-logos {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-author img {
    margin: 0 auto var(--space-sm);
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
}
.mobile-menu-toggle{
  display: none;
}