/* Global Variables */
:root {
  /* Primary Colors */
  --primary-color: #3a86ff;
  --primary-dark: #2667cc;
  --primary-light: #5e9cff;
  
  /* Secondary Colors */
  --secondary-color: #ff006e;
  --secondary-dark: #cc0058;
  --secondary-light: #ff4a97;
  
  /* Accent Colors */
  --accent-color: #8338ec;
  --accent-dark: #6927bd;
  --accent-light: #9e63f4;
  
  /* Neutral Colors */
  --dark-color: #333333;
  --dark-light: #555555;
  --light-color: #f8f9fa;
  --light-dark: #e9ecef;
  
  /* Gradient Colors */
  --gradient-start: #3a86ff;
  --gradient-middle: #8338ec;
  --gradient-end: #ff006e;
  
  /* Neuromorphic Shadows */
  --shadow-light: 5px 5px 15px rgba(0, 0, 0, 0.1);
  --shadow-dark: -5px -5px 15px rgba(255, 255, 255, 0.1);
  --inner-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1), inset -2px -2px 5px rgba(255, 255, 255, 0.1);
  
  /* Font Sizes */
  --h1-size: 3.5rem;
  --h2-size: 2.5rem;
  --h3-size: 1.8rem;
  --h4-size: 1.5rem;
  --p-size: 1rem;
  --small-text: 0.875rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  
  /* Border Radius */
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-lg: 20px;
  --border-radius-round: 50%;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;
  
  /* Container Width */
  --container-width: 1280px;
  
  /* Z-indices */
  --z-back: -1;
  --z-normal: 1;
  --z-front: 10;
  --z-modal: 100;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

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

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

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

h4 {
  font-size: var(--h4-size);
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: var(--p-size);
}

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

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

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

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Section Styles */
section {
  padding: var(--spacing-lg) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}

.section-header h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  margin: var(--spacing-xs) auto 0;
  border-radius: var(--border-radius-sm);
}

.section-header p {
  color: var(--dark-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Button Styles */
.btn, button, input[type="submit"] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-medium);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-middle));
  color: white;
  box-shadow: var(--shadow-light);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-start));
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow-light);
}

.btn-secondary:hover {
  background: var(--light-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: var(--primary-dark);
}

.btn-tertiary {
  background: linear-gradient(135deg, var(--gradient-middle), var(--gradient-end));
  color: white;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-light);
}

.btn-tertiary:hover {
  background: linear-gradient(135deg, var(--gradient-end), var(--gradient-middle));
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  color: white;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: var(--z-front);
  padding: 1rem 0;
  transition: all var(--transition-medium);
}

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

.logo {
  z-index: var(--z-front);
}

.logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-links a {
  color: var(--dark-color);
  font-weight: 600;
  transition: color var(--transition-fast);
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  transition: width var(--transition-medium);
}

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

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: var(--z-front);
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--dark-color);
  transition: all var(--transition-medium);
  border-radius: var(--border-radius-sm);
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: var(--spacing-lg);
  position: relative;
  min-height: 100vh;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: var(--z-back);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: var(--z-normal);
}

.hero-content h1 {
  margin-bottom: var(--spacing-md);
  font-size: 4rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* About Section */
.despre {
  background-color: white;
}

.despre-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-lg);
}

.despre-text {
  flex: 1;
  min-width: 300px;
}

.despre-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.despre-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  max-height: 350px;
  object-fit: cover;
  margin: 0 auto;
}

/* Services Section */
.servicii {
  background-color: var(--light-color);
}

.servicii-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.card {
  background-color: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  box-shadow: var(--shadow-light);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  text-align: center;
}

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

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

.card-content {
  padding: var(--spacing-md);
  text-align: center;
  flex-grow: 1;
}

.card-content h3 {
  color: var(--dark-color);
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

.card-content p {
  color: var(--dark-light);
  margin-bottom: var(--spacing-md);
}

/* Statistics Section */
.statistici {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
}

.statistici .section-header h2:after {
  background: white;
}

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

.stat-widget {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-md);
  text-align: center;
  box-shadow: var(--shadow-light), var(--shadow-dark);
  transition: transform var(--transition-medium);
}

.stat-widget:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  font-family: 'Oswald', sans-serif;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0.7));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Clientele Section */
.clienti {
  background-color: white;
}

.clienti-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.client-logo {
  padding: var(--spacing-sm);
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-medium);
  width: 180px;
  height: 100px;
}

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

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

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

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

/* Media Section */
.media {
  background-color: white;
}

.media-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: flex-start;
}

.media-video {
  flex: 1;
  min-width: 300px;
}

.video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
}

.video-container img {
  width: 100%;
  height: auto;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-medium);
}

.play-button::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-left: 30px solid white;
  border-bottom: 20px solid transparent;
  margin-left: 5px;
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.media-articles {
  flex: 1;
  min-width: 300px;
}

.article {
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  background-color: var(--light-color);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-medium);
}

.article:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.article h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
}

.article .date {
  display: block;
  font-size: 0.9rem;
  color: var(--dark-light);
  margin-top: var(--spacing-sm);
}

/* Behind the Scenes Section */
.culise {
  background-color: var(--light-color);
}

.culise-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.culise-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.culise-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  max-height: 350px;
  object-fit: cover;
  margin: 0 auto;
}

.culise-text {
  flex: 1;
  min-width: 300px;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-lg);
}

.member {
  text-align: center;
  transition: transform var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.member img {
  width: 200px;
  height: 200px;
  border-radius: var(--border-radius-round);
  object-fit: cover;
  margin: 0 auto var(--spacing-sm);
  box-shadow: var(--shadow-light);
}

.member h3 {
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.member p {
  color: var(--primary-color);
  font-weight: 600;
}

/* Sustainability Section */
.sustenabilitate {
  background: linear-gradient(135deg, #205072, #329D9C);
  color: white;
}

.sustenabilitate .section-header h2:after {
  background: white;
}

.sustainability-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-lg);
}

.sustainability-text {
  flex: 1;
  min-width: 300px;
}

.sustainability-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.sustainability-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-height: 350px;
  object-fit: cover;
  margin: 0 auto;
}

/* FAQ Section */
.faq {
  background-color: white;
}

.faq-accordions {
  max-width: 800px;
  margin: 0 auto;
}

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

.accordion-header {
  padding: var(--spacing-md);
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.accordion-header:hover {
  background-color: var(--light-dark);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--dark-color);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform var(--transition-medium);
}

.accordion.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 var(--spacing-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}

.accordion.active .accordion-content {
  padding: var(--spacing-md);
  max-height: 1000px;
}

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

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-item {
  margin-bottom: var(--spacing-md);
}

.info-item h3 {
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  font-size: 1.2rem;
}

.contact-form {
  flex: 2;
  min-width: 300px;
}

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

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

.form-group:nth-child(5), .form-group:nth-child(6) {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--dark-color);
}

input, textarea, select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

button[type="submit"] {
  width: 100%;
}

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

.map-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  flex: 2;
  min-width: 250px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  margin-bottom: var(--spacing-sm);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 300px;
}

.footer-links {
  flex: 1;
  min-width: 150px;
}

.footer-links h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.footer-links h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  margin-top: 5px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: white;
}

.footer-social {
  flex: 1.5;
  min-width: 200px;
}

.footer-social h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.footer-social h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  margin-top: 5px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
  font-weight: 600;
  display: inline-block;
  padding: 5px 10px;
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--small-text);
  margin-bottom: 0;
}

/* Success Page */
.success-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  padding: var(--spacing-md);
}

.success-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-md);
}

.success-message h1 {
  margin-bottom: var(--spacing-md);
}

.success-message p {
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
}

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

.privacy-content h2, .terms-content h2 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.privacy-content p, .terms-content p {
  margin-bottom: var(--spacing-md);
}

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

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

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

/* Responsive Design */
@media screen and (max-width: 1024px) {
  :root {
    --h1-size: 3rem;
    --h2-size: 2rem;
    --h3-size: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --h1-size: 2.5rem;
    --h2-size: 1.8rem;
    --h3-size: 1.3rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 3.5rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .nav-links {
    display: none;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  
  .main-nav.active .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    padding: 100px var(--spacing-md) var(--spacing-md);
    z-index: var(--z-modal);
  }
  
  form {
    grid-template-columns: 1fr;
  }
  
  .form-group:nth-child(5), .form-group:nth-child(6) {
    grid-column: span 1;
  }
}

@media screen and (max-width: 480px) {
  :root {
    --h1-size: 2rem;
    --h2-size: 1.6rem;
    --h3-size: 1.2rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: var(--spacing-md);
  }
}

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

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

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

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}

.mb-2 {
  margin-bottom: var(--spacing-sm);
}

.mb-3 {
  margin-bottom: var(--spacing-md);
}

.mb-4 {
  margin-bottom: var(--spacing-lg);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: var(--spacing-xs);
}

.mt-2 {
  margin-top: var(--spacing-sm);
}

.mt-3 {
  margin-top: var(--spacing-md);
}

.mt-4 {
  margin-top: var(--spacing-lg);
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* JavaScript Interaction Styles */
.accordion.active .accordion-header {
  background-color: var(--light-dark);
}

/* Script for Counter Animation */
document.addEventListener("DOMContentLoaded", function() {
  // Counter Animation
  const counters = document.querySelectorAll('.stat-number');
  
  const animateCounter = (counter) => {
    const target = parseInt(counter.getAttribute('data-count'));
    const duration = 2000; // 2 seconds
    const step = target / duration * 10; // Update every 10ms
    let current = 0;
    
    const timer = setInterval(() => {
      current += step;
      counter.textContent = Math.floor(current);
      
      if (current >= target) {
        counter.textContent = target;
        clearInterval(timer);
      }
    }, 10);
  };
  
  // Intersection Observer for counters
  const observer = new IntersectionObserver((entries) => {
    entries.forEach(entry => {
      if (entry.isIntersecting) {
        animateCounter(entry.target);
        observer.unobserve(entry.target);
      }
    });
  }, { threshold: 0.5 });
  
  counters.forEach(counter => {
    observer.observe(counter);
  });
  
  // Accordion functionality
  const accordions = document.querySelectorAll('.accordion');
  
  accordions.forEach(accordion => {
    const header = accordion.querySelector('.accordion-header');
    
    header.addEventListener('click', () => {
      accordion.classList.toggle('active');
    });
  });
  
  // Mobile navigation
  const hamburger = document.querySelector('.hamburger-menu');
  const mainNav = document.querySelector('.main-nav');
  
  hamburger.addEventListener('click', () => {
    hamburger.classList.toggle('active');
    mainNav.classList.toggle('active');
  });
  
  // Close mobile nav when clicking on a link
  const navLinks = document.querySelectorAll('.nav-links a');
  
  navLinks.forEach(link => {
    link.addEventListener('click', () => {
      hamburger.classList.remove('active');
      mainNav.classList.remove('active');
    });
  });
  
  // Video play button interaction
  const playButton = document.querySelector('.play-button');
  
  if (playButton) {
    playButton.addEventListener('click', () => {
      // Add video play functionality here
      alert('Video player would start here in a production environment');
    });
  }
  
  // Scrolling header effects
  const header = document.querySelector('.header');
  
  window.addEventListener('scroll', () => {
    if (window.scrollY > 100) {
      header.style.padding = '0.5rem 0';
      header.style.boxShadow = '0 5px 15px rgba(0, 0, 0, 0.1)';
    } else {
      header.style.padding = '1rem 0';
      header.style.boxShadow = '0 2px 10px rgba(0, 0, 0, 0.1)';
    }
  });
  
  // Contact form submission
  const contactForm = document.getElementById('contactForm');
  
  if (contactForm) {
    contactForm.addEventListener('submit', (e) => {
      e.preventDefault();
      // Form submission logic would go here
      alert('Form submitted successfully! In a production environment, this would be sent to a backend server.');
      contactForm.reset();
    });
  }
});