/* Approach Page Styles */
:root {
  --primary-color: #e67e22;
  --secondary-color: #2c3e50;
  --accent-color: #3498db;
  --light-bg: #f9f9f9;
  --dark-bg: #2c3e50;
  --text-dark: #333;
  --text-light: #777;
  --box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

#approach-page {
  overflow-x: hidden;
  color: var(--text-dark);
}

/* Page Header - More dramatic and impactful */
.page-header {
  height: 85vh;
  background-image: url('../images/approach-header.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(230, 126, 34, 0.7));
}

.page-header-content {
  position: relative;
  z-index: 2;
  /* max-width: 900px; */
  /* padding: 0 20px; */
  animation: fadeInUp 1s ease-out;
}

.page-header h1 {
  font-size: 5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-header p {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Introduction Section - More elegant with better spacing */
.approach-intro {
  padding: 120px 0;
  background-color: white;
  position: relative;
}

.approach-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/pattern-light.jpeg');
  opacity: 0.03;
  z-index: 0;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.intro-text h2 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  font-weight: 700;
}

.intro-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 30px;
}

.intro-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.intro-image::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  pointer-events: none;
}

.intro-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.intro-image:hover {
  transform: perspective(1000px) rotateY(0deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

/* Philosophy Section - More modern card design */
.philosophy-section {
  padding: 120px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.philosophy-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: white;
  transform: skewY(-3deg);
}

.philosophy-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.philosophy-content h2 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  display: inline-block;
  font-weight: 700;
}

.philosophy-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.philosophy-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.philosophy-card {
  background-color: white;
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  z-index: 2;
  transition: var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.philosophy-card:hover::before {
  height: 10px;
}

.philosophy-card i {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.philosophy-card:hover i {
  transform: scale(1.1);
  color: var(--accent-color);
}

.philosophy-card h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.philosophy-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Steps Section - Modern timeline with animations */
.steps-section {
  padding: 120px 0;
  background-color: white;
  position: relative;
}

.steps-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--light-bg);
  transform: skewY(-3deg);
}

.steps-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center; /* Center align all content */
}

.steps-content h2 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  display: inline-block;
  font-weight: 700;
}

.steps-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.steps-content > p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 70px;
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Add a utility class for text centering */
.text-center {
  text-align: center;
}

/* Steps Styling - More dynamic timeline */
.approach-steps {
  position: relative;
  padding: 20px 0;
  margin-top: 60px; /* Add more space between intro text and steps */
}

.approach-steps::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 6px;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
  border-radius: 3px;
  z-index: 0;
}

.step {
  display: flex;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.5s ease;
}

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

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

.step-number {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.4);
}

.step-content {
  padding-left: 50px;
  padding-top: 10px;
}

.step-content h3 {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.step-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 600px;
}

/* Benefits Section - Modern grid layout */
.benefits-section {
  padding: 120px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: white;
  transform: skewY(-3deg);
}

.benefits-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.benefits-header {
  text-align: center;
  margin-bottom: 80px;
}

.benefits-header h2 {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
  display: inline-block;
  font-weight: 700;
}

.benefits-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

.benefits-header p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.benefit-item {
  background-color: white;
  padding: 40px 30px;
  border-radius: 15px;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.1), rgba(52, 152, 219, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}

.benefit-icon i {
  font-size: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-text h3 {
  font-size: 1.6rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* CTA Section - More impactful design */
.cta-section {
  padding: 150px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: white;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(230, 126, 34, 0.8));
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}



.cta-content p {
  font-size: 1.5rem;
  margin-bottom: 50px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {
  background-color: #d35400;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .page-header h1 {
    font-size: 4rem;
  }
  
  .intro-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .intro-image {
    order: -1;
    transform: perspective(1000px) rotateY(0);
  }
  
  .philosophy-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .page-header {
    height: 70vh;
  }
  
  .page-header h1 {
    font-size: 3.5rem;
  }
  
  .page-header p {
    font-size: 1.2rem;
  }
  
  .approach-intro,
  .steps-section,
  .benefits-section,
  .philosophy-section {
    padding: 80px 0;
  }
  
  .intro-text h2,
  .steps-content h2,
  .benefits-header h2,
  .philosophy-content h2 {
    font-size: 2.5rem;
  }
  
  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .approach-steps::before {
    left: 35px;
  }
  
  .step-content {
    padding-left: 40px;
  }
  
  .step-content h3 {
    font-size: 1.8rem;
  }
  
  .philosophy-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .cta-content h2 {
    font-size: 2.8rem;
  }
  
  .cta-content p {
    font-size: 1.3rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 20px;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .page-header h1 {
    font-size: 2.8rem;
  }
  
  .page-header p {
    font-size: 1.1rem;
  }
  
  .intro-text h2,
  .steps-content h2,
  .benefits-header h2,
  .philosophy-content h2 {
    font-size: 2.2rem;
  }
  
  .intro-text p,
  .steps-content > p,
  .benefits-header p,
  .philosophy-content p {
    font-size: 1.1rem;
  }
  
  .step {
    flex-direction: column;
    margin-bottom: 60px;
    align-items: flex-start;
  }
  
  .step-number {
    margin-bottom: 20px;
  }
  
  .step-content {
    padding-left: 0;
  }
  
  .approach-steps::before {
    display: none;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .cta-content p {
    font-size: 1.1rem;
  }
}
