* {
  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 == */

/* == Hero Section Start == */
.hero-section {
  margin-top: 60px;
  background-image: url("/assets/images/salon-hero-banner.webp");
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  height: 50vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.hero-section * {
  z-index: 1;
}

.hero-section h1 {
  color: #fff;
}

.hero-section p {
  color: #fff;
  margin: 0 200px;
  text-align: center;
}

/* == Hero Section Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .hero-section,
  .hero-section::before {
    height: 30vh;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .hero-section p {
    margin: 0 85px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .hero-section {
    text-align: center;
    padding: 20px;
    height: 34vh;
  }

  .hero-section::before {
    height: 40vh;
  }

  .hero-section h1 {
    font-size: 28px;
  }

  .hero-section p {
    font-size: 14px;
    margin: 0;
  }
}
/* == Hero Section End == */

/* == Option Section Start == */
.service-options {
  padding: 20px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
}

.option {
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid #ccc;
  padding: 5px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.option.active {
  background-color: #001542;
  color: #fff;
  border-color: #001542;
}

.option.active button {
  color: #fff;
}

.option.active i {
  color: #fff;
}

.option button {
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* == Options Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .service-options {
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .option {
    font-size: 14px;
    justify-content: start;
    padding: 5 5px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .service-options {
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .option {
    gap: 20px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .service-options {
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .option {
    padding: 5px 10px;
    width: 120px;
    justify-content: start;
  }

  .option button {
    font-size: 12px;
  }
}

/* == Option Section End == */

/* == Service Section Start == */
.service-section {
  padding: 20px 100px;
}

.service-name-hai {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  text-align: center;
}

.service-name-hai h3 {
  font-size: 32px;
  font-weight: 600;
}

.service-name-hai p {
  font-size: 14px;
  color: #444;
}

.cta a {
  text-decoration: none;
  color: #fff;
  background-color: #001542;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
}

.service-card-content {
  background-color: #fff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 0 0 8px 8px;
}

.service-card-content h4 {
  font-size: 18px;
  font-weight: 600;
}

.service-card-content p {
  font-size: 14px;
  color: #444;
  margin: 10px 0 10px 0;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.service-details .fee,
.time,
.gender,
.location {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.service-details i {
  color: #ffb30d;
  background-color: #001542;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border-radius: 50px;
  padding: 5px;
}

.service-card-content a {
  text-decoration: none;
  color: #fff;
  background-color: #001542;
  padding: 5px 25px;
  border-radius: 50px;
  font-size: 14px;
  width: fit-content;
}

/* == Service Section Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .service-section {
    padding: 0 40px;
  }

  .service-card-content {
    height: 260px;
  }

  .service-card-content a {
    width: 100%;
  }

  .service-details {
    margin-top: 20px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-content {
    height: 260px;
  }

  .service-details {
    margin-top: 20px;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .service-section {
    padding: 20px;
  }

  .service-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .service-name-hai h3 {
    font-size: 28px;
  }

  .service-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .service-details {
    margin-top: 20px;
  }

  .service-card-content a {
    width: fit-content;
  }
}
/* == Service Section End == */

/* == Show Service Section Start == */
.show-service {
  padding: 20px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.show-service button {
  background-color: #001542;
  border: none;
  outline: none;
  color: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
}

.navigations i {
  background-color: #001542;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  padding: 5px;
  cursor: pointer;
}

/* show services Responsive */
@media (max-width: 480px) {
  .show-service {
    padding: 20px;
  }

  .show-service button {
    padding: 10px 20px;
  }
}
/* == Show Service Section Start == */

/* == == */
.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%;
  }
}
