.newsletter-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  border: 3px solid var(--accent-gold);
  border-radius: 16px;
  padding: 48px 40px;
  margin: 64px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gold);
  box-shadow: 0 0 20px var(--accent-gold);
}

.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.newsletter-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-input-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 20px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  transition: all 0.3s ease;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(255, 214, 67, 0.2);
  background: #ffffff;
}

.newsletter-input::placeholder {
  color: var(--text-light);
}

.newsletter-submit {
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--accent-gold);
  border: 2px solid var(--accent-gold-dark);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 214, 67, 0.4);
}

.newsletter-submit:active {
  transform: translateY(0);
}

.newsletter-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.newsletter-message {
  display: none;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-top: 4px;
}

.newsletter-message.success {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
  border: 2px solid #4caf50;
}

.newsletter-message.error {
  background: rgba(244, 67, 54, 0.15);
  color: #f44336;
  border: 2px solid #f44336;
}

.newsletter-privacy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .newsletter-section {
    padding: 40px 28px;
    margin: 48px 0 0;
  }

  .newsletter-title {
    font-size: 26px;
  }

  .newsletter-description {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .newsletter-input-group {
    flex-direction: column;
  }

  .newsletter-input {
    min-width: 100%;
  }

  .newsletter-submit {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .newsletter-section {
    padding: 32px 20px;
    margin: 40px 0 0;
  }

  .newsletter-title {
    font-size: 22px;
  }

  .newsletter-description {
    font-size: 14px;
  }

  .newsletter-input {
    padding: 14px 16px;
    font-size: 14px;
  }

  .newsletter-submit {
    padding: 14px 24px;
    font-size: 14px;
  }

  .newsletter-privacy {
    font-size: 12px;
  }
}
