* {
  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: 5px;
    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 == */

/* == Contact Header Section Start == */

.contact-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 100px;
  background: url("/assets/images/salon-contact.webp") no-repeat center / cover;
  height: 30vh;
  margin-top: 60px;
}

.contact-header::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 0;
  height: 37vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.contact-header * {
  z-index: 1;
  color: #fff;
}

.contact-header h1 {
  font-size: 32px;
  font-weight: 600;
}
/* == Contact Header Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .contact-header {
    padding: 20px 40px;
    height: 20vh;
    text-align: center;
  }

  .contact-header::before {
    height: 23.5vh;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .contact-header {
    padding: 20px 40px;
  }

  .contact-header::before {
    height: 25vh;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .contact-header {
    padding: 20px;
    text-align: center;
    height: 30vh;
  }

  .contact-header::before {
    height: 37vh;
  }

  .contact-header h1 {
    font-size: 28px;
  }

  .contact-header p {
    font-size: 14px;
  }
}
/* == Contact Header Section Start == */

/* == Contact Info Section Start == */
.contact-info-section {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  padding: 20px 100px;
}

.contact-left-side,
.contact-right-side {
  width: 50%;
  margin-top: 100px;
}

.contact-info-header h2 {
  font-weight: 600;
}

.contact-info-header p {
  font-size: 14px;
  color: #444;
}

.contact-items {
  margin-top: 50px;
}

.contact-item {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 20px;
}

.contact-item i {
  width: 30px;
  height: 30px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 22px;
}

.uil-map-marker {
  background-color: #e6f0ff;
  color: #2563eb;
}

.uil-phone {
  background-color: #e6f7f1;
  color: #059669;
}

.uil-envelope {
  background-color: #fff4e6;
  color: #f97316;
}

.uil-clock {
  background-color: #f3e8ff;
  color: #7c3aed;
}

.contact-item h3 {
  font-size: 16px;
  font-weight: 600;
}

.contact-item p {
  color: #444;
}

.contact-item a {
  text-decoration: none;
  color: #444;
}

.contact-item a:hover {
  text-decoration: underline #444;
}

.contact-right-side {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 20px;
}

.contact-right-side h2 {
  font-size: 24px;
  font-weight: 600;
}

form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
}

form input,
textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  resize: none;
}

form input[type="submit"] {
  background-color: #001542;
  color: #fff;
  border: none;
  outline: none;
  width: fit-content;
  padding: 8px 25px;
  cursor: pointer;
}
/* == Contact Info Responsive == */

/* == Laptop Responsive == */
@media (max-width: 1024px) {
  .contact-info-section {
    padding: 20px 40px;
  }

  .contact-item p {
    font-size: 14px;
  }
}

/* == Tablet Responsive == */
@media (max-width: 768px) {
  .contact-info-section {
    padding: 20px 40px;
  }

  .contact-item a {
    font-size: 14px;
  }

  form input {
    width: 95%;
  }
}

/* == Mobile Responsive == */
@media (max-width: 480px) {
  .contact-info-section {
    padding: 20px;
    flex-direction: column;
  }

  .contact-left-side,
  .contact-right-side {
    width: 100%;
  }

  .contact-info-header h2 {
    font-size: 18px;
  }

  .contact-item {
    flex-direction: column;
  }

  .contact-item p,
  .contact-item a {
    font-size: 14px;
  }

  .contact-right-side {
    width: 87%;
    margin-top: 20px;
  }

  form input,
  textarea {
    width: 95%;
  }
}
/* == Contact Info 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%;
  }
}
