/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
}

.newsletter-wrapper {
  position: relative;
  z-index: 1;
}

.newsletter-content {
  color: white;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 36px;
  color: var(--accent-gold);
}

.newsletter-content h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
}

.newsletter-content p {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.95;
}

.newsletter-form .form-control {
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 1rem;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.btn-subscribe {
  width: 100%;
  height: 56px;
  background: var(--accent-gold);
  color: var(--charcoal-black);
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.btn-subscribe:hover {
  background: #FFC700;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
}

.btn-subscribe i {
  font-size: 18px;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 60px 0;
  }
  
  .newsletter-content h3 {
    font-size: 2rem;
  }
  
  .newsletter-content p {
    font-size: 1rem;
  }
  
  .btn-subscribe span {
    display: none;
  }
  
  .btn-subscribe {
    width: 100%;
  }
}
