.appointment-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  font-family: inherit; 
  background: #fff;           
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}


.appointment-head {
  text-align: center;
  margin-bottom: 24px;
}
.appointment-head .eyebrow {
  display: inline-block;
  background:#ecba31;
  color: black;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.appointment-head h2 {
  margin: 8px 0 4px;
  font-size: 28px;
  font-weight: 700;
}
.appointment-head .lede {
  color: #667085;
  font-size: 14px;
}


.appointment-shell {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  padding: 24px;
}


.appointment-body .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.appointment-body .form-group {
  display: flex;
  flex-direction: column;
}
.appointment-body .form-group.full {
  grid-column: 1 / -1;
}


.appointment-body label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}
.appointment-body input,
.appointment-body select,
.appointment-body textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.appointment-body input:focus,
.appointment-body select:focus,
.appointment-body textarea:focus {
  outline: none;
  border-color: #e0a200 ;
  box-shadow: 0 0 0 2px rgba(14,165,160,0.2);
}
.appointment-body textarea {
  min-height: 100px;
  resize: vertical;
}


.btn-appointment {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;                      
  padding: 10px;
  background-color:#ecba31 ; 
  color: black;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 14px rgba(226, 180, 27, 0.3);
  text-align: center;
}
.btn-appointment:hover {
  background-color: #e0a200 ;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(14,165,160,0.35);
}
.btn-appointment:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(14,165,160,0.25);
}
.btn-appointment:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(14,165,160,0.4);
}

.appointment-body .form-group.full {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;   
  margin-top: 12px;
}

@media (max-width: 768px) {
  .appointment-body .grid {
    grid-template-columns: 1fr;
  }
  .btn-appointment {
    width: 100%;            
    border-radius: 8px;     
    padding: 12px;
    font-size: 15px;
  }
}
