/* About Why Choose Us Component Styles */
:root {
  /* Colors */
  --color-white: #ffffff;
  --color-text: #1f2937;
  --color-text-secondary: #6b7280;
  --color-primary: #2d9db2;
  --color-teal-300: #32b8c6;
  --color-teal-400: #2da6b2;
  --color-teal-500: #21808d;

  /* Typography */
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-4xl: 2.25rem;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;

  /* Spacing */
  --space-8: 8px;
  --space-16: 16px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Container */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Hero Section - Value Proposition Cards */
.hero-section {
  padding: var(--space-32) 0;
  background-color: var(--color-white);
}

.hero-section__features-wrapper {
  position: relative;
  z-index: 3;
}

.hero-section__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .hero-section__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-section__features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 0;
  }
}

.hero-section__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-section__feature-1 {
  background-image: url('/wp-content/uploads/2025/08/bg-service1-1.png');
  background-repeat: no-repeat;
  background-position: top right;
}

.hero-section__feature-2 {
  background-image: url('/wp-content/uploads/2025/08/bg-service2-1.png');
  background-repeat: no-repeat;
  background-position: bottom right;
}

.hero-section__feature-3 {
  background-image: url('/wp-content/uploads/2025/08/bg-service3-1.png');
  background-repeat: no-repeat;
  background-position: top right;
}

.hero-section__feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-section__feature-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: var(--font-size-sm);
  font-weight: 700;
  flex-shrink: 0;
}

.hero-section__feature-1 .hero-section__feature-number {
  color: #00c3ff;
  background: rgba(0, 195, 255, 0.15);
}

.hero-section__feature-2 .hero-section__feature-number {
  color: #0160e7;
  background: #eaf3ff;
}

.hero-section__feature-3 .hero-section__feature-number {
  color: #fe4c1c;
  background: #ffebe6;
}

.hero-section__feature-content {
  flex: 1;
  text-align: left;
}

.hero-section__feature-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
  line-height: var(--line-height-tight);
}

.hero-section__feature-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

@media (max-width: 767px) {
  .hero-section__feature {
    padding: 1rem;
  }

  .hero-section__feature-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }
}

/* Main Content Section */
.main-content-section {
  padding: var(--space-32) 0;
  background-color: #f0f6f6;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-32);
  align-items: center;
}

.section-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-16);
}

.main-heading {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  margin: 0 0 var(--space-24) 0;
}

.main-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-normal);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-32) 0;
}

.progress-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-24);
}

.progress-item {
  width: 100%;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-8);
}

.progress-label {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.progress-percentage {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}

.progress-bar {
  height: 10px;
  background-color: rgba(45, 166, 178, 0.12);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-teal-400) 0%, var(--color-teal-500) 100%);
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  opacity: 1;
}

.progress-fill.animate {
  opacity: 1 !important;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
  animation: shimmer 2s infinite;
}

/* Team Illustration */
.content-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.illustration-placeholder {
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.team-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Statistics Section */
.statistics-section {
  padding: var(--space-32) 0;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff6b35 100%);
  color: var(--color-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-24);
  text-align: center;
}

.stat-item {
  padding: var(--space-16);
}

.stat-value {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-8);
  color: var(--color-white);
}

.stat-label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Animations */
@keyframes shimmer {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(20px);
    opacity: 0;
  }
}

/* AOS Animations */
[data-aos="fade-up"] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-enabled [data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
}

[data-aos="fade-up"].aos-animate,
.js-enabled [data-aos="fade-up"].aos-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Design */
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-32);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-32);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-32);
  }

  .illustration-placeholder {
    height: 400px;
  }
}

/* Accessibility */
.hero-section__feature:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .hero-section__feature {
    transition: none;
  }

  .progress-fill {
    transition: none;
  }

  [data-aos] {
    transition: none !important;
    animation: none !important;
  }
}