/* Service-Versprechen Section */

.section-services {
  background: linear-gradient(135deg, #1a4b84 0%, #0d2f51 50%, #1a4b84 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Animated background pattern */
.section-services::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(253, 195, 0, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  animation: rotateBackground 30s linear infinite;
  pointer-events: none;
}

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

.section-services .section-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-services .title-yellow {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fdc300 0%, #ffdb4d 50%, #fdc300 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.section-services .section-head p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Two Column Layout */
.section-services .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Promise Card */
.promise-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.promise-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* Service Diagram */
.diagram {
  width: 200px;
  height: 200px;
}

/* Promise Steps */
.promise-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 100%;
}

.promise-steps .step {
  position: relative;
  padding-left: 50px;
}

.promise-steps .step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.promise-steps .step .num {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #fdc300 0%, #ffdb4d 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #0a1628;
  font-size: 1rem;
}

.promise-steps .step p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Promise Stats */
.promise-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e9ecef;
}

.promise-stats .badge {
  text-align: center;
}

.promise-stats .badge strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fdc300;
  margin-bottom: 5px;
}

.promise-stats .badge span {
  display: block;
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 500;
}

/* Service Features */
.service-features {
  display: grid;
  gap: 30px;
}

.service-feature {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: start;
  gap: 25px;
  transition: all 0.3s ease;
}

.service-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 1);
}

.service-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fdc300 0%, #ffdb4d 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.service-feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 10px;
}

.service-feature-content p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}

.service-feature-content ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.service-feature-content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  color: #495057;
  font-size: 0.95rem;
}

.service-feature-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #fdc300;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-services .two-col {
    gap: 40px;
  }
  
  .promise-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-services {
    padding: 60px 0;
  }
  
  .section-services .title-yellow {
    font-size: 2rem;
  }
  
  .section-services .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .promise-card {
    padding: 30px;
  }
  
  .promise-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .promise-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .service-feature {
    padding: 25px;
    flex-direction: column;
    text-align: center;
  }
  
  .service-feature-icon {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .section-services .title-yellow {
    font-size: 1.75rem;
  }
  
  .section-services .section-head p {
    font-size: 1rem;
  }
  
  .promise-card {
    padding: 25px;
    border-radius: 16px;
  }
  
  .diagram {
    width: 160px;
    height: 160px;
  }
  
  .promise-stats .badge strong {
    font-size: 1.5rem;
  }
  
  .promise-stats .badge span {
    font-size: 0.8rem;
  }
}