/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Triadic Color Scheme - Primary Colors */
  --primary-color: #2E86AB;
  --primary-light: #4BA3D1;
  --primary-dark: #1E5A73;
  
  /* Triadic Color Scheme - Secondary Colors */
  --secondary-color: #A23E48;
  --secondary-light: #C45A68;
  --secondary-dark: #7A2E36;
  
  /* Triadic Color Scheme - Tertiary Colors */
  --tertiary-color: #F18F01;
  --tertiary-light: #FFB347;
  --tertiary-dark: #CC7300;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #495057;
  --black: #212529;
  
  /* Success & Error Colors */
  --success-color: #28A745;
  --error-color: #DC3545;
  --warning-color: #FFC107;
  
  /* Neomorphism Colors */
  --neo-bg: #E6E8F0;
  --neo-shadow-light: #FFFFFF;
  --neo-shadow-dark: #C1C8D4;
  --neo-inset-light: #D1D9E6;
  --neo-inset-dark: #A8B5C8;
  
  /* Gradient Backgrounds */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-tertiary: linear-gradient(135deg, var(--tertiary-color), var(--tertiary-light));
  --gradient-hero: linear-gradient(135deg, rgba(46, 134, 171, 0.9), rgba(162, 62, 72, 0.8));
  
  /* Typography */
  --font-primary: 'Roboto', sans-serif;
  --font-secondary: 'Lato', sans-serif;
  
  /* Font Weights */
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-bold: 700;
  
  /* Font Sizes */
  --font-xs: 0.75rem;
  --font-sm: 0.875rem;
  --font-base: 1rem;
  --font-lg: 1.125rem;
  --font-xl: 1.25rem;
  --font-2xl: 1.5rem;
  --font-3xl: 1.875rem;
  --font-4xl: 2.25rem;
  --font-5xl: 3rem;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 50%;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.3);
  
  /* Neomorphic Shadows */
  --neo-shadow-out: 8px 8px 16px var(--neo-shadow-dark), -8px -8px 16px var(--neo-shadow-light);
  --neo-shadow-in: inset 8px 8px 16px var(--neo-shadow-dark), inset -8px -8px 16px var(--neo-shadow-light);
  --neo-shadow-hover: 12px 12px 20px var(--neo-shadow-dark), -12px -12px 20px var(--neo-shadow-light);
  
  /* Z-index */
  --z-index-dropdown: 1000;
  --z-index-sticky: 1020;
  --z-index-fixed: 1030;
  --z-index-backdrop: 1040;
  --z-index-modal: 1050;
  
  /* Transitions */
  --transition-fast: 0.15s ease-out;
  --transition-base: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
  --transition-morph: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-secondary);
  font-weight: var(--font-regular);
  line-height: 1.7;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: var(--font-bold);
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

h1 { font-size: var(--font-5xl); }
h2 { font-size: var(--font-4xl); }
h3 { font-size: var(--font-3xl); }
h4 { font-size: var(--font-2xl); }
h5 { font-size: var(--font-xl); }
h6 { font-size: var(--font-lg); }

p {
  margin-bottom: var(--space-sm);
  font-weight: var(--font-regular);
}

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

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

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

/* ===== GLOBAL BUTTON STYLES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-weight: var(--font-medium);
  font-size: var(--font-base);
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: var(--transition-morph);
  position: relative;
  overflow: hidden;
  min-height: 48px;
  background: var(--neo-bg);
  box-shadow: var(--neo-shadow-out);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--neo-shadow-hover);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--neo-shadow-in);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--gradient-primary);
  filter: brightness(1.1);
  color: var(--white);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--white);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--gradient-secondary);
  filter: brightness(1.1);
  color: var(--white);
  border-color: var(--secondary-dark);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: var(--neo-shadow-out);
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: var(--font-lg);
  min-height: 56px;
  border-radius: var(--radius-xl);
}

/* Morphing Button Animation */
.morph-button {
  position: relative;
  background: var(--gradient-primary);
  transition: var(--transition-morph);
}

.morph-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  border-radius: inherit;
  opacity: 0;
  transition: var(--transition-morph);
  z-index: -1;
}

.morph-button:hover::before {
  opacity: 1;
}

.morph-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* ===== NAVIGATION STYLES ===== */
.navbar {
  padding: var(--space-sm) 0;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.95) !important;
  transition: var(--transition-base);
}

.navbar-brand {
  font-family: var(--font-primary);
  font-weight: var(--font-bold);
  font-size: var(--font-2xl);
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  font-family: var(--font-primary);
  font-weight: var(--font-medium);
  color: var(--dark-gray) !important;
  margin: 0 var(--space-xs);
  padding: var(--space-xs) var(--space-sm) !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(46, 134, 171, 0.1);
  transform: translateY(-1px);
}

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

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

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 134, 171, 0.7), rgba(162, 62, 72, 0.6));
  z-index: 1;
}

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

.hero-section h1,
.hero-section p,
.hero-section .lead {
  color: var(--white) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
}

.hero-section .lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: var(--space-xl);
  opacity: 0.95;
}

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

/* Morphing Text Animation */
.morph-text {
  animation: morphText 3s ease-in-out infinite;
}

@keyframes morphText {
  0%, 100% { transform: scale(1) rotateX(0deg); }
  50% { transform: scale(1.02) rotateX(2deg); }
}

/* ===== SECTION STYLES ===== */
section {
  padding: var(--space-2xl) 0;
  position: relative;
}

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

.section-subtitle {
  color: var(--gray);
  font-size: var(--font-lg);
  margin-bottom: var(--space-lg);
}

/* ===== CARD STYLES ===== */
.card {
  border: none;
  border-radius: var(--radius-lg);
  background: var(--neo-bg);
  box-shadow: var(--neo-shadow-out);
  transition: var(--transition-morph);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

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

.card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.card-title {
  font-family: var(--font-primary);
  font-weight: var(--font-bold);
  color: var(--black);
  margin-bottom: var(--space-sm);
}

.card-text {
  color: var(--dark-gray);
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

/* Feature Cards */
.feature-card {
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 232, 240, 0.8));
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(230, 232, 240, 0.9));
}

/* Instructor Cards */
.instructor-card {
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(46, 134, 171, 0.1);
}

.instructor-card .card-image {
  height: 300px;
}

/* Webinar Cards */
.webinar-card {
  background: linear-gradient(135deg, rgba(46, 134, 171, 0.05), rgba(162, 62, 72, 0.05));
  border: 1px solid rgba(46, 134, 171, 0.2);
  height: 100%;
}

.webinar-date {
  font-size: var(--font-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.webinar-instructor {
  font-style: italic;
  font-size: var(--font-sm);
}

/* Testimonial Cards */
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(162, 62, 72, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-card .card-image {
  height: 250px;
}

/* Resource Cards */
.resource-card {
  background: linear-gradient(135deg, rgba(241, 143, 1, 0.05), rgba(46, 134, 171, 0.05));
  border: 1px solid rgba(241, 143, 1, 0.2);
  height: 100%;
}

/* ===== MISSION SECTION ===== */
.mission-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
  border-radius: var(--radius-lg);
  box-shadow: var(--neo-shadow-out);
  backdrop-filter: blur(10px);
}

/* ===== HISTORY SECTION ===== */
.timeline-container {
  position: relative;
}

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

.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--gradient-primary);
  transform: translateX(-50%);
}

.timeline-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--neo-shadow-out);
  position: relative;
  transition: var(--transition-morph);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.timeline-content h4 {
  font-family: var(--font-primary);
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
}

/* ===== PROCESS SECTION ===== */
.process-step {
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(230, 232, 240, 0.8));
  border-radius: var(--radius-lg);
  box-shadow: var(--neo-shadow-out);
  transition: var(--transition-morph);
  height: 100%;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: var(--font-bold);
  font-size: var(--font-xl);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-md);
}

/* ===== STATISTICS WIDGET ===== */
.stats-container {
  background: linear-gradient(135deg, rgba(46, 134, 171, 0.1), rgba(162, 62, 72, 0.1));
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
}

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

.stat-label {
  font-size: var(--font-base);
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: var(--font-medium);
}

/* ===== MEDIA SECTION ===== */
.carousel-item .row {
  margin: 0;
}

.carousel-item img {
  border-radius: var(--radius-md);
  transition: var(--transition-slow);
  object-fit: cover;
  width: 100%;
  height: 300px;
}

.carousel-item img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  color: var(--primary-color);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
  width: 2rem;
  height: 2rem;
}

.carousel-indicators button {
  background-color: var(--primary-color);
  border: none;
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  margin: 0 4px;
  transition: var(--transition-base);
}

/* ===== CONTACT SECTION ===== */
.contact-form-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(230, 232, 240, 0.9));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.form-control,
.form-select {
  border: 2px solid rgba(46, 134, 171, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  font-family: var(--font-secondary);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  transition: var(--transition-base);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(46, 134, 171, 0.25);
  background: var(--white);
}

.form-floating > label {
  color: var(--gray);
  font-weight: var(--font-medium);
}

.form-check-input {
  background-color: rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(46, 134, 171, 0.3);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--neo-shadow-out);
  transition: var(--transition-morph);
  height: 100%;
}

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

.contact-info-card h5 {
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.contact-info-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: var(--font-medium);
}

.contact-info-card a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

/* ===== FOOTER STYLES ===== */
footer {
  background: linear-gradient(135deg, var(--black), var(--dark-gray)) !important;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
}

footer h5,
footer h6 {
  color: var(--white);
  font-family: var(--font-primary);
  margin-bottom: var(--space-md);
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-base);
  display: inline-block;
}

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

footer .text-primary {
  color: var(--tertiary-color) !important;
}

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

footer p.small,
footer p.text-muted {
  color: rgba(255, 255, 255, 0.6);
}

/* Social Media Links Styling */
footer ul li a[href*="facebook"]:hover {
  color: #1877F2;
}

footer ul li a[href*="twitter"]:hover {
  color: #1DA1F2;
}

footer ul li a[href*="instagram"]:hover {
  color: #E4405F;
}

/* ===== SUCCESS PAGE STYLES ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  padding-top: 100px;
}

.success-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
  max-width: 600px;
  margin: 0 auto;
}

.success-content h1 {
  color: var(--success-color);
  margin-bottom: var(--space-lg);
  font-size: var(--font-4xl);
}

.success-content p {
  color: var(--dark-gray);
  font-size: var(--font-lg);
  margin-bottom: var(--space-xl);
}

/* ===== PRIVACY & TERMS PAGES ===== */
.content-page {
  padding-top: 100px;
  min-height: 100vh;
}

.content-page .container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
}

.content-page h1 {
  color: var(--primary-color);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.content-page h2 {
  color: var(--secondary-color);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  border-bottom: 2px solid rgba(46, 134, 171, 0.2);
  padding-bottom: var(--space-xs);
}

.content-page p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
  color: var(--dark-gray);
}

.content-page ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.content-page li {
  margin-bottom: var(--space-xs);
  color: var(--dark-gray);
}

/* ===== READ MORE LINKS ===== */
.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: var(--transition-base);
  position: relative;
}

.read-more::after {
  content: '→';
  margin-left: var(--space-xs);
  transition: var(--transition-base);
}

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

.read-more:hover::after {
  transform: translateX(4px);
}

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

.bg-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.neo-card {
  background: var(--neo-bg);
  box-shadow: var(--neo-shadow-out);
  border-radius: var(--radius-lg);
  transition: var(--transition-morph);
}

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

.bio-shape {
  border-radius: 60% 40% 40% 60% / 60% 30% 70% 40%;
  transition: var(--transition-slow);
}

.bio-shape:hover {
  border-radius: 40% 60% 60% 40% / 40% 70% 30% 60%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  :root {
    --font-5xl: 2.5rem;
    --font-4xl: 2rem;
    --font-3xl: 1.75rem;
  }
}

@media (max-width: 992px) {
  .hero-section {
    background-attachment: scroll;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .timeline-item::before {
    display: none;
  }
  
  .timeline-content {
    margin-bottom: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 2rem;
    --space-2xl: 3rem;
  }
  
  section {
    padding: var(--space-xl) 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .card-image {
    height: 200px;
  }
  
  .instructor-card .card-image {
    height: 250px;
  }
  
  .carousel-item img {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }
  
  .hero-section {
    padding: var(--space-xl) 0;
  }
  
  .contact-form-container,
  .success-content {
    margin: var(--space-md);
    padding: var(--space-lg);
  }
  
  .stats-container .row {
    text-align: center;
  }
  
  .stat-number {
    font-size: var(--font-2xl);
  }
  
  .process-step {
    margin-bottom: var(--space-lg);
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0066CC;
    --secondary-color: #CC0000;
    --tertiary-color: #FF6600;
  }
}



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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.8s ease-out;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out;
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .hero-section,
  footer,
  .btn {
    display: none !important;
  }
  
  body {
    color: #000000 !important;
    background: #ffffff !important;
  }
  
  .card {
    box-shadow: none !important;
    border: 1px solid #cccccc !important;
  }
}