/* de-airport-transfer-de-1.css — вынесено из inline <style> компонента view/de/airport-transfer-de.php */
.luxury-hero {
  padding: 100px 0 120px;
}


.luxury-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 auto 60px;
}

.luxury-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #1A1A1A;
}

.section-title span {
  color: #9A8866;
  font-weight: 600;
}

.luxury-hero-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #9A8866, transparent);
  margin: 0 auto 25px;
}

.luxury-hero-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #9A8A78;
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 22px;
    letter-spacing: 1px;
}

.luxury-card-container {
  position: relative;
  z-index: 2;
}

.luxury-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid rgba(154, 136, 102, 0.1);
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #9A8866, rgba(154, 136, 102, 0.5));
}

.luxury-card-content {
  padding: 0;
}

.luxury-card-text {
  padding: 50px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.luxury-quote {
  position: relative;
  margin-bottom: 30px;
  padding: 0 0 0 40px;
}

.luxury-quote-icon {
  position: absolute;
  left: 0;
  top: 0;
}

.luxury-quote p {
    font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

.luxury-card-text p {
    font-size: 1.1rem;
    line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.luxury-cta {
  margin-top: auto;
  padding-top: 20px;
}

.luxury-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1A1A1A;
  color: white;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 18px 36px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.luxury-btn-primary::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;
}

.luxury-btn-primary:hover {
  background: #9A8866;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.luxury-btn-primary svg {
  transition: transform 0.3s ease;
}

.luxury-btn-primary:hover svg {
  transform: translateX(4px);
}

.luxury-card-media {
  height: 100%;
  position: relative;
}

.luxury-media-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.luxury-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s ease;
}

.luxury-media-wrapper:hover img {
  transform: scale(1.05);
}

.luxury-media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

.luxury-features {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  display: flex;
  gap: 15px;
}

.luxury-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 26, 26, 0.85);
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.luxury-feature:hover {
  transform: translateY(-5px);
  background: rgba(154, 136, 102, 0.9);
}

.luxury-feature-icon {
  width: 34px;
  height: 34px;
  background-color: rgba(154, 136, 102, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.luxury-feature span {
  color: white;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .luxury-features {
    flex-direction: column;
    bottom: 20px;
    left: 20px;
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .luxury-hero {
    padding: 80px 0;
  }
  
  .luxury-hero h1 {
    font-size: 38px;
  }
  
  .luxury-hero-tagline {
    font-size: 18px;
  }
  
  .luxury-card-text {
    padding: 40px;
  }
  
  .luxury-quote p {
    font-size: 18px;
  }
  
  .luxury-card-media {
    min-height: 400px;
  }
  
  .luxury-features {
    flex-direction: row;
    bottom: 20px;
    left: 0;
    width: 100%;
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 767px) {
  .luxury-hero {
    padding: 60px 0;
  }
  .luxury-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    margin: 0 auto 35px;
}
  .luxury-btn-primary {
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1A1A1A;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 18px 36px;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.luxury-card-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}
  
  .luxury-hero h1 {
    font-size: 32px;
  }
  
  .luxury-card-text {
    padding: 30px;
  }
  
  .luxury-quote {
    padding: 0 0 0 30px;
  }
  
  .luxury-quote p {
    font-size: 1rem;
  }
  
  .luxury-card-media {
    min-height: 300px;
  }
  
  .luxury-features {
    flex-wrap: wrap;
    padding: 0 20px;
  }
  
  .luxury-feature {
    padding: 8px 12px;
  }
  
  .luxury-feature-icon {
    width: 30px;
    height: 30px;
  }
  
  .luxury-feature span {
    font-size: 13px;
  }
}
