/* Why Choose Us Restyle - Premium Dark Theme */
:root {
  --wcu-bg-dark: #020617;
  --wcu-card-bg: rgba(15, 23, 42, 0.6);
  --wcu-accent: #3b82f6;
  --wcu-text-white: #f8fafc;
  --wcu-text-gray: #94a3b8;
  --wcu-border: rgba(59, 130, 246, 0.2);
}

/* simplified background - single layer */
.wcu-section {
  background-color: var(--wcu-bg-dark);
  color: var(--wcu-text-white);
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
  border-top-right-radius: 80px;
}

/* New Large Hexagon Background Design */
.wcu-hex-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-color: var(--wcu-bg-dark);
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(37, 99, 235, 0.05) 0%,
      transparent 40%
    );
}

/* Medium Hexagon Shapes - Distributed Left to Right */
.wcu-shape {
  position: absolute;
  width: 280px;
  height: 280px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='115' viewBox='0 0 100 115'%3E%3Cpath d='M50 0 L100 28.867 L100 86.602 L50 115.47 L0 86.602 L0 28.867 Z' fill='rgba(59, 130, 246, 0.04)' /%3E%3C/svg%3E")
    no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
}

.wcu-shape.s1 {
  top: 10%;
  left: 5%;
  transform: rotate(15deg);
}

.wcu-shape.s2 {
  top: 55%;
  left: 25%;
  width: 280px;
  height: 280px;
  transform: rotate(-10deg);
  opacity: 0.6;
}

.wcu-shape.s3 {
  top: 5%;
  left: 60%;
  width: 350px;
  height: 350px;
  transform: rotate(25deg);
  opacity: 0.5;
}

.wcu-shape.s4 {
  top: 60%;
  left: 80%;
  width: 300px;
  height: 300px;
  transform: rotate(-15deg);
  opacity: 0.7;
}

.wcu-shape.s5 {
  top: 60%;
  left: 80%;
  width: 300px;
  height: 300px;
  transform: rotate(-15deg);
  opacity: 0.7;
}

.wcu-container {
  position: relative;
  z-index: 2;
}

.wcu-top-row {
  margin-bottom: 60px;
  align-items: center;
}

.wcu-label {
  color: var(--wcu-accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 15px;
  display: block;
}

.wcu-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  max-width: 100%;
  color: #ffffff !important;
}

.wcu-intro-wrap {
  position: relative;
  padding-top: 20px;
}

.wcu-blue-line {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--wcu-accent) 0%, transparent 100%);
  margin-bottom: 30px;
  border-radius: 2px;
}

.wcu-description {
  color: var(--wcu-text-gray);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.wcu-btn-learn {
  background: white;
  color: var(--wcu-bg-dark);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.wcu-btn-learn:hover {
  transform: translateY(-3px);
  background: #f1f5f9;
}

/* Card Section */
.wcu-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.wcu-card {
  background: var(--wcu-card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--wcu-border);
  padding: 40px 30px;
  border-radius: 4px;
  transition: all 0.3s ease;
  height: 100%;
}

.wcu-card:hover {
  border-color: var(--wcu-accent);
  transform: translateY(-5px);
  background: rgba(30, 41, 59, 0.8);
}

.wcu-card-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  display: block;
  color: var(--wcu-text-white);
}

.wcu-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--wcu-text-white);
}

.wcu-card-text {
  color: var(--wcu-text-gray);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 991px) {
  .wcu-section {
    border-top-right-radius: 0;
  }
  .wcu-title {
    font-size: 2.1rem;
    /* margin-bottom: 30px; */
  }
  .wcu-top-row {
    text-align: center;
  }
  .wcu-title {
    max-width: 100%;
  }
  .wcu-blue-line {
    margin: 20px auto;
  }
}
