/* Meet page specific styles */
#content {
  background: none !important;
  backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  max-width: 100% !important;
}

/* Meet section */
.meet-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

/* Page title - same as Purpose page */
.page-title {
  font-size: 1.5em;
  font-weight: 200;
  letter-spacing: 0.5rem;
  margin-top: 0;
  margin-bottom: 2.4em;
  opacity: 0.9;
}

/* Form wrapper for optional scrolling on mobile */
.scrollable-content {
  max-height: none; /* No height limit on desktop */
  overflow-y: visible; /* Desktop handles scrolling */
  padding: 10px;
  -ms-overflow-style: none; /* IE/Edge */
  scrollbar-width: none; /* Firefox */
}

.scrollable-content::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

/* Schedule form */
#schedule-form {
  width: 100%;
  max-width: 360px; /* Decreased width to fit on desktop */
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--text-color);
  font-family: 'Montserrat', sans-serif;
}

/* Form groups */
.form-group {
  width: 48%;
  margin-bottom: 12px; /* Slightly smaller spacing */
}

.form-group.full-width {
  width: 100%;
}

/* Labels */
label {
  display: block;
  margin-bottom: 4px;
  font-weight: 200;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem; /* Slightly smaller for fit */
  font-family: 'Montserrat', sans-serif;
}

/* Input fields */
select,
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 6px; /* Smaller padding to reduce form height */
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem; /* Smaller text for fit */
  border-radius: 3px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--primary-glow);
  box-shadow: 0 0 5px var(--primary-glow);
  outline: none;
}

/* Service options */
.service-options {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  flex-wrap: nowrap;
}

.radio-group {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.radio-group input[type="radio"] {
  margin-right: 6px;
}

.radio-group label {
  display: inline;
  margin-bottom: 0;
  font-size: 0.75rem; /* Smaller font for fit */
  letter-spacing: 0.1em;
  text-transform: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.dropdown-service {
  display: none;
  width: 100%;
}

/* Submit button */
.submit-btn {
  width: 100%;
  padding: 8px; /* Smaller for fit */
  background: transparent;
  color: var(--text-color);
  border: 1px solid var(--primary-glow);
  border-radius: 3px;
  font-weight: 300;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.225s ease;
  font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
  background: var(--primary-glow);
  color: var(--base-color);
  transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .meet-section {
    padding: 1rem;
  }

  .page-title {
    font-size: 1.2em;
  }

  #schedule-form {
    max-width: 90%;
  }

  .form-group {
    width: 100%;
    margin-bottom: 10px;
  }

  label,
  .radio-group label {
    font-size: 0.7rem;
    color: #000 !important;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.7);
  }

  select,
  input,
  textarea {
    font-size: 0.8rem;
    padding: 6px;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .submit-btn {
    padding: 8px;
    color: #000 !important;
    border: 1px solid #000 !important;
    box-shadow: 0 0 5px #000;
  }

  .submit-btn:hover,
  .submit-btn:focus {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #000 !important;
    box-shadow: 0 0 5px #000;
    transform: scale(1.02);
  }

  .service-options {
    gap: 10px;
  }

  .scrollable-content {
    max-height: 60vh;
    overflow-y: scroll;
  }
}

@media (max-width: 480px) {
  #schedule-form {
    max-width: 100%;
  }

  label,
  .radio-group label {
    font-size: 0.65rem;
  }

  select,
  input,
  textarea {
    font-size: 0.75rem;
    padding: 5px;
  }

  .dropdown-service {
    display: block;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 5px;
    font-size: 0.75rem;
  }

  .submit-btn {
    padding: 7px;
  }

  .service-options {
    display: none;
  }
}

@media (max-width: 400px) {
  .dropdown-service {
    display: block;
    font-size: 0.7rem;
    padding: 5px;
  }
}
