
/* Newsletter */
.newsletter-luxury {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.newsletter-luxury-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-luxury-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.newsletter-luxury-content p {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.9;
  font-weight: 300;
}

.newsletter-luxury-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-luxury-form input {
  flex: 1;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  outline: none;
}

.newsletter-luxury-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-luxury-form button {
  padding: 16px 35px;
  background: #ff8c42;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s;
}

.newsletter-luxury-form button:hover {
  background: #ff9966;
}