/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  width: 100%;
  background: #0C3365;
  padding: 60px 40px;
}

.newsletter-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text {
  flex: 1;
  min-width: 260px;
}

.newsletter-title {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.3;
}

.newsletter-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.newsletter-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter-input-wrap i {
  position: absolute;
  left: 16px;
  color: #94a3b8;
  font-size: 16px;
  pointer-events: none;
}

.newsletter-input {
  width: 320px;
  padding: 14px 20px 14px 44px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
  background: #ffffff;
  color: #1e293b;
  outline: none;
}

.newsletter-input::placeholder {
  color: #94a3b8;
}

.newsletter-btn {
  padding: 14px 28px;
  background: #ffffff;
  color: #0C3365;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #1e293b;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.newsletter-btn i {
  transition: transform 0.3s ease;
}

.newsletter-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .newsletter-section {
    padding: 48px 24px;
  }

  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .newsletter-title {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .newsletter-section {
    padding: 40px 20px;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
  }

  .newsletter-btn {
    width: 100%;
    justify-content: center;
  }

  .newsletter-title {
    font-size: 22px;
  }
}





