/* Bundle Offer Modal Styles */
.bundle-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bundle-modal.show {
  display: block;
  opacity: 1;
}

.bundle-modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.bundle-modal.show .bundle-modal-content {
  transform: translateY(0);
}

.bundle-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #888;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.bundle-modal-close:hover {
  color: #333;
}

.modal-title {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
  text-align: center;

  font-family: Montserrat;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #005dae;
}

/* Form Styles */
.bundle-form {
  margin-top: 20px;
}

.form-row {
  display: flex;
  margin-bottom: 15px;
  gap: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 15px;
}

.form-group.full-width {
  width: 100%;
}

.bundle-form label {
  display: block;
  margin-bottom: 5px;
  color: #0e0e0e;

  font-family: Montserrat;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0%;
}

.bundle-form input[type="text"],
.bundle-form input[type="email"],
.bundle-form input[type="tel"],
.bundle-form select,
.bundle-form textarea {
  width: 100%;
  padding: 10px 12px !important;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s;
  /* height: auto; */

  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #9f9f9f;
  background-color: #fff;
}

.bundle-form input[type="text"],
.bundle-form input[type="email"],
.bundle-form input[type="tel"],
.bundle-form select {
  height: 46px !important;
}

.bundle-form input:focus,
.bundle-form select:focus,
.bundle-form textarea:focus {
  border-color: #005dae !important;
  outline: none;
}

.bundle-form input::placeholder,
.bundle-form textarea::placeholder {
  color: #aaa;
}

.form-actions {
  text-align: center;
  margin-top: 20px;
}

.submit-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn {
  background-color: #005dae;
  color: white;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  padding: 15.5px 49px;
  border: 1px solid #005dae;
  border-radius: 70px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-btn:hover {
  background-color: #fff;
  color: #005dae;
}

.submit-btn:hover {
  background-color: #0069d9;
}

#form-success-message {
  text-align: center;
  padding: 20px 0;
  font-family: Montserrat;
  color: #9f9f9f;
}

#form-success-message h3 {
  color: #28a745;
  margin-bottom: 15px;
  font-family: Montserrat;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .bundle-modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
  }
}
