/* =====================================================
   Why Choose Us – Elementor Widget Styles
   ===================================================== */

.wcu-wrapper {
  --wcu-orange:  #ff7f27;
  --wcu-dark:    #324a5a;
  --wcu-muted:   #6e8fa3;
  --wcu-line:    #dce8ef;
  --wcu-bg:      #f5f9fc;
  font-family: 'Exo', sans-serif;
  background: var(--wcu-bg);
  padding: 0;
}

/* ── INNER GRID ── */
.wcu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* ── LEFT ── */
.wcu-left {
  padding: 64px 56px 64px 0;
  border-right: 1.5px solid var(--wcu-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: visible;
  opacity: 0;
  transform: translateX(-20px);
  animation: wcu-slide-left 0.7s 0.1s ease forwards;
}

.wcu-circle-deco {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid var(--wcu-line);
  position: absolute;
  top: -40px;
  left: -80px;
  pointer-events: none;
}

.wcu-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wcu-orange);
  margin-bottom: 24px;
}
.wcu-eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--wcu-orange);
  flex-shrink: 0;
}

.wcu-heading {
  font-family: 'Exo', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--wcu-dark);
  margin: 0 0 28px;
}
.wcu-heading em {
  font-style: italic;
  font-weight: 800;
  color: var(--wcu-orange);
}

.wcu-intro {
  font-size: 15px;
  color: var(--wcu-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 340px;
  margin: 0 0 44px;
}

.wcu-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--wcu-orange);
  color: #fff !important;
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: 100px;
  text-decoration: none !important;
  width: fit-content;
  transition: background 0.25s ease, gap 0.25s ease;
}
.wcu-cta:hover {
  background: #d96520;
  gap: 18px;
}
.wcu-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── RIGHT ── */
.wcu-right {
  padding: 64px 0 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wcu-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 20px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--wcu-line);
  position: relative;
  cursor: default;
  opacity: 0;
  transform: translateX(20px);
  animation: wcu-slide-right 0.55s ease forwards;
}
.wcu-item:first-child { border-top: 1px solid var(--wcu-line); }

.wcu-item:nth-child(1) { animation-delay: 0.2s; }
.wcu-item:nth-child(2) { animation-delay: 0.35s; }
.wcu-item:nth-child(3) { animation-delay: 0.5s; }
.wcu-item:nth-child(4) { animation-delay: 0.65s; }
.wcu-item:nth-child(5) { animation-delay: 0.8s; }
.wcu-item:nth-child(6) { animation-delay: 0.95s; }

/* Accent left bar */
.wcu-item::before {
  content: '';
  position: absolute;
  left: -64px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--wcu-orange);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.wcu-item:hover::before { transform: scaleY(1); }

.wcu-num {
  font-family: 'Exo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--wcu-orange);
  opacity: 0.7;
  letter-spacing: 0.08em;
  padding-top: 3px;
}

.wcu-item-title {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--wcu-dark);
  margin: 0 0 6px;
  line-height: 1.3;
  transition: color 0.2s;
}
.wcu-item:hover .wcu-item-title { color: var(--wcu-orange); }

.wcu-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wcu-orange);
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}
.wcu-item:hover .wcu-dot { opacity: 1; transform: scale(1); }

.wcu-item-desc {
  font-family: 'Exo', sans-serif;
  font-size: 13.5px;
  color: var(--wcu-muted);
  line-height: 1.65;
  font-weight: 300;
  margin: 0;
}

/* ── STATS ROW ── */
.wcu-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1.5px solid var(--wcu-line);
  opacity: 0;
  animation: wcu-slide-right 0.6s 1s ease forwards;
}

.wcu-stat {
  padding: 28px 32px;
  border-right: 1px solid var(--wcu-line);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
}
.wcu-stat:last-child { border-right: none; }
.wcu-stat:hover { background: rgba(50,74,90,0.04); }

.wcu-stat-num {
  font-family: 'Exo', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--wcu-orange);
  line-height: 1;
  flex-shrink: 0;
}

.wcu-stat-label {
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  color: var(--wcu-muted);
  font-weight: 400;
  line-height: 1.4;
  max-width: 80px;
}

/* ── ANIMATIONS ── */
@keyframes wcu-slide-left {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes wcu-slide-right {
  to { opacity: 1; transform: translateX(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .wcu-inner {
    grid-template-columns: 1fr;
  }
  .wcu-left {
    padding: 40px 0 32px;
    border-right: none;
    border-bottom: 1.5px solid var(--wcu-line);
  }
  .wcu-right {
    padding: 40px 0 0;
  }
  .wcu-item::before { left: -16px; }
  .wcu-stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .wcu-stat:nth-child(2) { border-right: none; }
  .wcu-stat:nth-child(1),
  .wcu-stat:nth-child(2) {
    border-bottom: 1px solid var(--wcu-line);
  }
}

@media (max-width: 480px) {
  .wcu-stats-row { grid-template-columns: 1fr; }
  .wcu-stat { border-right: none !important; border-bottom: 1px solid var(--wcu-line); }
  .wcu-stat:last-child { border-bottom: none; }
  .wcu-heading { font-size: 38px; }
}
