/* ==========================================================================
   LUXURY NEWSLETTER SUBSCRIPTION SECTION
   ========================================================================== */

.newsletter-section {
  width: 100%;
  position: relative;
  background: #ffffff;
  padding: 80px 24px 70px;
  overflow: hidden;
  border-top: 1px solid #f0e9df;
  border-bottom: 1px solid #f0e9df;
}

/* Subtle Royal Background Decorative Glow */
.newsletter-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.12) 0%, rgba(176, 27, 76, 0.04) 50%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

.newsletter-container {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Newsletter Icon */
.newsletter-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #fff0f5 0%, #fcf6ef 100%);
  border: 1px solid rgba(197, 168, 128, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b01b4c;
  box-shadow: 0 6px 18px rgba(176, 27, 76, 0.08);
}

.newsletter-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Heading & Subtext */
.newsletter-tagline {
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c5a880;
  margin-bottom: 10px;
  display: block;
}

.newsletter-title {
  font-family: var(--font-primary, 'Playfair Display', serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  line-height: 1.25;
}

.newsletter-description {
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.95rem;
  line-height: 1.7;
  color: #666666;
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 400;
}

/* Form Container */
.newsletter-form {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-input-group {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1.5px solid #e0d5c5;
  border-radius: 50px;
  padding: 5px 6px 5px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: #b01b4c;
  box-shadow: 0 10px 28px rgba(176, 27, 76, 0.12);
}

.newsletter-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.95rem;
  color: #1a1a1a;
  padding-right: 12px;
}

.newsletter-input::placeholder {
  color: #999999;
  font-weight: 400;
}

.newsletter-submit-btn {
  background: linear-gradient(135deg, #b01b4c 0%, #8b123a 100%);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 14px 34px;
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(176, 27, 76, 0.3);
}

.newsletter-submit-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.newsletter-submit-btn:hover {
  background: linear-gradient(135deg, #d83a75 0%, #b01b4c 100%);
  box-shadow: 0 6px 20px rgba(176, 27, 76, 0.4);
  transform: translateY(-2px);
}

.newsletter-submit-btn:hover svg {
  transform: translateX(4px);
}

/* Success Message Container */
.newsletter-success {
  display: none;
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.95rem;
  color: #2e7d32;
  font-weight: 600;
  margin-top: 14px;
  animation: fadeIn 0.4s ease;
}

/* Perks Badges Row */
.newsletter-perks {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px dashed #e8dfd2;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-secondary, 'Montserrat', sans-serif);
  font-size: 0.85rem;
  font-weight: 600;
  color: #555555;
}

.perk-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fdf5ea;
  border: 1px solid #c5a880;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c5a880;
}

.perk-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive (Desktop Untouched, Mobile Optimized) */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 36px 14px 30px;
  }

  .newsletter-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .newsletter-icon svg {
    width: 20px;
    height: 20px;
  }

  .newsletter-tagline {
    font-size: 10px;
    letter-spacing: 2.5px;
    margin-bottom: 6px;
  }

  .newsletter-title {
    font-size: 21px;
    margin-bottom: 8px;
  }

  .newsletter-description {
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .newsletter-input-group {
    flex-direction: column;
    border-radius: 10px;
    padding: 8px;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  }

  .newsletter-input {
    padding: 8px 10px;
    font-size: 12.5px;
    text-align: center;
  }

  .newsletter-submit-btn {
    width: 100%;
    justify-content: center;
    border-radius: 6px;
    padding: 11px;
    font-size: 11px;
    letter-spacing: 1px;
  }

  .newsletter-perks {
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
    flex-direction: column;
    align-items: center;
  }

  .perk-item {
    font-size: 11.5px;
    gap: 8px;
  }

  .perk-icon {
    width: 24px;
    height: 24px;
  }

  .perk-icon svg {
    width: 12px;
    height: 12px;
  }
}
