/* Appointment Form Styling */
  .appointment-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px;
    border-top: 5px solid #256E41;
  }

  .form-control-custom {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    padding: 10px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
  }

  .form-control-custom:focus {
    border-color: #256E41;
    box-shadow: 0 0 0 0.2rem rgba(37, 110, 65, 0.15);
  }

  textarea.form-control-custom {
    height: auto;
  }

  .btn-submit-appointment {
    background-color: #256E41;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: background 0.3s ease;
    cursor: pointer;
  }

  .btn-submit-appointment:hover {
    background-color: #1b4f2e;
    color: #ffffff;
  }

  /* Google Map Container */
  .map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    min-height: 450px;
  }

  /* Enhanced Hero Header */
.appointment-hero {
  background: linear-gradient(135deg, #0f1f18 0%, #256E41 100%);
  position: relative;
  margin-top: 130px; /* Accounts for fixed navbar offset */
  padding: 80px 0 60px 0;
  color: #ffffff;

  overflow: hidden;
  box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.15);
}

/* Background Accent Rings */
.appointment-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.appointment-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.appointment-hero .breadcrumb-custom a {
  color: #A9E707;
  font-weight: 500;
  font-size: 14px;
}

.appointment-hero .breadcrumb-custom span {
  color: #ffffff;
  opacity: 0.8;
  font-size: 14px;
}

.appointment-hero h1 {
  font-family: 'Tsukimi Rounded', 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #FFF;
}

.hero-feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  color: #e2f4e8;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Reset input text color, text transform, and letter spacing */
.form-control-custom,
select.form-control-custom,
textarea.form-control-custom {
    color: #333333 !important;          /* Replaces red text with standard dark slate */
    text-transform: none !important;     /* Removes forced uppercase */
    letter-spacing: normal !important;   /* Resets wide letter spacing */
}

/* Optional: Ensure placeholder text uses standard styling */
.form-control-custom::placeholder {
    color: #888888 !important;
    text-transform: none !important;
}