/* Infrastructure Page Specific Styles */

.page-header {
  background: linear-gradient(135deg, #00294C 0%, #01366C 100%);
  position: relative;
  overflow: hidden;
}

.page-hero {
  padding: 150px 0 100px;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 181, 6, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title .colorized {
  color: #FFB506;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 1.1rem;
}

.feature-item i {
  color: #FFB506;
  font-size: 1.5rem;
}

.cta-button {
  display: inline-block;
  background-color: #FFB506;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 181, 6, 0.3);
}

.cta-button:hover {
  background-color: white;
  color: #01366C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 181, 6, 0.4);
}

.hero-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 181, 6, 0.3));
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  color: #01366C;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
  height: 100%;
}

.service-card:hover {
  border-color: #FFB506;
  box-shadow: 0 10px 40px rgba(0, 41, 76, 0.1);
  transform: translateY(-5px);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

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

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #01366C;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Process Timeline Section */
.process-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

.process-timeline {
  position: relative;
  padding: 50px 0;
  margin-top: 50px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #FFB506 0%, #FFC940 100%);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  width: 100%;
}

.timeline-item:nth-child(odd) {
  justify-content: flex-start;
}

.timeline-item:nth-child(even) {
  justify-content: flex-end;
}

.timeline-item:nth-child(odd) .timeline-content {
  text-align: right;
  margin-right: calc(50% + 40px);
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: left;
  margin-left: calc(50% + 40px);
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 0 0 10px white, 0 0 0 12px #FFB506;
  z-index: 2;
}

.timeline-content {
  flex: 0 1 calc(50% - 80px);
  max-width: calc(50% - 80px);
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 41, 76, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 41, 76, 0.15);
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: #01366C;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: white;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.partner-card {
  background: white;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: #FFB506;
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 41, 76, 0.1);
}

.partner-card img {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
}

.partner-card h4 {
  font-size: 1.5rem;
  color: #01366C;
  font-weight: 600;
  margin-bottom: 10px;
}

.partner-card p {
  color: #666;
  margin: 0;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

.feature-box {
  display: flex;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #FFB506;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 41, 76, 0.05);
  height: 100%;
}

.feature-box:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 25px rgba(0, 41, 76, 0.1);
}

.feature-box-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFB506 0%, #FFC940 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-box-icon i {
  font-size: 1.8rem;
  color: white;
}

.feature-box-content h4 {
  font-size: 1.3rem;
  color: #01366C;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-box-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #01366C 0%, #00294C 100%);
  color: white;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.cta-button-large {
  display: inline-block;
  background-color: #FFB506;
  color: white;
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 181, 6, 0.3);
  white-space: nowrap;
}

.cta-button-large:hover {
  background-color: white;
  color: #01366C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 181, 6, 0.4);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .process-timeline::before {
    left: 30px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    flex: 1;
    max-width: 100%;
    margin-left: 100px;
    margin-right: 20px;
  }

  .timeline-marker {
    left: 30px;
    transform: translateX(0);
  }

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

  .cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-features {
    flex-direction: column;
    gap: 1rem;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .timeline-marker {
    left: 30px;
    transform: translateX(0);
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    padding-left: 90px;
    padding-right: 15px;
  }

  .feature-box {
    flex-direction: column;
    text-align: center;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}
