* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

/* == Header Start == */
nav {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100vw;
  padding: 0 100px;
  position: fixed;
  top: 0;
  z-index: 999;
  box-sizing: border-box;
}

nav .site-logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 20px;
}

.site-logo img {
  width: 40px;
}

nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-left: 300px;
}

ul li {
  list-style: none;
}

ul li a {
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
}

ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #001542;
  transition: width 0.3s ease;
}

ul li a:hover {
  color: #001542;
}

ul li a:hover::after {
  width: 100%;
}

.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.search-icon i {
  font-size: 20px;
  cursor: pointer;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 200px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-color: #001542;
  padding: 50px;
  height: 25px;
  width: 500px;
  border-radius: 4px;
}

.search-bar input {
  outline: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 75%;
  height: 50px;
  font-size: 14px;
  padding: 0 10px;
  margin-right: 5px;
}

.search-bar .uil-times {
  position: absolute;
  bottom: 90px;
  left: 560px;
  font-size: 14px;
  padding: 0 3px;
}

.search-bar i {
  background-color: #fff;
  padding: 10px;
  border-radius: 4px;
}

nav .site-btn button {
  background-color: #001542;
  color: #fff;
  padding: 7px 25px;
  border-radius: 50px;
  border: none;
  outline: none;
  cursor: pointer;
}

.booking-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 40px;
  width: 450px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid #e0e0e0;
  display: none;
  z-index: 200;
  transition: all 0.3s ease-in-out;
}

.booking-box i {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 20px;
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.booking-box i:hover {
  transform: rotate(90deg);
  color: #001542;
}

.booking-box h4 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.booking-box p {
  font-size: 14px;
  text-align: center;
  color: #555;
  margin-bottom: 25px;
}

.booking-box form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.booking-box .inputs {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}

.booking-box input[type="text"],
.booking-box input[type="email"],
.booking-box input[type="tel"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.booking-box textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  resize: none;
  font-size: 14px;
}

.gender-options {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  width: 100%;
}

.gender-option {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 8px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}

.gender-option input[type="radio"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  vertical-align: middle;
}

.booking-box .requirement-btn {
  background-color: #001542;
  color: #fff;
  padding: 10px 25px;
  border-radius: 4px;
  border: none;
  outline: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  nav {
    padding: 0 40px;
  }

  nav .site-logo a {
    font-size: 18px;
  }
  nav ul {
    margin-left: 100px;
  }

  nav ul li a {
    font-size: 14px;
  }

  nav .site-btn button {
    padding: 7px 15px;
  }

  .booking-box {
    top: 20%;
    left: 38%;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  nav {
    padding: 0 40px;
    width: 100%;
  }

  nav .site-logo a {
    font-size: 16px;
  }

  nav ul {
    margin-left: 50px;
    gap: 10px;
  }

  nav ul li a {
    font-size: 12px;
  }

  nav .site-btn button {
    padding: 5px 15px;
    font-size: 12px;
  }

  .booking-box {
    top: 20%;
    left: 30%;
    width: 350px;
    padding: 20px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  nav {
    padding: 20px;
    width: 100vw;
  }

  .site-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  nav .site-logo a {
    font-size: 16px;
  }

  .site-bar {
    position: absolute;
    right: 25px;
    font-size: 18px;
  }

  nav ul {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    background-color: #fff;
    height: 100vh;
    width: 100%;
    margin-top: 20px;
    position: absolute;
    top: 30px;
    right: 0;
    display: none;
  }

  nav ul li {
    position: relative;
    top: 20px;
    left: 20px;
    margin-bottom: 10px;
  }

  nav .site-btn button {
    position: absolute;
    top: 270px;
    left: 20px;
    display: none;
  }

  .search-bar {
    width: 315px;
    height: 40px;
    padding: 15px;
  }

  .search-bar input {
    height: 30px;
  }

  .search-bar i {
    padding: 6px;
    font-size: 14px;
  }

  .booking-box {
    top: 327px;
    left: 187px;
    width: 295px;
    padding: 20px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.25);
  }

  .booking-box h4 {
    font-size: 20px;
  }

  .booking-box .inputs {
    width: 100%;
  }

  .booking-box input[type="text"],
  .booking-box input[type="email"],
  .booking-box input[type="tel"] {
    width: 93%;
  }

  .booking-box textarea {
    width: 93%;
  }

  .booking-box .requirement-btn {
    width: 100%;
    margin-top: -30px;
  }
}

@media (min-width: 480px) {
  .site-bar {
    display: none;
  }
}
/* == Header End == */

/* == Appointment Header Section Start == */
.appointment-header-section {
  padding: 20px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  background-image: url("/assets/images/book-salon-appointment.webp");
  background-position: center;
  background-size: cover;
  margin-top: 60px;
}

.appointment-header-section::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 0;
  height: 37vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.appointment-header-section * {
  z-index: 1;
  color: #fff;
}

/* == Appointment Header Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .appointment-header-section {
    height: 20vh;
  }

  .appointment-header-section::before {
    height: 23.5vh;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .appointment-header-section {
    height: 20vh;
  }

  .appointment-header-section::before {
    height: 24.5vh;
  }
}

/* == Mobile Responsive == */
@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 Header Section End == */

/* == Book Appointment Section Start == */
.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;
}

.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 Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .appointment-container {
    padding: 20px 40px;
  }

  .service-info h3 {
    font-size: 16px;
  }

  .service-meta p {
    font-size: 14px;
  }
}

/* == 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-card {
    align-items: start;
  }

  .service-image img {
    width: 50px;
    height: 50px;
  }

  .service-info h3 {
    font-size: 16px;
  }

  .service-meta {
    align-items: start;
  }

  .service-meta p {
    font-size: 16px;
  }

  .service-meta p b {
    font-size: 14px;
  }
}
/* == Book Appointment Section End == */

/* == Date Time Section Start == */
.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 {
  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;
  pointer-events: none;
  cursor: default;
  background-color: #f0f0f0;
  color: #999;
}

.calendar-dates div.today {
  background-color: #001542;
  color: #fff;
  font-weight: bold;
}

.time-slot {
  flex: 1;
  max-height: 350px;
  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 #ccc;
  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;
  border: none;
  outline: none;
  color: #fff;
}

/* == Date Time Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .time-slot {
    height: 500px;
  }

  .time-slot h4 {
    font-size: 14px;
    font-weight: 500;
  }

  .time-btn {
    width: 100%;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .calendar-time-slot {
    gap: 10px;
  }

  .calendar-weekdays {
    font-size: 14px;
  }

  .calendar-dates {
    font-size: 14px;
  }

  .time-slot h3 {
    font-size: 16px;
  }
}

/* == Mobile Responsive == */
@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;
  }
}
/* == Date Time Section End == */

/* == Basic Details Section Start == */
.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-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;
}
/* == Basic Details Responsive == */

/* Mobile Responsive */
@media (max-width: 480px) {
  .basic-details-section {
    padding: 20px;
    width: 85%;
  }

  .basic-details-section h2 {
    font-size: 18px;
  }
}
/* == Basic Details Section End == */

/* == Summary Section Start == */
.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: 16px;
}

.detail-row.total-row {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 50px;
}

.detail-label {
  color: #555;
}

.detail-value {
  color: #444;
  font-weight: 500;
}

hr {
  margin: 15px 0;
  border: 0.5px solid #ccc;
}

.summary-image img {
  max-width: 200px;
  margin-bottom: 15px;
}

.back-btn a {
  background-color: #001542;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 4px;
}

/* == Summary Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .detail-row {
    font-size: 14px;
  }

  .summary-subtitle {
    margin-bottom: 30px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .summary-section {
    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;
  }
}

/* == Summary Section End ==*/

/* === */
.footer-section {
  background-color: #001542;
  padding: 50px 100px;
  display: flex;
  justify-content: space-around;
  align-items: start;
  gap: 40px;
  height: 40vh;
}

.footer-intro,
.footer-contact,
.footer-pages {
  width: 33.3%;
}

.footer-intro a {
  text-decoration: none;
}

.footer-section h5 {
  color: #fff;
  font-size: 18px;
}

.footer-intro p {
  color: #fff;
  font-size: 14px;
  margin: 10px 0 20px 0;
}

.footer-intro .social-icons {
  display: flex;
  gap: 5px;
}

.footer-intro .social-icons i {
  color: #001542;
  background-color: #ffb30d;
  padding: 5px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.footer-contact i {
  color: #fff;
  font-size: 18px;
  margin-right: 10px;
}

.footer-contact a,
.time p {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: a 0.3s ease;
}

.footer-contact a:hover {
  color: #ffb30d;
}

.footer-call {
  margin-bottom: 10px;
}

.footer-pages ul li a {
  color: #fff;
  font-size: 14px;
  transition: a 0.3s ease;
}

.footer-pages ul li a:hover {
  color: #ffb30d;
  font-size: 14px;
}

.footer-pages ul,
.footer-contact .contacts {
  margin-top: 10px;
}

.copyright {
  background-color: #001542;
  text-align: center;
  color: #fff;
  font-size: 14px;
  padding-bottom: 20px;
}

/* == Footer Section Responsive == */

@media (min-width: 1024px) {
  .footer-section {
    width: 100vw;
  }
}

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .footer-section {
    height: 20vh;
  }

  .copyright {
    margin-top: -10px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .footer-section {
    height: 40vh;
  }

  .copyright {
    width: 100vw;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .footer-section {
    padding: 20px;
    flex-direction: column;
    height: auto;
  }

  .footer-intro,
  .footer-contact,
  .footer-pages {
    width: 100%;
  }
}
