/* Modern Professional Medical Technology CSS */

/* Root Variables */
:root {
  /* Color Palette - Toned Down Professional Colors */
  --primary-color: #1e40af;
  --primary-light: #3b82f6;
  --primary-dark: #1e3a8a;
  --secondary-color: #64748b;
  --accent-color: #0f766e;
  --gradient-primary: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  --gradient-accent: linear-gradient(135deg, #64748b 0%, #475569 100%);
  --gradient-text: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  
  /* Neutral Colors */
  --dark-color: #374151;
  --dark-light: #374151;
  --gray-color: #6b7280;
  --gray-light: #9ca3af;
  --light-color: #f8fafc;
  --white-color: #ffffff;
  
  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --section-padding: 6rem 0;
  --container-padding: 1rem;
  
  /* Borders & Shadows */
  --border-radius: 0.75rem;
  --border-radius-lg: 1.5rem;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

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

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

body {
  font-family: var(--font-secondary);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

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

/* Override text-gradient in dark sections to use white text instead */
.distributors-section .text-gradient,
.hero-section .text-gradient {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: white !important;
  background-clip: unset !important;
  color: white !important;
}

/* Navigation Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-normal);
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  text-decoration: none;
  color: var(--dark-color) !important;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.brand-text .brand-name {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--dark-color);
}

.brand-text .brand-subtitle {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-color);
  font-weight: 500;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--dark-color);
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.1);
}

.btn-intranet {
  background: var(--gradient-primary) !important;
  color: white !important;
  border: none !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 2rem !important;
  font-weight: 600 !important;
}

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

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  z-index: -2;
}
 .hero-background {
    transform: translateY(0px) !important;
  }

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../assets-demo/images/header4.jpg') center/cover;
  opacity: 1;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background: rgba(0, 0, 0, 0.5); /* Simple black overlay */
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: var(--font-primary);
  color: white !important;
}

.hero-title .text-gradient {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: white !important;
  background-clip: unset !important;
  color: white !important;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-link {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  opacity: 0.7;
  transition: var(--transition-normal);
  animation: bounce 2s infinite;
}

.scroll-link:hover {
  opacity: 1;
  color: white;
}

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

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-badge.light {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-primary);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* About Section */
.about-section {
  padding: var(--section-padding);
  background: var(--light-color);
}

.about-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-light);
}

.feature-item {
  display: flex;
  align-items: center;
  font-weight: 500;
  color: var(--dark-light);
}

.company-location {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.location-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.flag-icon {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.location-text {
  color: var(--dark-color);
  font-size: 0.9rem;
  line-height: 1.4;
}

.about-image {
  position: relative;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(59, 130, 246, 0.8) 100%);
  opacity: 0;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  color: white;
  cursor: pointer;
}

/* Distributors Section */
.distributors-section {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.distributors-section .section-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 4rem;
}

.distributors-section .section-title {
  color: white !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.distributors-section .section-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.distributors-section .section-badge {
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
}

/* Section background is now handled by the distributors-section directly */
.section-background {
  display: none;
}

.distributor-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.distributor-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 1);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.region-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
}

.region-badge.domestic { background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%); }
.region-badge.usa { background: linear-gradient(135deg, #64748b 0%, #475569 100%); }
.region-badge.eu { background: linear-gradient(135deg, #0f766e 0%, #0d7377 100%); }
.region-badge.asia { background: linear-gradient(135deg, #374151 0%, #1f2937 100%); }

.card-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--gray-color);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.card-footer {
  display: flex;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* Features Section */
.features-section {
  padding: var(--section-padding);
  background: var(--white-color);
}

.feature-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  border: 1px solid #f3f4f6;
}

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

.feature-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.feature-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

.feature-content {
  padding: 2rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--gray-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
  position: relative;
  padding: var(--section-padding);
  overflow: hidden;
  background-color: var(--light-color);
}

.testimonials-section .section-header {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-section .section-title {
  color: var(--dark-color) !important;
  text-shadow: none;
}

.testimonials-section .section-subtitle {
  color: var(--gray-color) !important;
  text-shadow: none;
}

.testimonials-section .section-badge {
  background: var(--primary-color) !important;
  color: white !important;
  border: none;
}

.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%),
              url('../../assets-demo/images/testimonials2.jpg') center/cover;
  z-index: -1;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(200, 200, 200, 0.4);
  position: relative;
  z-index: 5;
}

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

.quote-icon {
  color: var(--primary-color);
  font-size: 3rem;
  margin-bottom: 2rem;
  opacity: 0.3;
}

.testimonial-text {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--dark-color);
  margin-bottom: 2rem;
  font-weight: 400;
}

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

.author-avatar {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

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

.author-title {
  color: var(--gray-color);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.rating {
  color: #fbbf24;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: var(--transition-normal);
  z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
  left: -80px;
}

.carousel-control-next {
  right: -80px;
}

.carousel-indicators {
  bottom: -60px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
}

.carousel-indicators button.active {
  background-color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding);
  background: var(--dark-color);
	color:#fff;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid #f3f4f6;
}

.form-floating {
  margin-bottom: 1rem;
}

.form-control {
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  padding: 1rem;
  font-size: 1rem;
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.1);
}

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

.contact-info {
  padding-left: 2rem;
}

.contact-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  border: 1px solid #f3f4f6;
  transition: var(--transition-normal);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-height: auto;
  overflow: hidden;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-details h4,
.contact-details h5 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.2;
}

.contact-details p {
  color: var(--gray-color);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
  word-break: break-word;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.flag-mini {
  width: 20px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
}

.contact-social h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25rem;
  transition: var(--transition-normal);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: white;
}

/* Footer */
.footer-section {
  position: relative;
  color: white;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-light) 100%);
  z-index: -1;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-brand .brand-text .brand-name,
.footer-brand .brand-text .brand-subtitle {
  color: white;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-certifications {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cert-badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

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

.footer-menu li {
  margin-bottom: 0.75rem;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-normal);
}

.footer-menu a:hover {
  color: white;
  padding-left: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.contact-item a:hover {
  color: white;
}

.footer-social .social-link {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social .social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: white;
}

.separator {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* Button Styles */
.btn {
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  transition: var(--transition-normal);
  text-transform: none;
  font-size: 1rem;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

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

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .carousel-control-prev { left: -60px; }
  .carousel-control-next { right: -60px; }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 4rem 0;
  }
  
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
  
  .contact-info {
    padding-left: 0;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-info {
    text-align: center;
  }
  
  .distributor-card {
    padding: 1.5rem;
  }
  
  .brand-container {
    gap: 0.5rem;
  }
  
  .brand-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .brand-text .brand-name {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 3rem 0;
  }
  
  .hero-stats {
    margin-top: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem 1rem;
  }
  
  .testimonial-text {
    font-size: 1.25rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .contact-card {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  
  .contact-card .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .contact-details h4,
  .contact-details h5 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  
  .contact-details p {
    font-size: 0.8rem;
  }
  
  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
  }
}

/* Animation Classes for AOS */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

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

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

/* Form Validation Styles */
.was-validated .form-control:valid {
  border-color: var(--accent-color);
  background-image: none;
}

.was-validated .form-control:invalid {
  border-color: #dc3545;
}

.invalid-feedback {
  font-size: 0.875rem;
  color: #dc3545;
  margin-top: 0.5rem;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-link {
    animation: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-color: #0066cc;
    --dark-color: #000000;
    --gray-color: #444444;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .navbar {
    background: rgba(31, 41, 55, 0.95);
  }
  
  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .about-section,
  .contact-section {
    background: var(--dark-color);
    color: white;
  }
  
  .about-section .lead,
  .feature-item {
    color: rgba(255, 255, 255, 0.8);
  }
}