.hero-right-image {
  align-items: flex-start;
  justify-content: flex-end;
}
.hero-right-image img {
  width: 745px;
  border-radius: 0;
}
.hero-section{
  height: 600px;
}
.stat-card {
  background: #fbfbfb;
}
.stats-section .container {
  max-width: 1200px;
}
.stats-section{
    padding-bottom:0;
}

.stats-section .cta-btn {
    display: table;
    margin: 30px auto 0;
}

/* Appointment Form Styles */
.appointment-form {
  margin: 0 auto;
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
  margin-bottom: 30px;
}

/* Label Styling */
.form-group label {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 16px */
  margin-bottom: 12px;
}

/* Input & Select Styling */
.form-group input,
.form-group select {
  padding: 12.362px 14px 12.362px 12px;
  color: #8e8e8e;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20.8px; /* 130% */
  border: 0.951px solid #B9B9B9;
  background: #fff;
  width: 100%;
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%238E8E8E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 50px;
  cursor: pointer;
}

/* Date Field with Calendar Icon */
.date-field-group {
  position: relative;
}

.date-input-wrapper {
  position: relative;
  display: block;
}

.calendar-icon {
  position: absolute;
      left: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
  pointer-events: none;
  z-index: 2;
}

.date-input {
  padding-left: 50px !important;
  width: 100%;
}

/* Date input with value */
.date-input[type="date"] {
  color: #8e8e8e;
  text-align: left;
}

/* Text input placeholder state */
.date-input[type="text"] {
  color: #8e8e8e;
}

/* Calendar picker indicator */
.date-input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Form Footer */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
}

.consent-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.consent-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #b15092;
  flex-shrink: 0;
  border-radius: 8px;
}

/* Checkbox Label Styling */
.consent-wrapper label {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  margin: 0;
  cursor: pointer;
  text-align: left;
}

.appointment-form .cta-btn {
  width: 297px;
  padding-inline: 20px;
}

/* Responsive */
@media (max-width: 768px) {

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-group label {
    text-align: left;
  }

  .form-group input,
  .form-group select {
    text-align: left;
  }

  .date-input[type="date"] {
    text-align: left;
  }

  .form-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .appointment-form .cta-btn {
    width: 100%;
  }
}


@media (max-width: 1280px) {
    .page-template-contact-us .hero-right-image img {
        width: 800px;
        margin-left: 0px;
    }
}