/* Expertise Section Enhanced - Matching index-enhanced.html style */

/* Override any conflicting styles */
.section.section-expertise {
  background: #ffffff !important;
  color: #000 !important;
  padding: 100px 0;
  position: relative;
}

.section-expertise * {
  color: inherit;
}

/* Expertise Header Section */
.expertise-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-expertise .expertise-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #000 !important;
  margin: 20px 0 30px;
  animation: fadeIn 1s ease 0.3s backwards;
  display: block;
}

.expertise-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fdc300;
  color: #000;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(253, 195, 0, 0.3);
  animation: fadeInUp 1s ease 0.5s backwards;
}

.expertise-cta-btn:hover {
  background: #ffdb4d;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(253, 195, 0, 0.4);
  gap: 15px;
}

.expertise-cta-btn svg {
  transition: transform 0.3s ease;
}

.expertise-cta-btn:hover svg {
  transform: translateX(5px);
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-left {
  position: relative;
}

/* Title Styling */
.section-expertise .title-yellow {
  color: #fdc300 !important;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.section-expertise .gradient-text {
  background: linear-gradient(135deg, #fdc300 0%, #ffdb4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Numbered Steps List */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.steps li {
  position: relative;
  padding-left: 60px;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease backwards;
}

.steps li:nth-child(1) { animation-delay: 0.1s; }
.steps li:nth-child(2) { animation-delay: 0.2s; }
.steps li:nth-child(3) { animation-delay: 0.3s; }
.steps li:nth-child(4) { animation-delay: 0.4s; }
.steps li:nth-child(5) { animation-delay: 0.5s; }

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #6ea8ff;
  color: #000;
  background: rgba(110, 168, 255, 0.1);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.steps li:hover::before {
  background: #6ea8ff;
  color: #000;
  transform: scale(1.1);
}

.section-expertise .steps h3 {
  color: #000 !important;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-expertise .steps p {
  color: #000 !important;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Media Card */
.media-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: #1a1a1a;
  margin-bottom: 30px;
}

.media-card.tall {
  height: 500px;
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.media-card:hover img {
  transform: scale(1.05);
}

/* Statistics Box */
.expertise-stats-box {
  background: linear-gradient(135deg, rgba(253, 195, 0, 0.95) 0%, rgba(255, 219, 77, 0.95) 100%);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(253, 195, 0, 0.3);
  backdrop-filter: blur(10px);
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
}

.stat-row:last-child {
  margin-bottom: 0;
}

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

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Slide In Animation */
.slide-in {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 0.8s ease forwards;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .two-col {
    gap: 40px;
  }

  .title-yellow {
    font-size: 2.5rem;
  }

  .steps li {
    padding-left: 50px;
  }

  .steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .media-card.tall {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .title-yellow {
    font-size: 2rem;
    text-align: center;
  }

  .steps h3 {
    font-size: 1.2rem;
  }

  .media-card.tall {
    height: 350px;
  }

  .expertise-stats-box {
    padding: 20px;
  }

  .stat-value {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .section-expertise {
    padding: 60px 0;
  }

  .title-yellow {
    font-size: 1.8rem;
  }

  .steps li {
    padding-left: 45px;
    margin-bottom: 25px;
  }

  .steps li::before {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }

  .steps h3 {
    font-size: 1.1rem;
  }

  .steps p {
    font-size: 0.95rem;
  }

  .media-card.tall {
    height: 250px;
  }

  .stat-row {
    gap: 20px;
  }

  .stat-value {
    font-size: 1.8rem;
  }
}