.make-appointment-form {
  padding: 60px 0;
  position: relative;
  width: 100%;
  background-color: var(--primary-color);
}

.make-appointment-form .sec-title {
  margin-bottom: 40px;
}

.make-appointment-form .sec-title h2 {
  font-family: "Funnel Display", sans-serif;
  font-size: 66px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 100%;
  color: var(--secondary-color);
}

.appointment-form {
  max-width: 1200px;
  padding: 0px;
  margin: 0 auto;
}

.appointment-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.appointment-form .form-group {
  width: 100%;
  margin-bottom: 20px;
}

.appointment-form .form-group.half {
  flex: 1;
}

.appointment-form input {
  width: 100%;
  padding: 14px;
  border: 1px solid #908b88;
  border-radius: var(--border-radius);
  font-size: 14px;
  box-sizing: border-box;
  font-family: "Urbanist", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 1px;
}

.appointment-form .mobile-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.appointment-form .mobile-wrapper .prefix {
  background-color: transparent;
  border: 1px solid #908b88;
  border-radius: 6px 0 0 6px;
  color: #555;
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 14px;
}

.appointment-form .mobile-wrapper input {
  flex: 1;
  border-left: none;
  border-radius: 0 6px 6px 0;
}

.appointment-form .form-group label {
  color: #757575;
  font-weight: 700;
  font-size: 13px;
  line-height: 24px;
  display: inline-block;
  margin-bottom: 10px;
}

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper .icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 1.1rem;
  color: #555;
}

.appointment-form .form-group .radio-group {
  margin-top: 8px;
  display: flex;
  gap: 20px;
}

.appointment-form .form-group .radio-group label {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 24px;
  color: #757575;
  gap: 6px;
}

.appointment-form .form-group .radio-group input[type="radio"] {
  accent-color: black; /* modern browsers */
  width: 14px;
  height: 14px;
}

.appointment-form .form-row .submit-btn {
  width: 100%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 16px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  line-height: 160%;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 10px;
}

.appointment-form .form-row p {
  font-size: 13px;
  line-height: 24px;
  font-weight: 400;
  color: #757575;
  margin-top: 20px;
}

.appointment-form .form-row strong {
  font-size: 13px;
  line-height: 24px;
  font-weight: bold;
  color: #757575;
}

.excellence-section {
  position: relative;
  width: 100%;
}

.excellence-section .bottom-section {
  background-color: #8c4c29;
  padding: 100px 0;
}

.excellence-section .bottom-section .main-title {
    text-align: center;
    margin-bottom: 50px;
}

.excellence-section .bottom-section .main-title h1 {
    font-family: "Funnel Display", sans-serif;
    font-size: 80px;
    font-weight: 500;
}

.excellence-section .bottom-section .left-side, .excellence-section .bottom-section .right-side {
    max-width: calc(50% - 50px);
    width: 100%;
}

.excellence-section .bottom-section .row {
    justify-content: space-between;
}

.excellence-section .bottom-section .left-side h4 {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 29px;
}

.excellence-section .bottom-section .right-side p {
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
}

@media (max-width: 768px) {
    .make-appointment-form {
    padding: 40px 0;
}

.make-appointment-form .sec-title h2 {
    font-size: 29px !important;
    line-height: 24px !important;
}

.make-appointment-form .sec-title {
    margin-bottom: 30px;
}

.appointment-form .form-row {
    flex-direction: column;
    gap: 0;
}

.appointment-form .form-group.half label {
    display: none;
}

.appointment-form .form-group .radio-group {
    flex-direction: column;
    gap: 0;
}

.appointment-form .form-group.half.blank-field {
    display: none;
}

.appointment-form .form-row .submit-btn {
    margin: 0;
    font-size: 12px;
}

.appointment-form .form-row p, .appointment-form .form-row strong {
    margin-top: 0;
    font-size: 12px;
}

.excellence-section .bottom-section {
    padding: 40px 0;
}

.excellence-section .bottom-section .main-title h1 {
    font-size: 30px;
}

.excellence-section .bottom-section .main-title {
    margin-bottom: 30px;
}

.excellence-section .bottom-section .row {
    flex-direction: column;
    justify-content: unset;
    gap: 20px;
}

.excellence-section .bottom-section .left-side, .excellence-section .bottom-section .right-side {
    max-width: 100%;
}

.excellence-section .bottom-section .left-side h4 {
    font-size: 16px;
    text-align: center;
    line-height: 24px;
}

.excellence-section .bottom-section .right-side p {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}
}