/* SWPPP Page Specific Styles */

/* Hero Section */
.hero-swppp {
  background-image: url('https://c.animaapp.com/mkzluyi7JZaEsw/img/generated-image-1e8e64f6-5157-42c9-a738-2c60a2ad17bd-1-6.png');
  background-size: cover;
  background-position: center;
  height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 116px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hero-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.text-green {
  color: #00D87B;
}

.text-white {
  color: #FFFFFF;
}

.hero-description {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto;
}

/* Services Section */
.swppp-services-section {
  padding: 100px 0;
  background-color: #f2f2f7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  color: rgba(27, 31, 38, 0.72);
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
}

.card-accent {
  height: 4px;
  background: linear-gradient(90deg, #0052E2 0%, #00D87B 100%);
  width: 100%;
}

.card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 82, 226, 0.05);
  border-radius: 16px;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #1B1F26;
}

.card-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(27, 31, 38, 0.72);
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(27, 31, 38, 0.72);
}

.feature-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: #0052E2;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid #FFFFFF;
}

.step-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1B1F26;
}

.step-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(27, 31, 38, 0.72);
}

.step-line {
  display: none; /* Hidden by default, can be added for desktop if needed */
}

/* Why Choose Section */
.why-choose-section {
  padding: 100px 0;
  background-color: #f2f2f7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.benefit-card {
  background: #0052E2;
  border-radius: 16px;
  padding: 32px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.benefit-title {
  font-size: 20px;
  font-weight: 700;
}

.benefit-description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive Adjustments */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-swppp {
    height: 600px;
  }

  .hero-title {
    font-size: 56px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .hero-swppp {
    height: 500px;
    margin-top: 102px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 18px;
  }

  .swppp-services-section,
  .process-section,
  .why-choose-section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .card-content {
    padding: 24px;
  }
}
