/* Modern TeamTalks Styles */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary-color: #64748b;
  --accent-color: #f59e0b;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-light: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

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

.hero-description {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-description p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.hero-description .lead {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.hero-cta {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

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

.btn-outline-secondary {
  border: 2px solid var(--border-light);
  border-radius: 12px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Hero Images */
.hero-images {
  position: relative;
  height: 500px;
  animation: fadeInRight 1s ease-out 0.4s both;
}

.image-container {
  position: relative;
  height: 100%;
  width: 100%;
}

.image-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  background: white;
  padding: 8px;
}

.image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.image-card img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card-1 {
  top: 0;
  left: 0;
  width: 60%;
  height: 70%;
  z-index: 2;
}

.image-card-2 {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 60%;
  z-index: 1;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.image-card:hover .image-overlay {
  transform: translateY(0);
}

.overlay-content {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 500;
}

.overlay-content i {
  font-size: 1.5rem;
  margin-right: 8px;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
  z-index: 999;
}

.floating-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.floating-2 {
  top: 50%;
  left: -30px;
  background: var(--gradient-accent);
  animation-delay: 1s;
}

.floating-3 {
  bottom: 20%;
  right: -20px;
  animation-delay: 2s;
}

/* Background Elements */
.bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.bg-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.bg-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%);
}

/* Features Preview Section */
.features-preview {
  background: var(--bg-white);
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.feature-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  margin: 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-images {
    height: 400px;
    margin-bottom: 3rem;
  }

  .image-card-1 {
    width: 65%;
    height: 65%;
  }

  .image-card-2 {
    width: 60%;
    height: 55%;
  }

  .floating-element {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 767.98px) {
  .hero-badge {
    font-size: 0.8rem;
    padding: 10px 20px;
  }

  .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-description {
    text-align: center;
  }

  .hero-cta {
    text-align: center;
  }

  .hero-images {
    height: 300px;
  }

  .floating-2 {
    left: 10px;
  }

  .floating-3 {
    right: 10px;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-badge {
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .btn-lg {
    width: 100%;
  }

  .image-card-1 {
    width: 70%;
    height: 60%;
  }

  .image-card-2 {
    width: 65%;
    height: 50%;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.btn:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Modern Footer Styles */
.modern-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.footer-content {
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 2;
}

.footer-section {
  height: 100%;
}

/* Footer Brand */
.footer-brand {
  margin-bottom: 2rem;
}

.brand-title {
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.brand-subtitle {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-description {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* Footer Titles */
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: #3b82f6;
  transform: translateX(5px);
}

.footer-link i {
  font-size: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-link:hover i {
  opacity: 1;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.social-link i {
  font-size: 1.1rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-label {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.contact-value {
  color: #cbd5e1;
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: #3b82f6;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.copyright {
  color: #94a3b8;
  font-size: 0.9rem;
}

.copyright strong {
  color: white;
}

.footer-bottom-links {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

.bottom-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.bottom-link:hover {
  color: #3b82f6;
}

/* Footer Background Elements */
.footer-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.footer-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
}

.footer-bg-circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.footer-bg-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
}

/* Footer Responsive Fix - Centrar todos los elementos */

/* Responsive Footer - Elementos centrados */
@media (max-width: 991.98px) {
  .footer-content {
    padding: 3rem 0 1.5rem;
  }

  .footer-section {
    margin-bottom: 2rem;
    text-align: center;
    /* Centrar todo el contenido */
  }

  .brand-title {
    font-size: 1.75rem;
  }

  /* Centrar descripción del footer */
  .footer-description {
    text-align: center;
    max-width: 400px;
    margin: 0 auto 2rem auto;
  }

  /* Centrar enlaces del footer */
  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  /* Centrar información de contacto */
  .contact-info {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
  }

  .social-links {
    justify-content: center;
    margin-top: 1rem;
  }
}

@media (max-width: 767.98px) {
  .footer-content {
    padding: 2rem 0 1rem;
  }

  .footer-section {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  /* Centrar línea decorativa del título */
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Centrar todos los enlaces */
  .footer-links {
    align-items: center;
    text-align: center;
  }

  .footer-link {
    justify-content: center;
    text-align: center;
  }

  /* Centrar información de contacto */
  .contact-info {
    align-items: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    align-items: center;
    max-width: 250px;
    margin: 0 auto;
  }

  .contact-details {
    text-align: center;
    align-items: center;
  }

  /* Centrar footer bottom */
  .footer-bottom {
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 1rem;
    gap: 1.5rem;
  }

  .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }

  /* Centrar redes sociales */
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {

  /* Footer bottom links en columna y centrados */
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    text-align: center;
  }

  /* Redes sociales centradas con menos gap */
  .social-links {
    gap: 0.75rem;
    justify-content: center;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  /* Información de contacto completamente centrada */
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
  }

  .contact-details {
    text-align: center;
    align-items: center;
  }

  /* Enlaces del footer centrados */
  .footer-links {
    text-align: center;
    align-items: center;
  }

  .footer-link {
    justify-content: center;
    text-align: center;
  }

  /* Descripción del footer centrada */
  .footer-description {
    text-align: center;
    margin: 0 auto 2rem auto;
  }

  /* Brand section centrada */
  .footer-brand {
    text-align: center;
  }

  .brand-title,
  .brand-subtitle {
    text-align: center;
  }
}

/* Ajustes adicionales para centrado perfecto */
@media (max-width: 480px) {
  .footer-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-description {
    text-align: center;
    max-width: 280px;
  }

  .contact-info {
    width: 100%;
    align-items: center;
  }

  .contact-item {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
  }
}

/* Asegurar que todos los textos estén centrados en móvil */
@media (max-width: 767.98px) {
  .footer-section * {
    text-align: center;
  }

  .footer-section .footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-section .contact-info {
    width: 100%;
    align-items: center;
  }

  .footer-section .social-links {
    width: 100%;
    justify-content: center;
  }
}


/* Footer animations */
.footer-section {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.footer-section:nth-child(1) {
  animation-delay: 0.1s;
}

.footer-section:nth-child(2) {
  animation-delay: 0.2s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.3s;
}

.footer-section:nth-child(4) {
  animation-delay: 0.4s;
}

/* Hover effects for footer sections */
.footer-section:hover .footer-title {
  color: #3b82f6;
}

.footer-section:hover .footer-title::after {
  width: 50px;
}

.footer-title::after {
  transition: width 0.3s ease;
}

/* About Page Styles */
.about-hero-section {
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease-out;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.about-hero-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.about-hero-description {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* About Stats */
.about-stats-container {
  display: flex;
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.about-stat-item {
  text-align: center;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About Hero Image */
.about-hero-image-container {
  position: relative;
  animation: fadeInRight 1s ease-out 0.4s both;
}

.about-hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-hero-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-hero-image-wrapper:hover .about-hero-image {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.about-hero-image-wrapper:hover .about-image-overlay {
  transform: translateY(0);
}

.about-overlay-content {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 500;
  gap: 0.75rem;
}

.about-overlay-content i {
  font-size: 1.5rem;
}

/* About Floating Elements */
.about-floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.about-floating-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.about-floating-2 {
  bottom: 20%;
  left: -30px;
  background: var(--gradient-accent);
  animation-delay: 1.5s;
}

/* About Background Elements */
.about-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.about-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.about-bg-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.about-bg-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
}

/* About Mission Section */
.about-mission-section {
  padding: 5rem 0;
  background: white;
  position: relative;
}

.about-mission-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.about-mission-card:hover::before {
  transform: scaleX(1);
}

.about-mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.about-mission-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.about-mission-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.about-mission-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-mission-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.about-feature-item i {
  color: var(--primary-color);
  font-size: 1rem;
}

/* About Commitment Section */
.about-commitment-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.about-commitment-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  height: 100%;
}

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

.about-commitment-icon {
  position: relative;
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.about-commitment-image {
  max-width: 80px;
  height: auto;
  transition: transform 0.3s ease;
}

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

.about-icon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-commitment-card:hover .about-icon-badge {
  opacity: 1;
}

.about-commitment-content {
  padding: 2rem;
}

.about-commitment-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.about-commitment-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-commitment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-tag {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* About CTA Section */
.about-cta-section {
  padding: 4rem 0;
  background: var(--gradient-primary);
  color: white;
}

.about-cta-content {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-cta-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.about-cta-button {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-cta-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--primary-color);
}

/* Responsive About Page */
@media (max-width: 991.98px) {
  .about-hero-section {
    min-height: auto;
    padding: 3rem 0;
  }

  .about-hero-image {
    height: 400px;
  }

  .about-stats-container {
    justify-content: center;
    margin-top: 2rem;
  }

  .about-mission-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .about-commitment-icon {
    height: 150px;
    padding: 1.5rem;
  }

  .about-cta-content {
    padding: 2rem;
    text-align: center;
  }

  .about-cta-title {
    font-size: 2rem;
  }

  .about-floating-2 {
    left: 10px;
  }
}

@media (max-width: 767.98px) {
  .about-hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .about-hero-image {
    height: 300px;
  }

  .about-stats-container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .about-stat-number {
    font-size: 2rem;
  }

  .about-mission-section,
  .about-commitment-section {
    padding: 3rem 0;
  }

  .about-mission-card {
    padding: 1.5rem;
  }

  .about-commitment-content {
    padding: 1.5rem;
  }

  .about-cta-title {
    font-size: 1.75rem;
  }

  .about-cta-button {
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 575.98px) {
  .about-hero-badge {
    width: 100%;
    justify-content: center;
  }

  .about-stats-container {
    gap: 1.5rem;
  }

  .about-commitment-icon {
    height: 120px;
    padding: 1rem;
  }

  .about-commitment-image {
    max-width: 60px;
  }

  .about-icon-badge {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .about-floating-element {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Animation delays for about commitment cards */
.about-commitment-card:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-commitment-card:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-commitment-card:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Contact Page Styles - Add to existing modern-style.css */

/* Contact Hero Section */
.contact-hero-section {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

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

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease-out;
}

.contact-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Contact Form Section */
.contact-form-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.contact-form-container {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.contact-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.contact-form .form-label i {
  color: var(--primary-color);
}

.contact-input,
.contact-textarea {
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-primary);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Contact Image */
.contact-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.contact-image-container:hover .contact-image {
  transform: scale(1.05);
}

.contact-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.contact-image-container:hover .contact-image-overlay {
  transform: translateY(0);
}

.contact-overlay-content {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 500;
  gap: 0.75rem;
}

.contact-overlay-content i {
  font-size: 1.5rem;
}

/* Contact Help Section */
.contact-help-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.contact-help-card-link {
  text-decoration: none;
  color: inherit;
}

.contact-help-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-help-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-help-card:hover::before {
  transform: scaleX(1);
}

.contact-help-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.contact-help-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-help-image {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.contact-help-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  border: 3px solid white;
}

.contact-help-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-help-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-help-arrow {
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.contact-help-card:hover .contact-help-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Contact Info Section */
.contact-info-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.contact-info-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.contact-info-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-info-text {
  margin-bottom: 1rem;
}

.contact-info-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-link:hover {
  color: var(--primary-dark);
}

.contact-info-label {
  font-size: 0.9rem;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
}

/* Contact Map Section */
.contact-map-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.contact-map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.contact-map {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.contact-map-container:hover .contact-map {
  filter: grayscale(0%);
}

/* Contact Modal */
.contact-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.contact-modal-header {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.contact-modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
}

.contact-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.contact-modal-body {
  padding: 2rem;
  text-align: center;
}

.contact-modal-subtitle {
  color: var(--text-secondary);
  margin: 0;
}

.contact-modal-footer {
  border: none;
  padding: 0 2rem 2rem;
  justify-content: center;
}

.contact-modal-btn {
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.contact-modal-btn:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Responsive Contact Page */
@media (max-width: 991.98px) {
  .contact-hero-section {
    padding: 3rem 0 2rem;
  }

  .contact-form-section {
    padding: 3rem 0;
  }

  .contact-form-container {
    padding: 2rem;
    margin-bottom: 3rem;
  }

  .contact-image {
    height: 400px;
  }

  .contact-help-section,
  .contact-info-section,
  .contact-map-section {
    padding: 3rem 0;
  }

  .contact-help-card,
  .contact-info-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .contact-hero-section {
    padding: 2rem 0 1rem;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .contact-form-title {
    font-size: 1.75rem;
  }

  .contact-image {
    height: 300px;
  }

  .contact-help-card,
  .contact-info-card {
    padding: 1.5rem;
  }

  .contact-help-icon {
    width: 100px;
    height: 100px;
  }

  .contact-help-image {
    width: 60px;
    height: 60px;
  }

  .contact-map {
    height: 300px;
  }

  .contact-modal-header {
    padding: 1.5rem;
  }

  .contact-modal-body {
    padding: 1.5rem;
  }

  .contact-modal-footer {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .contact-hero-badge {
    width: 100%;
    justify-content: center;
  }

  .contact-submit-btn {
    padding: 1rem;
  }

  .contact-help-icon {
    width: 80px;
    height: 80px;
  }

  .contact-help-image {
    width: 50px;
    height: 50px;
  }

  .contact-help-badge {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .contact-info-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Contact animations */
.contact-form-container,
.contact-help-card,
.contact-info-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.contact-form-container {
  animation-delay: 0.2s;
}

.contact-help-card:nth-child(1) {
  animation-delay: 0.3s;
}

.contact-help-card:nth-child(2) {
  animation-delay: 0.4s;
}

.contact-info-card:nth-child(1) {
  animation-delay: 0.2s;
}

.contact-info-card:nth-child(2) {
  animation-delay: 0.3s;
}

.contact-info-card:nth-child(3) {
  animation-delay: 0.4s;
}

/* Support Page Styles - Add to existing modern-style.css */

/* Support Hero Section */
.support-hero-section {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

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

.support-hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease-out;
}

.support-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.support-hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Support Stats */
.support-stats-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.support-stat-item {
  text-align: center;
}

.support-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.support-stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Support Form Section */
.support-form-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.support-form-container {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.support-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
}

.support-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.support-form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.support-form .form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.support-form .form-label i {
  color: var(--primary-color);
}

.support-input,
.support-textarea {
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.support-input:focus,
.support-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  outline: none;
}

.support-textarea {
  resize: vertical;
  min-height: 140px;
}

.support-form-actions {
  text-align: center;
}

.support-submit-btn {
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.support-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-primary);
}

.support-form-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Support Info Section */
.support-info-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.support-info-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.support-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.support-info-card:hover::before {
  transform: scaleX(1);
}

.support-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.support-info-step {
  position: absolute;
  top: 25px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
}

.support-info-icon {
  width: 80px;
  height: 80px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.support-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.support-info-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Support FAQ Section */
.support-faq-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.support-accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.support-accordion-button {
  background: white;
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: 12px !important;
}

.support-accordion-button:not(.collapsed) {
  background: var(--bg-light);
  color: var(--primary-color);
  box-shadow: none;
}

.support-accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.support-accordion-button i {
  color: var(--primary-color);
}

.support-accordion-body {
  padding: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
}

/* Support Modal */
.support-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.support-modal-header {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.support-modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
}

.support-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.support-modal-body {
  padding: 2rem;
  text-align: center;
}

.support-modal-subtitle {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.support-modal-info {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.support-modal-info i {
  color: var(--primary-color);
}

.support-modal-footer {
  border: none;
  padding: 0 2rem 2rem;
  justify-content: center;
}

.support-modal-btn {
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.support-modal-btn:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Responsive Support Page */
@media (max-width: 991.98px) {
  .support-hero-section {
    padding: 3rem 0 2rem;
  }

  .support-stats-container {
    gap: 2rem;
  }

  .support-form-section {
    padding: 3rem 0;
  }

  .support-form-container {
    padding: 2rem;
  }

  .support-info-section,
  .support-faq-section {
    padding: 3rem 0;
  }

  .support-info-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .support-hero-section {
    padding: 2rem 0 1rem;
  }

  .support-stats-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .support-stat-number {
    font-size: 2rem;
  }

  .support-form-container {
    padding: 1.5rem;
  }

  .support-form-title {
    font-size: 1.75rem;
  }

  .support-info-card {
    padding: 1.5rem;
  }

  .support-modal-header {
    padding: 1.5rem;
  }

  .support-modal-body {
    padding: 1.5rem;
  }

  .support-modal-footer {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .support-hero-badge {
    width: 100%;
    justify-content: center;
  }

  .support-submit-btn {
    width: 100%;
    padding: 1rem;
  }

  .support-info-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .support-info-step {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Support animations */
.support-form-container,
.support-info-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.support-form-container {
  animation-delay: 0.2s;
}

.support-info-card:nth-child(1) {
  animation-delay: 0.3s;
}

.support-info-card:nth-child(2) {
  animation-delay: 0.4s;
}

.support-info-card:nth-child(3) {
  animation-delay: 0.5s;
}

/* Reports Page Styles - Add to existing modern-style.css */

/* Reports Hero Section */
.reports-hero-section {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

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

.reports-hero-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
  animation: fadeInUp 0.8s ease-out;
}

.reports-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.reports-hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Security Features */
.reports-security-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.security-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.security-feature i {
  color: #dc2626;
  font-size: 1.2rem;
}

/* Reports Form Section */
.reports-form-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.reports-form-container {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.reports-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.reports-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.reports-form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.reports-form .form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.reports-form .form-label i {
  color: #dc2626;
}

.optional-badge {
  background: #10b981;
  color: white;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.required-badge {
  background: #dc2626;
  color: white;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reports-input,
.reports-select,
.reports-textarea {
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.reports-input:focus,
.reports-select:focus,
.reports-textarea:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
  outline: none;
}

.reports-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.reports-select {
  cursor: pointer;
}

.reports-select optgroup {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-light);
}

.reports-select option {
  padding: 0.5rem;
  color: var(--text-secondary);
}

/* Privacy Notice */
.reports-privacy-notice {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #0ea5e9;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.privacy-icon {
  width: 50px;
  height: 50px;
  background: #0ea5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.privacy-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.privacy-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Form Actions */
.reports-form-actions {
  text-align: center;
}

.reports-submit-btn {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border: none;
  border-radius: 12px;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  color: white;
}

.reports-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
}

.reports-form-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Reports Info Section */
.reports-info-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

.reports-info-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.reports-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.reports-info-card.critical::before {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.reports-info-card.moderate::before {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.reports-info-card.minor::before {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.reports-info-card:hover::before {
  transform: scaleX(1);
}

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

.reports-info-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.reports-info-icon.critical {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
}

.reports-info-icon.moderate {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.reports-info-icon.minor {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.reports-info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.reports-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.reports-info-list li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.reports-info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.reports-info-card.critical .reports-info-list li::before {
  color: #dc2626;
}

.reports-info-card.moderate .reports-info-list li::before {
  color: #f59e0b;
}

.reports-info-card.minor .reports-info-list li::before {
  color: #2563eb;
}

.reports-info-badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.reports-info-badge.critical {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.reports-info-badge.moderate {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.reports-info-badge.minor {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

/* Reports Modal */
.reports-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.reports-modal-header {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  color: white;
  border: none;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.reports-modal-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
}

.reports-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
}

.reports-modal-body {
  padding: 2rem;
  text-align: center;
}

.reports-modal-info {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.modal-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.modal-info-item:last-child {
  margin-bottom: 0;
}

.modal-info-item i {
  color: #dc2626;
}

.reports-modal-footer {
  border: none;
  padding: 0 2rem 2rem;
  justify-content: center;
}

.reports-modal-btn {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border: none;
  border-radius: 12px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  color: white;
}

.reports-modal-btn:hover {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: white;
}

/* Responsive Reports Page */
@media (max-width: 991.98px) {
  .reports-hero-section {
    padding: 3rem 0 2rem;
  }

  .reports-security-features {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .reports-form-section {
    padding: 3rem 0;
  }

  .reports-form-container {
    padding: 2rem;
  }

  .reports-info-section {
    padding: 3rem 0;
  }

  .reports-info-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .reports-privacy-notice {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .reports-hero-section {
    padding: 2rem 0 1rem;
  }

  .security-feature {
    width: 100%;
    justify-content: center;
  }

  .reports-form-container {
    padding: 1.5rem;
  }

  .reports-form-title {
    font-size: 1.75rem;
  }

  .reports-info-card {
    padding: 1.5rem;
  }

  .reports-modal-header {
    padding: 1.5rem;
  }

  .reports-modal-body {
    padding: 1.5rem;
  }

  .reports-modal-footer {
    padding: 0 1.5rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .reports-hero-badge {
    width: 100%;
    justify-content: center;
  }

  .reports-submit-btn {
    width: 100%;
    padding: 1rem;
  }

  .reports-info-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .optional-badge,
  .required-badge {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
  }
}

/* Reports animations */
.reports-form-container,
.reports-info-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.reports-form-container {
  animation-delay: 0.2s;
}

.reports-info-card:nth-child(1) {
  animation-delay: 0.3s;
}

.reports-info-card:nth-child(2) {
  animation-delay: 0.4s;
}

.reports-info-card:nth-child(3) {
  animation-delay: 0.5s;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--background-color);
}

::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #6b7280;
}