/* 
* ElectroAutos Argentina - Main Stylesheet
* Version: 1.0.0
* Author: AI Designer
* Framework: Bulma with custom modifications
*/

/* ===== VARIABLES ===== */
:root {
  /* Primary Colors */
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  
  /* Secondary/Accent Colors */
  --accent-color: #10b981;
  --accent-dark: #059669;
  --accent-light: #34d399;
  --accent-gradient: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
  
  /* Neutral Colors */
  --neutral-900: #111827;
  --neutral-800: #1f2937;
  --neutral-700: #374151;
  --neutral-600: #4b5563;
  --neutral-500: #6b7280;
  --neutral-400: #9ca3af;
  --neutral-300: #d1d5db;
  --neutral-200: #e5e7eb;
  --neutral-100: #f3f4f6;
  --neutral-50: #f9fafb;
  
  /* UI Colors */
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #3b82f6;
  
  /* Typography */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  /* Spacings */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Borders */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-width: 2px;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  
  /* Neo-brutalism */
  --brutalism-shadow: 4px 4px 0px rgba(0, 0, 0, 0.8);
  --brutalism-border: 2px solid var(--neutral-900);
}

/* ===== BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--neutral-50);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
}

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

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

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

/* Typography enhancements */
.title {
  letter-spacing: -0.025em;
}

.subtitle {
  color: var(--neutral-600);
  font-weight: 400;
}

/* Button styles - global */
.button {
  font-weight: 500;
  transition: all var(--transition-normal);
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  top: 0;
  left: -100%;
  transform: skewX(-20deg);
  transition: all 0.4s ease;
  z-index: 1;
}

.button:hover::after {
  left: 100%;
}

.button.is-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.button.is-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.button.is-outlined {
  border-width: var(--border-width);
}

.button.is-large {
  font-size: 1.25rem;
  padding: 0.75em 1.5em;
}

.button.is-outlined.is-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Neo-brutalism button style */
.button.is-brutalist {
  background: var(--primary-color);
  color: white;
  border: var(--brutalism-border);
  box-shadow: var(--brutalism-shadow);
  border-radius: 0;
  transform: translateY(0);
  transition: transform var(--transition-fast);
}

.button.is-brutalist:hover {
  transform: translateY(-2px);
}

.button.is-brutalist:active {
  transform: translateY(2px);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.8);
}

/* Card styles - global */
.card {
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  background-color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  overflow: hidden;
  position: relative;
}

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

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

.card-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.card .title {
  margin-bottom: var(--space-sm);
}

.card .content {
  margin-bottom: var(--space-sm);
}

/* Neo-brutalism card */
.card.is-brutalist {
  border: var(--brutalism-border);
  box-shadow: var(--brutalism-shadow);
  border-radius: 0;
}

.card.is-brutalist:hover {
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.8);
}

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

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

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

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero.is-fullheight {
  min-height: 100vh;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color var(--transition-normal);
  background-color: transparent;
}

.header.is-scrolled {
  background-color: var(--neutral-800);
  box-shadow: var(--shadow-md);
}

.navbar {
  background-color: transparent;
  padding: var(--space-sm) 0;
}

.logo {
  font-family: var(--font-heading);
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform var(--transition-normal);
}

.logo:hover {
  transform: translateY(-2px);
}

.navbar-item {
  color: white;
  font-weight: 500;
  transition: all var(--transition-normal);
  position: relative;
  padding: 0.5rem 1rem;
}

.navbar-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.navbar-item:hover::after,
.navbar-item.is-active::after {
  width: 70%;
}

.navbar-item:hover {
  color: var(--primary-light);
  background-color: transparent !important;
}

.navbar-item.is-active {
  color: var(--primary-light);
  background-color: transparent !important;
}

.navbar-burger {
  color: white;
}

/* ===== HERO SECTION ===== */
.hero-body {
  padding: var(--space-xxl) 0;
}

.hero .title,
.hero .subtitle {
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .title.is-1 {
  font-size: 3.5rem;
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero p {
  margin-bottom: var(--space-lg);
}

.scroll-down {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

.scroll-down .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.scroll-down .icon:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* ===== SERVICES SECTION ===== */
.services {
  background-color: var(--neutral-50);
}

.service-card {
  height: 100%;
}

.service-card .card-content {
  display: flex;
  flex-direction: column;
}

.stats-widget {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
  padding: var(--space-sm);
  background-color: var(--neutral-100);
  border-radius: var(--border-radius-sm);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-item .icon {
  font-size: 1.25rem;
}

/* ===== EVENTS SECTION ===== */
.events {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.events::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('image/pattern-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--neutral-300);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  padding: var(--space-lg) 0;
  position: relative;
}

.timeline-marker {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.timeline-content {
  position: relative;
  width: 45%;
  margin-left: auto;
}

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

.event-card {
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  transition: transform var(--transition-normal);
}

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

/* ===== INSTRUCTORS SECTION ===== */
.instructors {
  background-color: var(--neutral-50);
}

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

.instructor-card .image.is-square {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.instructor-card .image.is-square img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.instructor-card .title {
  margin-top: var(--space-sm);
}

.social-links {
  margin-top: var(--space-sm);
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
}

.social-links a {
  padding: 0.5rem 1rem;
  background-color: var(--neutral-200);
  border-radius: var(--border-radius-sm);
  color: var(--neutral-700);
  font-weight: 500;
  transition: all var(--transition-normal);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

/* ===== WEBINARS SECTION ===== */
.webinars {
  background-color: white;
}

.webinar-card {
  height: 100%;
}

.webinar-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.webinar-card .title {
  font-size: 1.25rem;
  line-height: 1.3;
}

.webinar-card .subtitle {
  color: var(--primary-color);
  font-weight: 500;
}

/* ===== RESOURCES SECTION ===== */
.resources {
  background-color: var(--neutral-50);
  position: relative;
  overflow: hidden;
}

.resource-card {
  height: 100%;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.resource-card .title {
  margin-bottom: var(--space-md);
  color: var(--neutral-800);
}

.resource-card .content {
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

/* ===== WORKSHOPS SECTION ===== */
.workshops {
  background-color: white;
}

.workshop-card {
  height: 100%;
}

.workshop-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ===== BLOG SECTION ===== */
.blog {
  background-color: var(--neutral-50);
}

.blog-card {
  height: 100%;
}

.blog-card .card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card .title {
  font-size: 1.25rem;
  line-height: 1.3;
}

.blog-card .subtitle {
  color: var(--neutral-500);
  font-size: 0.875rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background-color: white;
  position: relative;
}

.contact-form {
  padding: var(--space-lg);
  background-color: var(--neutral-50);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

.contact-form .label {
  font-weight: 600;
  color: var(--neutral-700);
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border: 2px solid var(--neutral-300);
  box-shadow: none;
  transition: border-color var(--transition-normal);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-light);
}

.contact-info {
  margin-bottom: var(--space-lg);
}

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

.contact-item .icon {
  font-size: 1.5rem;
  margin-right: var(--space-sm);
  color: var(--primary-color);
}

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

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

/* ===== FOOTER ===== */
.footer {
  background-color: var(--neutral-800);
  color: var(--neutral-200);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer .title {
  color: white;
  margin-bottom: var(--space-md);
}

.footer p {
  color: var(--neutral-300);
}

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

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

.footer-links a {
  color: var(--neutral-300);
  transition: color var(--transition-normal);
}

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

.footer .table {
  background-color: transparent;
  color: var(--neutral-300);
}

.footer .table td {
  border-color: var(--neutral-700);
  padding: 0.5rem 0;
}

.newsletter-form {
  margin-top: var(--space-sm);
}

.newsletter-form .input {
  background-color: var(--neutral-700);
  border-color: var(--neutral-700);
  color: white;
}

.newsletter-form .input::placeholder {
  color: var(--neutral-400);
}

.newsletter-form .input:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.copyright {
  margin-top: var(--space-xl);
  padding-top: var(--space-md);
  border-top: 1px solid var(--neutral-700);
  color: var(--neutral-400);
}

/* ===== ABOUT PAGE ===== */
.about-story {
  padding-top: var(--space-xxl);
}

.testimonial-box {
  background-color: var(--primary-color);
  color: white;
  padding: var(--space-md);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
}

.mission-vision {
  background-color: var(--neutral-50);
}

.mission-card, .vision-card {
  height: 100%;
  padding: var(--space-lg);
}

.mission-card {
  background-color: var(--primary-color);
  color: white;
}

.mission-card .title {
  color: white;
}

.mission-card .content {
  color: rgba(255, 255, 255, 0.9);
}

.vision-card {
  background-color: white;
  border: 2px solid var(--primary-color);
}

.value-card {
  height: 100%;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.icon-value {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.stat-box {
  background-color: white;
  padding: var(--space-lg);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  height: 100%;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
  font-family: var(--font-heading);
}

.stat-title {
  font-size: 1.125rem;
  color: var(--neutral-600);
}

.award-item {
  display: flex;
  align-items: center;
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
}

.award-icon {
  font-size: 2rem;
  margin-right: var(--space-md);
  color: var(--primary-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-lg);
  align-items: center;
}

.partner-item {
  padding: var(--space-md);
  background-color: white;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.partner-item img {
  max-height: 80px;
  max-width: 100%;
  object-fit: contain;
}

.cta-section {
  background-color: var(--primary-color);
  color: white;
  padding: var(--space-xl) 0;
}

.cta-section .title {
  color: white;
}

.cta-section .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* ===== CONTACT PAGE ===== */
.contact-locations {
  padding-top: var(--space-xxl);
}

.location-card .card-content {
  padding: var(--space-md);
}

.location-details {
  margin-bottom: var(--space-md);
}

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

.detail-item .icon {
  margin-right: var(--space-sm);
  color: var(--primary-color);
}

.contact-form-section {
  background-color: var(--neutral-50);
}

.faq-section {
  background-color: white;
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: var(--space-sm);
  border: 1px solid var(--neutral-300);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

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

.accordion-header .title {
  margin-bottom: 0;
  font-size: 1.125rem;
}

.accordion-content {
  padding: 0 var(--space-md);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.accordion-item.is-active .accordion-content {
  padding: var(--space-md);
  max-height: 500px;
}

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

.cta-box {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: var(--space-lg) 0;
}

.phone-number .icon {
  margin-right: var(--space-sm);
}

.availability {
  color: var(--neutral-500);
  font-size: 1.125rem;
}

/* ===== PRIVACY & TERMS PAGES ===== */
.privacy-content, 
.terms-content {
  padding-top: 100px;
}

.privacy-text, 
.terms-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.privacy-text h2, 
.terms-text h2 {
  color: var(--neutral-900);
  margin-top: var(--space-xl);
}

.privacy-text h3, 
.terms-text h3 {
  color: var(--neutral-800);
  margin-top: var(--space-lg);
}

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

.privacy-text ul, 
.terms-text ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.privacy-text li, 
.terms-text li {
  margin-bottom: var(--space-xs);
}

/* ===== SUCCESS PAGE ===== */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.success-message-box {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-xl);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: var(--success-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: white;
  font-size: 3rem;
}

.next-steps {
  background-color: var(--neutral-50);
}

.next-step-card {
  height: 100%;
  padding: var(--space-md);
}

.icon-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto var(--space-sm);
}

.recommendations {
  background-color: white;
}

.recommendation-card {
  height: 100%;
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 1023px) {
  .hero .title.is-1 {
    font-size: 2.5rem;
  }
  
  .timeline::after {
    left: 60px;
  }
  
  .timeline-marker {
    left: 60px;
  }
  
  .timeline-content {
    width: calc(100% - 120px);
    margin-left: 120px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 120px;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .hero .title.is-1 {
    font-size: 2rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.25rem;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .partners-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}

@media screen and (max-width: 576px) {
  .hero .title.is-1 {
    font-size: 1.75rem;
  }
  
  .hero .subtitle.is-3 {
    font-size: 1.125rem;
  }
}

/* ===== UTILITY CLASSES ===== */
.has-text-primary {
  color: var(--primary-color) !important;
}

.has-background-primary {
  background-color: var(--primary-color) !important;
}

.has-text-accent {
  color: var(--accent-color) !important;
}

.has-background-accent {
  background-color: var(--accent-color) !important;
}

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }
.mr-0 { margin-right: 0 !important; }

.mt-4 { margin-top: 1rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mt-5 { margin-top: 1.5rem !important; }
.mb-5 { margin-bottom: 1.5rem !important; }
.mt-6 { margin-top: 2rem !important; }
.mb-6 { margin-bottom: 2rem !important; }

/* Animations for scroll effects */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* JavaScript-enhanced functionality */
.navbar-burger {
  transition: all var(--transition-normal);
}

.navbar-burger span {
  transition: all var(--transition-normal);
}

.navbar-burger.is-active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  :root {
    --neutral-50: #121212;
    --neutral-100: #1e1e1e;
    --neutral-200: #2c2c2c;
    --neutral-300: #3d3d3d;
    --neutral-400: #5f5f5f;
    --neutral-500: #868686;
    --neutral-600: #a0a0a0;
    --neutral-700: #c7c7c7;
    --neutral-800: #e3e3e3;
    --neutral-900: #f7f7f7;
  }
  
  body {
    background-color: var(--neutral-50);
    color: var(--neutral-800);
  }
  
  .card {
    background-color: var(--neutral-100);
  }
  
  .contact-form {
    background-color: var(--neutral-100);
  }
  
  .accordion-header {
    background-color: var(--neutral-200);
  }
  
  .accordion-item {
    border-color: var(--neutral-300);
  }
  
  .success-message-box, 
  .cta-box {
    background-color: var(--neutral-100);
  }
  
  .partner-item, 
  .award-item, 
  .stat-box {
    background-color: var(--neutral-100);
  }
}