* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

/* === */
.appointment-header-section {
  padding: 20px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  background-image: url("/assets/images/Book\ Salon\ Appointment.jpg");
  background-position: center;
  background-size: cover;
}

.appointment-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 37vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7); /* black shadow overlay */
}

.appointment-header-section * {
  z-index: 1;
  color: #fff;
}

@media (max-width: 480px) {
  .appointment-header-section {
    padding: 20px;
    text-align: center;
  }

  .appointement-header h1 {
    font-size: 24px;
    font-weight: 600;
  }

  .appointement-header p {
    font-size: 14px;
  }
}

/* === */
.appointment-container {
  padding: 20px 100px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
}

.appointment-steps {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 20px;
  width: 25%;
}

.appointment-steps .step-item {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.appointment-steps .step-item i {
  font-size: 18px;
  background-color: #fff;
  color: #001542;
  border-radius: 4px;
  padding: 5px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-item button {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  cursor: pointer;
}

.step-item.active {
  color: #fff;
  background-color: #001542;
  font-weight: bold;
  padding: 5px;
  border-radius: 4px;
}

.step-item.active button {
  color: #fff;
}

.appointment-content {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 75%;
  padding: 20px;
}

.service-category h2,
.services-list h2 {
  font-size: 22px;
  font-weight: 600;
}

.category-filters {
  margin-top: 10px;
}

.category-filters button {
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  background-color: #fff;
  padding: 5px 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  cursor: pointer;
}

.category-filters button.active {
  background-color: #001542;
  color: white;
  border: none;
  outline: none;
}

.service-card {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 20px;
  margin-top: 10px;
}

.service-image img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}

.service-info a {
  text-decoration: none;
  color: #000;
  /* font-size: 18px; */
}

.service-info h3 {
  font-size: 18px;
  font-weight: 600;
}

.service-meta {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}

.service-meta b {
  font-weight: 600;
}

.service-meta p {
  color: #444;
}

/* Book Appointment Section Mobile Responsive */
@media (max-width: 480px) {
  .appointment-container {
    padding: 20px;
    flex-direction: column;
  }

  .appointment-steps {
    width: 85%;
  }

  /*  */

  .appointment-content {
    width: 85%;
  }
  .service-category h2,
  .services-list h2 {
    font-size: 18px;
  }

  .category-filters button {
    font-size: 14px;
  }

  .service-image img {
    width: 50px;
    height: 50px;
  }

  .service-info h3 {
    font-size: 16px;
  }

  .service-meta p {
    font-size: 16px;
  }

  .service-meta p b {
    font-size: 14px;
  }
}

/*  */

.date-time-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 75%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 20px;
}

.date-time-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.calendar-time-slot {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* Calendar Styling */
.calendar {
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  background-color: #fff;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.calendar-header button {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 18px;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 500;
  margin-bottom: 5px;
  background-color: #001542;
  color: #fff;
}

.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-dates div {
  text-align: center;
  padding: 8px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.calendar-dates div.disabled {
  opacity: 0.7; /* Dim look */
  pointer-events: none; /* Not clickable */
  cursor: default; /* Show default cursor */
  background-color: #f0f0f0;
  color: #999;
}

.calendar-dates div.today {
  background-color: #001542; /* Aapko jo color chahiye */
  color: #fff;
  font-weight: bold;
}

/* Time Slot Styling */
.time-slot {
  flex: 1;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  background-color: #fff;
}

.time-slot h3 {
  margin-bottom: 10px;
}

.time-group {
  margin-bottom: 15px;
}

.time-group h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.time-btn {
  display: block;
  width: 50%;
  margin-bottom: 5px;
  padding: 8px;
  border: 1px solid #001542;
  border-radius: 4px;
  background-color: #fff;
  color: #001542;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
}

.time-btn.active,
.time-btn:hover {
  background-color: #001542;
  color: #fff;
}

@media (max-width: 480px) {
  .date-time-section {
    padding: 20px;
    width: 85%;
  }

  .date-time-section h2 {
    font-size: 18px;
  }

  .month-year,
  .calendar-weekdays div,
  .calendar-dates div {
    font-size: 14px;
  }

  /*  */

  .time-slot h3 {
    font-weight: 600;
    font-size: 18px;
  }

  .time-slot h4 {
    font-weight: 600;
    font-size: 14px;
  }
  .time-btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/*  */
.basic-details-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 75%;
  overflow-y: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.basic-details-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* #form-message {
} */

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.form-group label span {
  color: red;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 95%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.phone-group .phone-input {
  display: flex;
  gap: 10px;
}

.phone-group select {
  max-width: 90px;
}

.next-btn {
  background-color: #001542;
  color: #fff;
  padding: 5px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.next-btn:hover {
  background-color: #0033a0;
}

@media (max-width: 480px) {
  .basic-details-section {
    padding: 20px;
    width: 85%;
  }

  .basic-details-section h2 {
    font-size: 18px;
  }
}

/*  */

.summary-section {
  display: flex;
  justify-content: center;
  width: 75%;
}

.summary-card {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ccc;
  padding: 25px 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.summary-card h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
}

.summary-subtitle {
  font-size: 0.95rem;
  color: #7a7a7a;
  margin-bottom: 20px;
}

.summary-details {
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 1rem;
}

.detail-row.total-row {
  font-weight: 600;
  font-size: 1.1rem;
}

.detail-label {
  color: #555;
}

.detail-value {
  color: #001542;
  font-weight: 500;
}

hr {
  margin: 15px 0;
  border: 0.5px solid #ccc;
}

.summary-image img {
  max-width: 200px;
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .summary-section {
    /* padding: 20px; */
    width: 100%;
  }

  .summary-card h2 {
    font-size: 18px;
  }

  .summary-details {
    margin-top: 50px;
  }

  .summary-subtitle {
    font-size: 14px;
  }

  .detail-label,
  .detail-value {
    font-size: 14px;
  }
}
