/* de-chauffeur-service-de-3.css — вынесено из inline <style> компонента view/de/chauffeur-service-de.php */
.premium-benefits {
  padding: 120px 0;
  background-color: #1A1A1A;
  color: white;
  position: relative;
  overflow: hidden;
}

.premium-benefits-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.premium-benefits-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(154, 136, 102, 0.2) 0%, rgba(154, 136, 102, 0) 50%);
  pointer-events: none;
}

.premium-benefits-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 80%, rgba(154, 136, 102, 0.15) 0%, rgba(154, 136, 102, 0) 50%);
  pointer-events: none;
}

.premium-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #9A8866;
  text-align: center;
  font-size: 22px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.premium-title {
  position: relative;
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  z-index: 1;
}

.premium-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #9A8866;
}

.premium-highlight {
  color: #9A8866;
  font-weight: 400;
}

.premium-description {
  max-width: 900px;
  margin: 40px auto 60px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.premium-benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.premium-benefit-item {
  display: flex;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  transition: all 0.4s ease;
  border-bottom: 3px solid transparent;
}

.premium-benefit-item:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.08);
  border-bottom: 3px solid #9A8866;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.premium-benefit-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: rgba(154, 136, 102, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  transition: all 0.3s ease;
}

.premium-benefit-item:hover .premium-benefit-icon {
  background-color: rgba(154, 136, 102, 0.25);
  transform: scale(1.05);
}

.premium-benefit-content {
  flex-grow: 1;
}

.premium-benefit-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: white;
}

.premium-benefit-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.premium-benefits-cta {
  text-align: center;
  margin-top: 70px;
  position: relative;
  z-index: 1;
}

.premium-btn {
  display: inline-block;
  background-color: #9A8866;
  color: white;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 18px 40px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(154, 136, 102, 0.3);
}

.premium-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.6s ease;
}

.premium-btn:hover {
  background-color: #b09b75;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(154, 136, 102, 0.4);
}

.premium-btn:hover::before {
  left: 100%;
}

@media (max-width: 991px) {
  .premium-benefits {
    padding: 90px 0;
  }
  
  .premium-title {
    font-size: 36px;
  }
  
  .premium-benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }
  
  .premium-benefit-item {
    padding: 25px;
  }
  
  .premium-benefit-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  
  .premium-benefit-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .premium-benefits {
    padding: 70px 0;
  }
  
  .premium-title {
    font-size: 28px;
  }
  
  .premium-description {
    font-size: 16px;
    margin: 30px auto 40px;
  }
  
  .premium-benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .premium-benefit-item {
    padding: 20px;
  }
  
  .premium-benefit-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  
  .premium-benefit-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .premium-benefit-content h3 {
    font-size: 18px;
  }
  
  .premium-benefit-content p {
    font-size: 15px;
  }
  
  .premium-benefits-cta {
    margin-top: 50px;
  }
  
  .premium-btn {
    padding: 16px 32px;
    font-size: 14px;
  }
}
