/* /css/components/why-choose.css */
.wc-section {
  min-height: 100vh;
  padding: 100px 0 0 0;
  position: relative;
  overflow: hidden;
}

/* Background Effects */
.wc-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.wc-bg-gradient-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.wc-bg-orb-1 {
  top: -200px;
  right: -100px;
  background: var(--gold);
}

.wc-bg-orb-2 {
  bottom: -200px;
  left: -100px;
  background: #1a237e;
}

/* Particles */
.wc-particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wc-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: wc-float 8s infinite;
}

@keyframes wc-float {
  0%, 100% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-100vh) scale(1); }
}

/* Container */
.wc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header */
.wc-section-header {
  text-align: center;
  margin-bottom: 80px;
}

.wc-section-label {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}

.wc-section-label::before,
.wc-section-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.wc-section-label::before {
  right: calc(100% + 20px);
}

.wc-section-label::after {
  left: calc(100% + 20px);
}

.wc-section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
}

.wc-section-title .wc-highlight {
  color: var(--gold);
  position: relative;
  display: inline-block;
}

.wc-section-title .wc-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gold-g);
  z-index: -1;
  transform: skewX(-5deg);
}

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

/* Stats Grid */
.wc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.wc-stat-card {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wc-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(201, 168, 76, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wc-stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-g);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px var(--gold-g);
}

.wc-stat-card:hover::before {
  opacity: 1;
}

.wc-stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--bg2), var(--bg));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wc-stat-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.wc-stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold-l);
  margin-bottom: 8px;
}

.wc-stat-value .wc-unit {
  font-size: 1.5rem;
  color: var(--txt2);
}

.wc-stat-label {
  font-size: 0.95rem;
  color: var(--txt2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.wc-stat-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--color-success);
  font-weight: 500;
}

/* Feature Cards */
.wc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.wc-feature-card {
  background: var(--bg2);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  gap: 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.wc-feature-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at top right, var(--gold-g), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wc-feature-card:hover {
  border-color: var(--gold-g);
  transform: translateX(8px);
}

.wc-feature-card:hover::after {
  opacity: 0.3;
}

.wc-feature-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 30px;
}

.wc-feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--bg);
  fill: none;
  stroke-width: 2;
}

.wc-feature-content h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--txt2);
}

.wc-feature-content p {
  color: var(--txt2);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CTA Section */
.wc-cta-section {
  text-align: center;
  margin-top: 80px;
  padding-top: 60px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border: 1px solid var(--gold-d);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

.wc-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, var(--gold-g) 0%, transparent 60%);
  pointer-events: none;
}

.wc-cta-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
}

.wc-cta-text {
  color: var(--txt2);
  margin-bottom: 30px;
  position: relative;
}