/* Our Approach Section Styling - Dark Theme */
.approach-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    #1a2a3a,
    #0a1525
  ); /* Dark gradient background */
  color: #ffffff;
  overflow: hidden;
}

/* Background decorative elements */
.approach-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(250, 208, 44, 0.1) 0%,
    rgba(250, 208, 44, 0) 70%
  );
  z-index: 0;
  animation: float-element 15s infinite alternate ease-in-out;
}

.approach-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(250, 208, 44, 0.08) 0%,
    rgba(250, 208, 44, 0) 70%
  );
  z-index: 0;
  animation: float-element 18s infinite alternate-reverse ease-in-out;
}

/* Floating geometric shapes */
.approach-section .geometric-shape {
  position: absolute;
  z-index: 0;
  opacity: 0.15;
}

.approach-section .shape-1 {
  width: 80px;
  height: 80px;
  background: #fad02c;
  border-radius: 30%;
  animation: float-rotate 20s infinite linear;
}

.approach-section .shape-2 {
  width: 60px;
  height: 60px;
  border: 2px solid #fad02c;
  transform: rotate(45deg);
  animation: float-element 25s infinite alternate ease-in-out;
}

.approach-section .shape-3 {
  width: 40px;
  height: 40px;
  background: rgba(250, 208, 44, 0.5);
  border-radius: 50%;
  animation: pulse 8s infinite alternate ease-in-out;
}

.approach-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 60px;
}

.approach-steps {
  flex: 1;
  min-width: 300px;
}

.approach-step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.5s ease;
  padding: 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.approach-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.approach-step.step-dimmed {
  opacity: 0.5;
}

.approach-step:last-child {
  margin-bottom: 0;
}

.approach-step:hover {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(250, 208, 44, 0.2);
  transform: translateX(5px);
}

.approach-step::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 60px;
  bottom: -40px;
  width: 1px;
  background: linear-gradient(to bottom, #fad02c 60%, transparent);
  z-index: 0;
}

.approach-step:last-child::after {
  display: none;
}

.step-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fad02c;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(250, 208, 44, 0.1);
  box-shadow: 0 0 0 5px rgba(250, 208, 44, 0.05);
  margin-right: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pulse-effect {
  animation: pulse-glow 3s infinite alternate ease-in-out;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fad02c;
  margin-bottom: 10px;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.approach-visual {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.approach-visual.animated {
  opacity: 1;
  transform: translateY(0);
}

.approach-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.9) contrast(1.1);
}

.approach-image:hover img {
  transform: scale(1.05);
}

.approach-quote {
  padding: 25px;
  background-color: rgba(10, 30, 50, 0.5);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #fad02c;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.approach-quote.animated {
  opacity: 1;
  transform: translateY(0);
}

.approach-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.5;
}

.quote-author {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  text-align: right;
}

/* Animation keyframes */
@keyframes float-element {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-30px);
  }
}

@keyframes float-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 208, 44, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(250, 208, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 208, 44, 0);
  }
}

/* Update section header for dark theme */
.approach-section .section-header h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.approach-section .header-line {
  width: 80px;
  height: 3px;
  background: #fad02c;
  margin: 0 auto 20px;
  box-shadow: 0 0 10px #fad02c;
}

.approach-section .section-tagline {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .approach-container {
    flex-direction: column;
    gap: 40px;
  }

  .approach-visual {
    width: 100%;
  }

  .approach-section .geometric-shape {
    display: none;
  }
}

@media (max-width: 768px) {
  .approach-section {
    padding: 80px 0;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .approach-image {
    height: 280px;
  }

  .approach-quote p {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .approach-step {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number {
    margin-bottom: 15px;
    margin-right: 0;
  }

  .approach-step::after {
    left: 20px;
    top: 70px;
  }

  .approach-section .section-header h2 {
    font-size: 2rem;
  }
}
