:root {
  --font-size-xll: 25px;
  --font-size-xl: 20px;
  --font-size-lg: 19px;
  --font-size-md: 16px;
  --font-size-sm: 15px;
  --font-size-xm: 12px;

  --primary: #f47a04;
  --primary-100: #ff8000;
  --primary-200: #ff8001;
  --primary-300: #ffd9b2;
  --secondary: #9d9d9d;
  --light: #fff;
  --dark: #000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Geologica", sans-serif;
  font-size: var(--font-size-sm);
}

/* Container Fluid */
.container-fluid {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px 20px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

/* Container */
.container {
  width: 100%;
  max-width: 1328px;
  margin: 0 auto;
  /* padding: 0 15px; */
  box-sizing: border-box;
}

.swiper-custom {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 15px !important;
  z-index: 1;
  display: block;
}

/* button start */
.btn {
  padding: 10px 20px;

  border: 1px solid var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
  color: var(--primary);
  background-color: var(--light);
}

.btn:hover {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--light);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--light);
  padding: 10px;
}

.btn-primary:hover {
  border: 1px solid var(--primary);
  background-color: var(--light);
  color: var(--primary);
}

.btn-primary-1 {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 25px;
  color: var(--light);
  width: 142px;
}

.btn-primary-1:hover {
  border: 1px solid var(--primary);
  background-color: var(--light);
  color: var(--primary);
}

/* button end */

.scroll-top-btn {
  position: fixed;
  bottom: 33px;
  right: 160px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  transition: all 0.3s ease;
  z-index: 999;
}

/* registration-page-start */

.registration_section {
  height: 100%;

  background-image: url("../img/User_registration/background_photo.png");
  padding: 66px 0px 211px;
}

.intro_text {
  max-width: 809px;
  margin-bottom: 48px;
}

.intro_text p {
  line-height: 1.7;
  color: var(--primary);
  font-size: var(--font-size-xl);

  padding-bottom: 10px;
}

.intro_text span {
  color: var(--dark);
}

.registration_form {
  max-width: 658px;
  margin-top: 48px;
}

.form-field {
  margin-bottom: 23px;
}

.form-row {
  display: flex;
  gap: 130px;
  margin-bottom: 5px;

  flex-wrap: wrap;
}

.form-field label {
  display: block;
  font-size: 13px;
  color: var(--dark);
  margin-bottom: 5px;
}

.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field input[type="password"] {
  width: 264px;
  padding: 10px;
  border: 1px solid var(--dark);
  border-radius: 5px;
  height: 42px;

  transition: border-color 0.3s, box-shadow 0.3s;
}

.password-field {
  max-width: calc(50% - 15px);
}

form button {
  margin-top: 19px;
}

/* registration-page-end */

/* header -start */

.main-header {
  width: 100%;
  background: var(--light);
  border-bottom: 2px solid #eaeaea;

  top: 0;
  position: relative;
  z-index: 1111;
}

/* .logo {

} */

.nav .menu {
  display: flex;
  list-style: none;
  gap: 30px;
  /* gap: 55px; */
  align-items: center;
}

.nav a {
  color: var(--dark);
  text-decoration: none;

  position: relative;
}

.nav a.active {
  color: var(--primary-200);
}

.nav a:hover {
  color: var(--primary-200);
}

.nav a:hover:after,
.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 35%;
  width: 16px;
  height: 3px;
  background: var(--primary-200);
  border-radius: 5px;
  margin: 0px auto;
}

.dropdown {
  position: relative;
}

.dropdown .arrow {
  display: inline-flex;
  font-size: var(--font-size-xm);
  margin-left: 5px;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.dropdown .arrow img {
  width: 17px;
}

.dropdown.open .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 46px;
  left: 0;
  background: var(--light);

  display: none;
  list-style: none;
  padding: 30px 0;
  border-radius: 0px 0px 5px 5px;
  width: 291px;
  height: auto;
  z-index: 1100;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 4px 20px;
}

.dropdown-menu li a {
  color: var(--dark);
  text-decoration: none;
  display: block;
  transition: color 0.3s ease, background 0.3s ease;
}

.dropdown-menu li a:hover {
  color: var(--primary);
}

.dropdown-menu li a:hover:after,
.dropdown-menu li a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0%;
  width: 16px;
  height: 3px;
  background: var(--primary-200);
  border-radius: 5px;
  margin: 0px auto;
  z-index: 9999;
}

.dropdown>a {
  color: var(--dark);

  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.dropdown>a:hover {
  color: var(--primary);
}

.dropdown.open>a {
  color: var(--primary);
}

.blur-overlay {
  position: fixed;
  inset: 0;

  z-index: 900;
  opacity: 0;

  pointer-events: none;
  transition: opacity 0.3s ease;

  background: var(--secondary) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
}

.blur-overlay.active {
  pointer-events: all;
  opacity: 0.23;
}

.menu-toggle {
  display: none;
  font-size: var(--font-size-xll);
  cursor: pointer;
  position: relative;
  z-index: 1200;
}

.mobile-buttons {
  display: none;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-dropdown {
  position: relative;
  list-style: none;
}

.user-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  gap: 8px;
}

.user-imgs {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.user-name {
  color: var(--dark);
}

.user-menu {
  display: none;
  position: absolute;
  top: 38px;
  /* right: 0; */
  background: var(--light);

  border-radius: 5px;
  min-width: 180px;
  padding: 30px 0 20px;
  z-index: 10;
}

.user-menu li {
  list-style: none;
}

.user-menu li a {
  display: block;
  padding: 4px 16px;
  text-decoration: none;
  color: var(--dark);
  transition: background 0.2s ease;
}

.user-menu li a:hover {
  color: var(--primary);
}

.user-dropdown.open .user-menu {
  display: block;
}

/* header-end */

/* Popup Styles */

#loginBtn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

#loginBtn:hover {
  background: var(--primary-100);
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-overlay.active {
  display: flex;
}

.popup {
  background: var(--light);
  padding: 44px 33px;
  border-radius: 5px;
  width: 653px;
  max-width: 90%;
  box-shadow: 0px 3px 6px #00000029;
  position: relative;
  text-align: left;
  animation: fadeIn 0.3s ease;
}

.popup h2 {
  font-size: var(--font-size-xll);
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 400;
}

.popup a {
  text-decoration: none;
  color: var(--darka);
  margin-bottom: 31px;
}

.popup .forgot {
  margin-bottom: 20px;
  color: var(--primary);
  margin-top: 6px;
  font-size: 13px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 13px;
  background: var(--primary);
  color: var(--light);
  border: none;
  font-size: 37px;
  border-radius: 0px;
  /* padding: 0px 10px; */
  width: 39px;
  height: 39px;
  cursor: pointer;
}

form {
  margin-top: 15px;
}

.popup form {
  margin-bottom: 30px;
}

/* form div {
  margin-bottom: 18px;
} */

label {
  display: block;

  margin-bottom: 6px;
}

.popup label {
  margin-top: 18px;
}

input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--primary-200);
  border-radius: 5px;
  padding-left: 10px;
}

.forgot {
  display: block;
  text-align: right;
  color: var(--primary);
  font-size: var(--font-size-xm);
  text-decoration: none;
}

.submit-btn {
  background: var(--primary);
  border: none;
  color: var(--light);
  padding: 15px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 20px;
  border: 1px solid var(--primary);
}

.submit-btn:hover {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

.popup .divider-1 {
  border-top: 2px solid var(--primary);
  margin: 30px 0 11px;
}

.signup-text {
  font-size: var(--font-size-xl);
  text-align: center;
}

.social-btns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.facebook,
.gmail {
  border: none;
  padding: 15px 110px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
}

.facebook {
  background: #0070e0;
  color: var(--light);
}

.facebook:hover {
  background: #005bb5;
}

.gmail {
  background: #dddddd;
  border: 1px solid #dddddd;
  color: var(--dark);
}

.gmail:hover {
  background: transparent;
  border: 1px solid #dddddd;
}

/* hero section */

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 540px;
  width: 100%;
  background: url("../img/background_shape.png") no-repeat center right/cover;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1406px;
  height: 540px;
  transform: translate(-50%, -50%);
  background: url("../img/Main_photo.png") no-repeat center center/cover;
  z-index: 1;
  transition: opacity 0.4s ease-in-out;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 768px;
  margin-left: 290px;
}

.hero-content h1 {
  font-size: var(--font-size-xll);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
}

.hero-content h1 span {
  color: var(--primary-200);
}

.hero-content p {
  margin-top: 18px;
  color: var(--dark);
  font-size: var(--font-size-md);
  line-height: 1.6;
}

.search-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 351px;
  margin-top: 46px;
}

.input-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 0px 22px;
  background: var(--light);
  cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
  -webkit-appearance: none;
}

.input-group input,
.input-group select {
  border: none;
  outline: none;
  width: 100%;

  color: var(--dark);
  background: transparent;
  appearance: none;
  cursor: pointer;
  height: 48px;
  padding: 9px;
}

.input-group input::placeholder {
  color: var(s);
}

.dropdown-btn {
  display: flex;
  align-items: center;

  background: var(--light);
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 0px 22px;
  height: 55px;

  cursor: pointer;
  transition: 0.3s ease;
  height: 48px;
}

.dropdown-btn img {
  width: 16px;
  height: 22px;
  margin-right: 10px;
}

.dropdown-btn .arrow {
  border: solid var(--light);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;

  transition: 0.3s;
}

.dropdown-btn.active .arrow {
  /* transform: rotate(-135deg); */
  transform: rotate(-180deg);
}

.dropdown-list {
  position: absolute;
  top: 105%;
  left: 0;
  right: 0;
  background: var(--light);
  border: 1px solid var(--primary);
  color: var(--dark);
  border-radius: 5px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 9999;
  text-align: left;
  max-height: 220px;
}

.service-search-box .dropdown-list {
  top: 100%;
  left: -15px;
}

#selected {
  color: var(--gray);
}

.dropdown-list li {
  padding: 12px 15px;

  cursor: pointer;
  transition: 0.3s;
}

.dropdown-list li:hover {
  background: var(--primary);
  color: var(--light);
}

/* hero section end */

/* category-section-start */
.categories {
  text-align: center;
  padding: 70px 0 110px 70px;
  background: var(--light);
}

.categories h2 {
  font-size: var(--font-size-xll);
  margin-bottom: 70px;
  color: var(--dark);
}

.categories h2 span {
  color: var(--primary);
  font-weight: 500;
}

.category-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
  flex-wrap: wrap;
}

.category-card {
  background: var(--primary-300);
  width: 165px;
  height: 135px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
}

.category-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.category-card p {
  margin: 0;
  font-weight: normal;
  color: var(--dark);
  line-height: 1.2;
}

.category-card:hover {
  background: var(--primary);
  transform: translateY(-5px);
}

.category-card:hover p {
  color: var(--light);
}

.category-card:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* category-section-end */

/* popular-section-start */

.popular-section {
  padding: 95px 0 65px;
  text-align: center;
  background-image: url("../img/background_second_scroll.png");
}

.popular-section .section-title {
  font-size: var(--font-size-xll);

  color: var(--dark);
  margin-bottom: 40px;
}

.section-title span {
  color: var(--primary);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popular-swiper {
  width: 100%;
}

.popular-card {
  background: transparent;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex !important;
  flex-direction: column;
  gap: 5px;
}

.popular-card:hover {
  transform: translateY(-5px) !important;
}

.card-image {
  position: relative;
  width: 100%;
  border-radius: 5px;
  height: 388px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s ease;
}

.popular-card:hover img {
  scale: 1.05;
}

.fav-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--light);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: var(--font-size-md);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, color 0.3s ease;
}

.fav-btn:hover {
  background: var(--primary);
  color: var(--light);
}

.card-content {
  padding: 8px 6px;
  text-align: left;
  background-color: var(--light);
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 5px;
}

.card-content h4 {
  font-size: var(--font-size-md);

  color: var(--dark);
}

.card-content .business-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--primary);
  font-weight: 100;
}

.card-content p {
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: var(--primary);
}

.card-content .rating {
  color: var(--dark);
  margin-bottom: 0px;
  font-size: var(--font-size-xm);
  display: flex;
}

.slider-nav {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav img {
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(61%) sepia(89%) saturate(678%) hue-rotate(12deg) brightness(95%) contrast(93%);
  transition: filter 0.3s ease;
}

.slider-nav:hover img {
  filter: brightness(0) saturate(100%) invert(43%) sepia(82%) saturate(707%) hue-rotate(355deg) brightness(93%) contrast(89%);
}

.prev .next {
  cursor: pointer;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}

.prev img,
.next img {
  padding: 8px 15px;
}

.prev:hover,
.next:hover {
  background: var(--primary);
  border-radius: 50%;
}

.prev:hover img,
.next:hover img {
  filter: brightness(0) invert(1);
}

.btn-wrapper {
  margin-top: 63px;
}

/* popular-section-end */

/* features-section-start */

.features-section {
  background-image: url("../img/background_3.svg");
  padding: 99px 20px 123px;
  text-align: center;
  height: 467px;
}

.features-section .container {
  max-width: 1040px;
  margin: 0 auto;
}

.features-section .section-title {
  font-size: var(--font-size-xll);

  color: var(--dark);
  margin-bottom: 89px;
}

.features-section .section-title span {
  color: var(--primary);
}

.features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.feature-item {
  flex: 1;
  min-width: 260px;

  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 15px;
  text-align: left;
}

.feature-item img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.feature-item p {
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
}

.divider {
  width: 1px;
  background-color: var(--primary);

  height: 127px;
  align-self: center;
}

/* features-section-end */

/* testimonials-section-start */
.testimonials-section {
  padding: 70px 0px 0px;
}

.testimonials-section .section-title {
  color: var(--primary);
  font-size: var(--font-size-xll);
  text-align: center;
  margin-bottom: 10px;
}

.testimonials-section .section-subtitle {
  text-align: center;
  margin-bottom: 102px;
}

.testimonial-card {
  background: var(--light);
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
  padding: 16px 16px;

  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: 0.3s ease;
}

.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.user-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.user-info img {
  width: 83px;
  height: 83px;

  object-fit: cover;
}

.user-name {
  color: var(--primary);
}

.ratings {
  text-align: right;
}

.ratings .score {
  font-weight: 700;
  font-size: var(--font-size-xll);
  margin-right: 4px;
}

.ratings .stars img {
  width: 20px;
  height: 20px;
}

.testimonial-text {
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
}

.testimonial-date {
  font-size: var(--font-size-xm);
  color: var(--secondary);
  align-self: flex-end;
  margin-top: 19px;
  display: flex;
  justify-content: end;
}

.custom-prev img,
.custom-next img {
  padding: 8px 15px;
}

.custom-prev:hover,
.custom-next:hover {
  background: var(--primary);
  border-radius: 50%;
}

.custom-prev:hover img,
.custom-next:hover img {
  filter: brightness(0) invert(1);
}

/* testimonials-section-end */

/* appointment-section-start */

.appointment-section {
  background-color: var(--light);
  padding: 60px 0px;
}

.appointment-section .container {
  width: 1136px;
}

.appointment-content {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  /* flex-wrap: wrap; */
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 98px;
}

.text-box {
  flex: 3;
  min-width: 300px;
  border-left: 2px solid var(--primary);
  padding-left: 18px;
}

.text-box h2 {
  color: var(--primary);
  font-size: var(--font-size-xll);
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 20px;
}

.text-box p {
  color: var(--dark);
  font-size: var(--font-size-xl);
  line-height: 1.6;
  margin-bottom: 20px;
}

.text-box .highlight {
  color: var(--primary);
  font-weight: bold;
}

.image-box {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding: 125px 0px 200px;
}

.image-box img {
  width: 100%;
  height: 842px;
  height: auto;
}

/* appointment-section-start */

/* footer-section-start */
.footer {
  background-image: url("../img/background_for_footer.png");
  background-size: cover;
  background-position: center;
  padding: 67px 20px 12px;

  color: var(--dark);

  text-align: left;
}

.footer-content-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 71px;
}

.footer-column {
  width: 23%;
  min-width: 200px;
}

.newsletter-column {
  width: 40%;
  min-width: 250px;
}

.footer-column p {
  margin: 0 0 14px 0;

  cursor: pointer;
}

.footer-column p:hover {
  text-decoration: underline;
  color: var(--primary);
}

.highlight-link {
  font-weight: bold;
  color: var(--primary);
}

.app-badge {
  display: block;

  height: auto;
  margin-top: 5px;
}

.app-badge-1 {
  margin-top: 19px;
}

.newsletter-title {
  font-size: var(--font-size-sm);
  margin-bottom: 15px;
}

.newsletter-title:hover {
  color: var(--dark) !important;
  cursor: unset !important;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 405px;
}

.email-input {
  padding: 12px;
  border: 1px solid var(--dark);
  border-radius: 5px;

  background-color: transparent;
}

.email-input:focus {
  outline: none;
  border-color: var(--primary);
  /* box-shadow: 0 0 5px rgba(255, 102, 0, 0.5); */
}

.signup-button {
  background-color: var(--primary);
  color: var(--light);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;

  transition: background-color 0.3s;
}

.signup-button:hover {
  background-color: var(--primary);
}

.copyright-bar {
  text-align: left;
}

.copyright-bar p {
  margin: 0;
}

.designer-name {
  color: var(--primary);
  font-weight: 700;
}

.fav-btn img {
  width: 24px;
  height: 24px;
  display: block;
  transition: all 0.3s ease;
}

.fav-btn:hover img {
  transform: scale(1.1);
  border: 1px solid var(--primary);
  border-radius: 50%;
}

/* footer-section-end */

/* ==================== Hair_salone_page  ==================== */

.service-hero {
  position: relative;
  height: 538px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--light);
  text-align: left;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: 1;
}

.service-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1125px;
}

.service-content {
  margin-bottom: 2.5rem;
}

.service-category {
  display: inline-block;

  color: var(--light);

  margin-bottom: 11px;
  letter-spacing: 1px;
  position: relative;
}

.service-category::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  margin-top: 11px;
  border-radius: 5px;
}

.service-content h1 {
  font-size: var(--font-size-xll);
  line-height: 25px;
  font-weight: bold;
}

.hair-page {
  background: url("../img/Hair_salone_page_assets/main_image.png") center/cover no-repeat;
}

.medical-page {
  background: url("../img/medical_centers/main_image.png") center/cover no-repeat;
}

.manikiour-pentikiour {
  background: url("../img/Spa/main_image.png") center/cover no-repeat;
}

.nail-salons {
  background: url("../img/nail_salons.png") center/cover no-repeat;
}

.ypiresies-katharismou {
  background: url("../img/cleaning_services.png") center/cover no-repeat;
}

.results-page {
  background: url("../img/Results_page/main_image.png") center/cover no-repeat;
  height: 150px;
}

.service-search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--light);

  padding: 0px 31px;

  max-width: 1077px;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 5px;

  margin: 0 auto;
  position: relative;
  z-index: 9998;
  top: -35px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 29px;
  flex: 1;

  position: relative;
  height: 71px;
}

.service-search-box .location-dropdown .dropdown-btn {
  padding: 0px 0px 0px 0px;
  border: none;
  gap: 20px;
}

.service-search-box .location-dropdown .dropdown-btn .dropdown-list {
  position: absolute;
  top: 127%;
  left: 0;
  right: 0;
  background: var(--light);
  border: 1px solid var(--primary);
  color: var(--dark);
  border-radius: 5px;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  z-index: 9999;
  text-align: left;
  width: 500px;
}

.border-right {
  border-right: 2px solid var(--primary);
  height: 71px;
}

.search-field:last-of-type {
  border-right: none;
}

.search-field i {
  color: var(--dark);
  font-size: var(--font-size-md);
  width: 20px;
  text-align: center;
}

.search-field select,
.search-field input {
  border: none;
  outline: none;
  background: transparent;

  color: var(--dark);
  width: 100%;
}

.search-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("data:image/svg+xml;charset=UTF-8,<svg width='12' height='8' xmlns='http://www.w3.org/2000/svg'><path d='M1 1l5 5 5-5' stroke='%23777' stroke-width='2' fill='none' fill-rule='evenodd'/></svg>") no-repeat right 12px center;
  background-size: 12px;
  padding-right: 24px;
}

.search-field input::placeholder {
  color: var(--secondary);
}

.date-field {
  position: relative;
}

.date-field input[type="date"] {
  width: 100%;
  padding-right: 36px;
  cursor: pointer;
}

.calendar-icon {
  cursor: pointer;
}

.date-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  display: none;
}

.date-field input[type="date"]::-moz-focus-inner {
  border: 0;
}

.date-field input[type="date"]::-webkit-inner-spin-button,
.date-field input[type="date"]::-webkit-clear-button {
  display: none;
}

.date-field input[type="date"],
.dateInput {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;

  color: var(--dark);
  cursor: pointer;
  padding-left: 8px;
  /* font-family: inherit; */
}

.dateInput {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;

  color: var(--dark);
  cursor: pointer;
  padding-left: 8px;
  /* font-family: inherit; */
}

.dateInput {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;

  color: var(--dark);
  cursor: pointer;
  padding-left: 8px;
  /* font-family: inherit; */
}

.services-section {
  text-align: center;
  padding: 60px 0;
  max-width: 1328px;
  margin: auto;
  position: relative;
}

.services-header h2 {
  color: var(--primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.services-header p {
  margin-bottom: 40px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.slide:hover img {
  transform: scale(1.05);
}

.slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--light);
  text-align: left;
}

.slide-info h3 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin: 0;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: var(--white);
  font-size: var(--font-size-xl);
  cursor: pointer;
  padding: 12px;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10;
}

.nav-btn:hover {
  background: var(--primary);
}

.nav-btn.prev {
  left: 20px;
}

.nav-btn.next {
  right: 20px;
}

.top-salons {
  background-image: url("../img/Hair_salone_page_assets/background_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--light);
  position: relative;
  padding: 51px 0 142px;
}

.top-salons .container {
  width: 100%;
  max-width: 1452px;
  margin: 0 auto;
  text-align: center;
  padding: 0px 0;
}

.section-title {
  color: var(--primary);
  font-weight: 600;
  font-size: var(--font-size-xll);
  margin-bottom: 9px;
}

.top-salons .section-subtitle {
  color: var(--dark);
  margin-bottom: 64px;
}

.card-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(456px, 1fr)); */
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
}

.salon-card {
  background: var(--light);

  overflow: hidden;

  transition: all 0.3s ease;
  width: 456px;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 5px;
  margin: 0 auto;
}

.salon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image {
  position: relative;
  height: 301px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.salon-card:hover .card-image img {
  transform: scale(1.05);
}

.star {
  position: absolute;
  display: flex;
  bottom: 10px;
  right: 10px;
}

.star img {
  width: 21px;
  height: 21px;
}

.salon-card .card-body {
  padding: 24px 17px 15px;
  text-align: end;
}

.salon-card .card-body h3 {
  font-size: var(--font-size-xl);
  font-weight: bold;
  margin-bottom: 19px;
  color: var(--dark);
  text-align: left;
  position: relative;
}

.salon-card .card-body h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  margin-top: 11px;
}

.card-body p {
  display: flex;
  align-items: center;
  color: var(--dark);
  margin-top: 11px;
  gap: 6px;
}

.card-body p img {
  width: 22px;
  height: 22px;
}

.time {
  margin-bottom: 0px;
}

.steps-section {
  padding: 136px 0px 210px;
}

.steps-section .container {
  max-width: 1240px;
}

.steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 59px;
  flex-wrap: wrap;
  text-align: center;
}

.step {
  flex: 1 1 300px;
  /* max-width: 320px; */
}

.image-wrapper {
  margin: 0 auto 46px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper img {
  width: 319px;
  height: 337px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.image-wrapper:hover img {
  transform: scale(1.02);
}

.image-wrapper img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

.step h3 {
  color: var(--primary);
  font-weight: 600;
  font-size: var(--font-size-xll);
  margin-bottom: 56px;
}

.step p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.underline {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
  margin: 14px auto 0;
  border-radius: 5px;
}

.service-card-section {
  padding: 60px 0 81px;
  text-align: center;
}

.section-title {
  color: var(--primary);
  font-size: var(--font-size-xll);
  font-weight: 500;
  margin-bottom: 8px;
}

.section-subtitle {
  margin-bottom: 27px;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-section .service-card {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  padding: 0px;
  height: 479px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 479px;

  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card-section .service-card .service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--light);
  padding: 15px 0;
  margin: 0px;
}

.service-card-section .service-card .service-info h3 {
  margin: 0;
  font-size: var(--font-size-md);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.service-info h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  margin: 6px auto 0;
}

/* ===============shop pages ===============*/

.salon-profile {
  background-image: url("/assets/img/Shop/background.png");
  padding: 30px 0px 168px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.salon-profile-grid {
  display: grid;
  grid-template-columns: 870px 1fr;
  gap: 45px;
  max-width: 1364px;
  margin: 20px auto;
}

.salon-detles {
  background: var(--light);
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
  padding: 25px;
}

.salon-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 41px;
}

.salon-header h2 {
  font-size: var(--font-size-xll);
  font-weight: bold;
  color: var(--dark);
}

.salon-header h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  margin: 10px 0 18px;
}

.salon-header p {
  color: var(--dark);
  display: flex;
  gap: 10px;
  margin-top: 5px;
  align-items: center;
}

.salon-header img {
  width: 18px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;

  /* color: var(--primary); */
}

.rating i {
  color: var(--primary);
}

.hero-media {
  width: 100%;
  max-width: 829px;
  border-radius: 5px;
  overflow: hidden;

  padding-bottom: 15px;
  background: var(--light);
}

.main-image {
  width: 100%;

  height: 391px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid #eee;
  transition: opacity 0.4s ease;
  border-radius: 5px;
}

.thumbs {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  padding: 24px 0;
}

.thumb-container {
  display: flex;
  gap: 37px;
  overflow-x: auto;
  padding: 0;
  scroll-behavior: smooth;
}

.thumb-container::-webkit-scrollbar {
  display: none;
}

.thumb {
  flex: 0 0 auto;
  border-radius: 5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border 0.3s ease;
  object-fit: cover;
}

.thumb {
  width: 135px;
  height: 136px;
}

.thumb.active {
  border: 2px solid var(--primary);
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
}

.thumb:hover {
  transform: scale(1.05);
}

.thumb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  cursor: pointer;
  font-size: 22px;
  color: var(--primary);
  background-color: transparent;
  z-index: 10;
  border: none;
}

.thumb-nav:hover {}

.thumb-nav.prev {
  left: 10px;
}

.thumb-nav.next {
  right: 10px;
}

.about {
  margin-top: 33px;
}

.about h3 {
  margin-bottom: 33px;
  font-size: var(--font-size-xl);
  color: var(--primary);
  font-weight: 100;
}

.about p {
  color: var(--dark);
  line-height: 25px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 15px;

  margin: 30px auto 0px;
}

.service-list h3 {
  margin-bottom: 10px;

  font-size: var(--font-size-xl);
  color: var(--primary);
  font-weight: 100;
}

.service-card {
  background: var(--light);
  border-radius: 5px;
  border: 1px solid #f0f0f0;
  box-shadow: 0px 3px 6px #00000029;
  padding: 11px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.3s ease;
}

.service-card:hover {
  box-shadow: 0px 3px 6px #00000029;
}

/* .service-info {
  flex: 1;
} */

.service-list .service-card.service-info {
  margin-bottom: 0px;
}

.service-title {
  color: var(--dark);
  font-weight: 600;
  position: relative;
  margin-bottom: 6px;
  margin-top: 18px;
}

.service-title::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 0;
  width: 34px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 5px;
}

.service-duration {
  font-size: 14px;
  color: var(--dark);
}

.right-section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 160px;
}

.service-price {
  font-size: var(--font-size-md);
  color: var(--dark);
  font-weight: 600;
  line-height: 1;
}

.service-btn {
  background-color: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 5px;
  padding: 8px 14px;
  font-size: var(--font-size-xm);
  border: 1px solid var(--primary);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-btn:hover {
  background-color: var(--light);
  border: 1px solid var(--primary);
  color: var(--primary);
}

.more-btn {
  text-align: center;
  margin-top: 15px;
}

.contact-card {
  background: var(--light);
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
  width: 100%;
  max-width: 449px;
  padding: 14px 24px 28px;
}

.role {
  color: var(--primary);

  margin-bottom: 13px;
  font-size: var(--font-size-xl);
}

.profile-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.profile-section .profile-img {
  width: 83px;
  height: 83px;
  border-radius: 0px;
  object-fit: cover;
  background-color: var(--light);
}

.profile-section .name {
  color: var(--primary);
  font-size: var(--font-size-xll);
  font-weight: 100;
  margin: 0;
  position: relative;
  padding-bottom: 9px;
}

.name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 5px;
}

/* Contact Info */
.contact-info {
  margin: 19px 0;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.contact-row p {
  margin: 0;

  color: var(--primary);
}

.contact-row p span {
  color: var(--dark);
}

.contact-row span {
  margin: 0;

  color: var(--dark);
}

.social-media {
  display: flex;

  align-items: end;
  flex-direction: column;

  margin-top: 10px;
}

.social-media p {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}

.social-media p strong {
  color: var(--dark);
}

.social-icons a {
  color: var(--dark);
  margin-left: 10px;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--primary);
}

.store-section {
  display: flex;
  gap: 45px;
  flex-wrap: wrap;
  justify-content: left;
  margin: 40px auto;
}

.card-hover {
  background-color: var(--light);
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0px 3px 6px #00000029;
}

.hours-card {
  padding: 22px 24px;
  width: 411px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hours-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  /* left flexible, right tight */
  align-items: center;
  transition: color 0.3s ease;
}

.day {
  color: var(--primary);

  font-size: var(--font-size-xl);
}

.hours-card:hover .day {
  color: var(--primary);
}

.hours-card:hover .time {
  color: var(--dark);
}

.map-card {
  position: relative;
  width: 411px;
  height: 382px;
  overflow: hidden;
  background-color: var(--light);
  padding: 10px;
}

.map-container {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.map-btn {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--light);
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.map-btn:hover {
  background-color: var(--primary);
  transform: translateX(-50%) scale(1.05);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 449px;
  width: 100%;
  background-color: var(--light);
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 5px;
  padding: 70px 30px;
  margin-top: 24px;
}

.review-item {
  background: var(--light);
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 5px;
  padding: 16px;
  width: 387px;
  transition: transform 0.3s ease;
}

.review-item:hover {
  transform: translateY(-3px);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.review-rating {
  color: var(--accent);
  font-size: var(--font-size-md);
  margin: 4px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.review-rating span {
  color: var(--dark);
  font-weight: 600;
}

.review-msg {
  color: var(--dark);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.5;
}

.review-date {
  color: var(--light);
  font-size: 13px;
  margin-top: 10px;
  text-align: right;
}

/* shop pages-end */

/* ===============partner-section-sart ============================================*/

.partner-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("../img/Become_Partner/background_image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: left;

  position: relative;
  overflow: hidden;
}

.partner-content {
  max-width: 900px;
  padding: 60px 0px 114px;
}

.partner-content h3 {
  font-size: var(--font-size-xl);
  font-weight: 400;
  margin-bottom: 25px;
}

.partner-content h3 span {
  color: var(--primary);
  line-height: 30px;
}

.partner-content p {
  font-size: var(--font-size-xl);
  line-height: 30px;
  margin-bottom: 25px;
  font-weight: 100;
}

.partner-content p span {
  color: var(--primary);
  font-weight: 500;
}

.partner-content .highlight {
  color: var(--primary);
  font-weight: 500;
}

.partner-image {
  width: 100%;
  height: 300px;
  background: url("../img/Become_Partner/image.png") center/cover no-repeat;
}

/*  partner-section-end*/

/*===============profile-page-start ===============*/
.profile {
  padding: 79px 0px 109px;
}

.profile .container {
  max-width: 998px;
  width: 100%;
  margin: 0 auto;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 85px;
  flex-wrap: wrap;
}

.profile-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  padding-left: 10px;
}

.profile-img {
  width: 89px;
  height: 89px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--light);

  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#avatarUpload {
  display: none;
}

.upload-text {
  color: var(--dark);
  margin-top: 5px;
  cursor: pointer;
  font-weight: 600;
}

.profile-user-info .username {
  color: var(--primary);
  font-size: var(--font-size-xll);

  font-weight: 600;
}

.profile-user-info .email {
  color: var(--dark);
  margin-top: 5px;
  cursor: pointer;
  /* font-weight: 600; */
}

.profile-cards {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
  max-width: 943px;
}

.card {
  background: var(--light);
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
  padding: 18px 67px 18px 118px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.card-section {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 250px;
}

.icon-title {
  display: flex;

  gap: 8px;
  margin-bottom: 15px;
}

.icon-title h3 {
  font-size: var(--font-size-xl);
  font-weight: 200;
  margin: 0;
}

.card-section p {
  line-height: 1.5;

  margin-bottom: 15px;
}

.profile_divider {
  width: 2px;
  background-color: var(--primary);
  margin: 0 59px 0 0;
  height: 167px;
}

.logout-btn {
  display: flex;
  justify-content: center;
  margin-top: 63px;
}

/* profile-page-end */

/* ===============Setting-start ===============*/
.settings-page {
  padding: 66px 0px 128px;
}

.settings-page .container {
  max-width: 998px;
  margin: 0 auto;
}

.account-settings {
  padding: 0px 39px;
}

.back-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;

  font-size: var(--font-size-lg);
  gap: 6px;
}

.back-link i {
  font-size: var(--font-size-md);
}

/* .section {
  margin-bottom: 48px;
} */

.section p {
  position: relative;
  font-weight: normal;

  padding-top: 13px;
  display: inline-block;
  line-height: 30px;
  color: var(--dark);
  /* margin-bottom: 40px; */
  margin-top: 41px;
}

.section p::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 32px;
  height: 2px;
  background-color: var(--primary);
}

.radio,
.checkbox {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 30px;

  color: var(--dark);
  cursor: pointer;
}

.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  appearance: none;
  width: 19px;
  height: 19px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio input[type="radio"]:checked::before,
.checkbox input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  width: 10.5px;
  height: 10.5px;
  background: var(--primary);
  border-radius: 50%;
  top: 2.2px;
  left: 2.5px;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

input[type="radio"]:checked {
  background-color: var(--primary);
  box-shadow: 0 0 0 2px var(--light) inset;
  border: 2px solid var(--primary);
}

.delete-account {
  text-align: center;
  margin-top: 56px;
  padding: 14px 0;
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
}

.delete-account a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* Setting-end */

/* ===============booking-success-page-start ===============*/

.booking-success-section {
  background-image: url("/assets/img/Booking_Success_Page_assets/background_image.png");
  width: 100%;
  height: 100%;
  height: 920px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.booking-success-section .container {
  max-width: 491px;
  margin: 0 auto;
}

.booking-success-section p {
  padding-left: 10px;
  margin-top: 11px;
}

.success-card {
  width: 100%;
  max-width: 491px;
  aspect-ratio: 1/1;
  background-image: url("../img/Booking_Success_Page_assets/shape_background.png");

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  animation: fadeIn 1s ease forwards;
  padding: 20px;
  box-sizing: border-box;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.title {
  color: var(--primary);
  font-weight: 700;
  font-size: var(--font-size-xll);
  margin-bottom: 10px;
}

.subtitle {
  color: var(--dark);
  font-size: var(--font-size-xl);
  margin-bottom: 30px;
}

.icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.back-button {
  margin-top: 41px;
  text-align: center;
}

.icon img {
  animation: bounce 1.5s infinite ease-in-out;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* bookinh-success-page-end */

/* ===============personalinformation-pages-start ===============*/

.personal-information-page {
  padding: 45px 420px 176px;
  background-image: url("/assets/img//Personal_Information/background_photo.png");

  background-size: cover;
  background-position: center;
  /* min-height: 100vh; */
}

.personal-information-page .container {
  max-width: 692px;
}

.personal-information-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.avatar-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
}

.avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--light);
  box-shadow: 0px 3px 6px #00000029;
  font-weight: bold;
  display: flex;

  align-items: center;
  overflow: hidden;
}

#avatarUpload {
  display: none;
}

.personal-information-header .upload-text {
  color: var(--primary);
  margin-top: 0px;
  text-decoration: underline;
}

.personal-information-page .back-link {
  display: inline-block;
  color: var(--primary);
  text-decoration: none;

  transition: color 0.3s;
}

.personal-information-page .back-link:hover {
  color: var(--primary);
}

.personal-information-page .intro-text {
  max-width: 750px;
  line-height: 1.7;
  color: var(--primary);
  font-size: var(--font-size-xl);
  margin: 0 auto;
}

.personal-information-page .intro-text span {
  color: var(--dark);
}

.personal-info-form {
  /* max-width: 658px; */
  margin: 37px auto 0;
}

.personal-info-form .form-row {
  display: flex;
  gap: 164px;
  /* margin-bottom: 24px; */
  flex-wrap: wrap;
}

.personal-info-form .form-field {
  /* flex: 1;
  min-width: 45%; */
}

.personal-info-form .form-field label {
  display: block;

  margin-bottom: 5px;
}

.personal-info-form .form-field input {
  /* width: 100%;
  max-width: 264px; */
  padding: 10px;
  border: 1px solid var(--dark);
  border-radius: 5px;
  height: 42px;
  font-size: 0.95em;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.personal-info-form .forget {
  display: flex;
  justify-content: end;
  font-size: var(--font-size-xm);
  color: gray;
}

.personal-info-form .form-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 4px rgba(243, 143, 26, 0.3);
  outline: none;
}

.personal-info-form .password-field {
  max-width: calc(50% - 15px);
}

.personal-info-form .submit-button {
  display: flex;
  justify-content: center;
  margin: 30px auto 0;
}

/* personaliformation-pages-end */

/* =============== Reservation-start =============== */

.reservation-section {
  background-image: url("/assets/img/Reservation/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 73px 0 257px;
  height: auto;
}

.reservation-section .container {
  max-width: 1454px;
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

  margin: 0 auto;
  align-items: start;
}

.business-info {
  display: flex;
}

.business-info .back-link {
  margin-top: 60px;
}

.studio-card {
  background: var(--light);
  padding: 26px 22px;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 5px;
  margin-bottom: 20px;

  width: 548px;
}

.studio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.studio-header h3 {
  margin: 0;
  font-size: var(--font-size-xll);
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 16px;
}

.studio-header h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 5px;
}

.studio-info {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-gray);
  display: flex;
  justify-content: space-between;
}

.studio-info .location {
  display: flex;
  align-items: center;
}

.studio-info .location img {
  margin-right: 6px;
}

.studio-info img {
  width: 27px;
  height: 27px;
  margin-right: 6px;
}

.studio-info .rating {
  display: flex;
  align-items: center;
  gap: 0px;
  color: var(--dark);
}

.reservation-grid .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 52px;
}

.service-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 3px 6px var(--dark) 00025;
  transition: transform 0.3s ease;
  width: 100%;
  height: 258px;
}

.service-item:hover img {
  transform: scale(1.05);
}

.service-item img {
  width: 100%;
  height: 258px;
  object-fit: cover;
}

.service-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
}

.service-item span {
  position: absolute;
  bottom: 19px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--light);
  font-weight: 600;

  z-index: 1;
}

.service-item.active {
  outline: 3px solid var(--primary);
}

.selected-service-item {
  background: var(--light);
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.selected-service-item .details {
  color: var(--dark);
  position: relative;
  padding-top: 10px;
  line-height: 25px;
}

.selected-service-item .details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.selected-service-item small {
  display: block;
  color: var(--dark);
  margin-top: 5px;
  font-size: var(--font-size-xm);
}

.selected-service-item h3 {
  font-size: var(--font-size-xl);
  line-height: 25px;
  font-weight: 400;
}

.btn-add-service {
  margin-top: 28px;
}

.calendar-panel {
  background: var(--light);
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
  position: relative;
  padding: 19px 0;
  width: 100%;
  max-width: 548px;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  position: relative;
  padding-left: 15px;
}

.calendar-header h4 {
  margin: 0;
  font-size: var(--font-size-xl);
  font-weight: 700;
  cursor: pointer;
  position: relative;
  padding-bottom: 7px;
}

.calendar-header h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 5px;
}

.month-picker-panel {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--light);
  border: 1px solid var(--secondary);
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 5px;
  padding: 10px;
  /* display: none; */
  z-index: 10;
}

.month-picker-panel.active {
  display: block;
}

.month-picker-panel select {
  border: 1px solid var(--secondary);
  border-radius: 5px;
  padding: 6px;
  /* font-family: inherit; */
  margin-right: 6px;
}

.week-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
}

.prev-week-btn,
.next-week-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--font-size-md);
  color: var(--dark);
}

.calendar-days-panel {
  display: flex;
  justify-content: space-between;
  gap: 37px;
}

.day-item {
  text-align: center;
  flex: 1;
  cursor: pointer;
  padding: 5px 0;
  color: var(--dark);
  transition: all 0.3s ease;
}

.day-item span.date-number {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 32px;
  border-radius: 50%;
  color: var(--dark);
  transition: all 0.3s ease;
  margin-top: 5px;
  font-size: var(--font-size-xl);
}

.day-item:hover span.date-number {
  background: #ffe5cc;
}

.day-item.active span.date-number {
  background: var(--primary);
  color: var(--light);
}

.time-slots-panel {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  overflow-x: auto;
  scrollbar-width: thin;
  -ms-overflow-style: none;
  height: 294px;
}

.time-slots-panel::-webkit-scrollbar {
  height: 6px;
}

.time-slots-panel::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

.time-slot-item {
  padding: 8px 8px 8px 49px;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  font-size: var(--font-size-xl);
}

.time-slot-item:hover {
  background: #ffe5cc;
}

.time-slot-item.active {
  background: var(--primary);
  color: var(--light);
  font-weight: 600;
}

.btn-next {
  margin-top: 56px;

  float: right;
}

/* Reservation-end */

/* =============== Reservation-page_1-start  ===============*/

.reservation-section_1 {
  padding: 50px 0px 78px;
}

.reservation-section1 .container {
  max-width: 1340px;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 115px;
  width: 100%;
  margin-left: 87px;
  align-items: flex-start;
}

.booking-form {
  display: flex;
  flex-direction: column;
  /* gap: 32px; */
  /* margin-left: 87px; */
}

.form-box {
  width: 100%;
  background: var(--light);
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 5px;
  padding: 21px 47px 0px 47px;
  margin-bottom: 32px;
  width: 728px;
}

.form-box-title {
  color: var(--primary);
  font-size: var(--font-size-xl);
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 6px;
}

.form-box-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.booking-form .input-groups {
  display: flex;
  flex-direction: column;
  margin-bottom: 29px;
  width: 100%;
  max-width: 587px;
}

.booking-form .input-groups label {}

.booking-form .input-groups input,
.booking-form .input-groups textarea {
  border: 1px solid var(--primary);
  border-radius: 5px;
  padding: 10px;
  outline: none;
  transition: border-color 0.3s ease;
}

.booking-form .input-groups input:focus,
.booking-form .input-groups textarea:focus {
  border-color: var(--primary);
}

textarea {
  resize: none;
  min-height: 80px;
}

.payment-method {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 20px;
}

.payment-method label {
  font-size: 15px;
  line-height: 1.5;
  flex: 1;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

input[type="radio"]:checked {
  background-color: var(--primary);
  box-shadow: 0 0 0 2px var(--light) inset;
  border: 2px solid var(--primary);
}

.terms-box p {
  line-height: 1.4;
  margin-bottom: 27px;
}

.terms-box a {
  color: var(--primary);
  text-decoration: none;
}

.account-settings .submit-button .btn-primary-1 {
  width: fit-content;
  box-shadow: 0px 3px 6px #00000029;
  margin-top: 48px;
}

.booking-summary {
  width: 100%;
  max-width: 422px;
  background-image: url("/assets/img/Booking_Success_Page_assets/shape_background.png");
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  animation: booking_view-fadeIn 1s ease forwards;
}

.summary-day {
  font-weight: 600;
  font-size: var(--font-size-xll);
  margin-bottom: 13px;
}

.summary-date {
  margin-bottom: 13px;
  color: var(--primary);
}

.summary-time {
  display: block;
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 60px;
  color: var(--dark);
}

.summary-place {
  font-size: var(--font-size-xl);

  position: relative;
  font-weight: bold;
}

.summary-place::after {
  content: "";
  display: block;
  width: 31px;
  height: 2px;
  background-color: var(--primary);
  margin: 13px auto;
}

.summary-address {
  font-size: 14px;
  margin-bottom: 54px;
  position: relative;
}

.summary-address::after {
  content: "";
  display: block;
  width: 31px;
  height: 2px;
  background-color: var(--light);
  margin: 13px auto 0;
}

.summary-duration {
  color: var(--dark);
}

/* Reservation-page_1- end */

/* =============== booking-Lis-Page-start =============== */

.bookings-section-header {
  background: var(--light);
  padding: 38px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.bookings-section-header i {
  font-size: 1.8rem;
  background: var(--light) 3e6;
  color: var(--primary);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bookings-section-header i:hover {
  background: var(--primary);
  color: var(--light);
}

.bookings-section-header h2 {
  font-size: var(--font-size-xll);
  font-weight: 600;
  color: var(--primary);
}

.bookings-section {
  background-image: url("/assets/img/Booking_List/Background_photo.png");
  padding: 58px 0 33px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 93px;
}

.bookings {
  width: 90%;
  max-width: 800px;
  margin: 40px auto 0;
  background: var(--light);
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 5px;
  position: relative;
}

.month-popup {
  position: absolute;
  top: -40px;

  background: var(--light);
  border: 1px solid #eaeaea;

  display: none;
  flex-direction: column;
  z-index: 999;
  width: 348px;
  padding: 15px;
  animation: fadeIn 0.3s ease;
}

.month-popup.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.year-select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.year-select button {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
}

.year-select button:hover {
  color: var(--primary);
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.month-item {
  background: var(--light) 3e6;
  border: none;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
  color: var(--dark);
}

.month-item:hover,
.month-item.active {
  background: var(--primary);
  color: var(--light);
}

.booking-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #eaeaea;
  padding: 32px 38px 14px;

  background: var(--light);
  transition: box-shadow 0.2s ease;
}

.booking-card:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.booking-info h3 {
  font-size: var(--font-size-xl);
  font-weight: bold;
  color: var(--dark);
}

.booking-info .date {
  color: var(--primary);
  margin-top: 7px;
  margin-bottom: 7px;
}

.booking-info .location {
  color: var(--dark);
  font-size: var(--font-size-xm);
}

.booking-btn {
  background: var(--primary);
  border: none;
  color: var(--light);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.booking-btn:hover {
  background: var(--primary);
}

.pagination {
  display: flex;
  justify-content: center;

  margin-top: 25px;
  gap: 10px;
}

.pagination button {
  background: none;
  border: none;
  color: var(--primary);

  cursor: pointer;
  transition: color 0.3s;
}

.pagination button:hover {
  color: var(--primary);
}

.pagination span {
  font-weight: 600;
  color: var(--dark);
}

/* Booking-Lis-Page-end */

/* =============== Booking-view_page-start ===============*/
.booking_view-section {
  background-image: url("/assets/img/Booking_view/background_photo.png");
  background-size: cover;
  background-position: center;
  width: 100%;

  padding: 53px 0px 156px;
}

.booking_view {
  width: 100%;
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: self-start;

  text-align: center;

  gap: 53px;
}

.booking_view-card {
  width: 100%;
  max-width: 597px;

  aspect-ratio: 1/1;
  background-image: url("/assets/img/Booking_Success_Page_assets/shape_background.png");
  background-size: contain;

  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;

  animation: booking_view-fadeIn 1s ease forwards;
  padding: 20px;
}

@keyframes booking_view-fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.booking-confirmation {
  text-align: center;
  padding: 40px 20px;
  max-width: 400px;
  border-radius: 5px;
}

.salon-info h2 {
  font-weight: 700;
  font-size: var(--font-size-xl);
}

.salon-info p {
  color: var(--dark);
  font-size: var(--font-size-xm);
  margin-top: 3px;
}

.salon-info::after {
  content: "";
  display: block;
  width: 33px;
  height: 2px;
  background-color: var(--primary);
  margin: 10px auto 24px;
  border-radius: 5px;
}

.booking-date h3 {
  font-size: var(--font-size-xll);
  font-weight: 600;
  margin-bottom: 6px;
}

.booking-date .date::after {
  content: "";
  display: block;
  width: 33px;
  height: 2px;
  background-color: var(--primary);
  margin: 26px auto 16px;
  border-radius: 5px;
}

.booking-date .date {
  color: var(--primary);
}

.booking-date h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  margin: 24px auto 0;
  border-radius: 5px;
}

.booking-date h1 {
  font-size: var(--font-size-xl);
  font-weight: 700;
}

.service-information {
  padding: 17px 0;
  margin-bottom: 101px;
}

.service-information h4 {
  font-weight: 600;
}

.service-information p {
  color: var(--dark);
  font-size: var(--font-size-xm);
  margin-top: 5px;
}

.shop-info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  text-align: left;
  padding: 0px 38px;
}

.shop-info h3::after {
  content: "";
  display: block;
  width: 33px;
  height: 2px;
  margin: 8px 0px;
  background-color: var(--primary);

  border-radius: 5px;
}

.shop-info .label {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 5px;
}

.shop-info p {
  margin-bottom: 10px;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: var(--dark);
  font-size: 1.2rem;
  margin: 0 4px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--primary);
}

/* Booking-view_page-end */

.custom-dropdown {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.custom-dropdown-toggle {
  display: flex;
  align-items: center;

  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-dropdown-toggle:hover {
  border-color: #ff7a00;
}

.custom-dropdown-toggle img {
  margin-right: 10px;
}

.dropdown-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #555;
  transition: transform 0.3s ease;
}

.custom-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.custom-dropdown-menu {
  list-style: none;
  margin: 5px 0 0 0;
  padding: 0;
  position: absolute;
  width: 100%;
  background: var(--light);
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
  display: none;
  max-height: 220px;
  overflow-y: auto;
  z-index: 999;
  top: 65px;
  animation: fadeIn 0.25s ease;
}

.custom-dropdown.open .custom-dropdown-menu {
  display: block;
}

.custom-dropdown-menu li {
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.custom-dropdown-menu li:hover {
  background: var(--primary);
  color: var(--light);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-search-box .dropdown {
  width: 100%;
}

.service-search-box .dropdown-btn {
  border: none;

  justify-content: space-between;
  padding: 0px;
}

/* =============== results-page-start =============== */
.results-section {
  background-image: url("./assets/img/Results_page/background_image.png");
  margin-top: -68px;
  padding: 113px 0 105px;
}

.results-section .results-grid {
  display: grid;
  grid-template-columns: 376px 1fr;
  gap: 33px;

  margin: 0 auto;
}

.filter-sidebar {
  background: var(--light);
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000020;
  padding: 18px 26px;
  height: fit-content;
}

.filter-sidebar h3 {
  font-size: var(--font-size-xll);
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  display: inline-block;
}

.filter-sidebar h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 5px;
}

.filter-sidebar h4 {
  position: relative;
  display: inline-block;
  font-weight: 100;
  margin-bottom: 5px;
}

.filter-sidebar .h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 323px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 5px;
}

.filter-sidebar .title {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 11px;
}

.filter-sidebar .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 323px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 5px;
}

.filter-sidebar .filter-section {
  margin-bottom: 36px;
}

.filter-sidebar label {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 11px;
  color: var(--dark);
  gap: 1px;
}

.filter-category {
  margin-right: 8px;
  width: 14px;
  height: 14px;
  accent-color: var(--primary);
  cursor: pointer;
  border: 2px solid var(--primary);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.filter-category:hover {
  box-shadow: 0 0 6px rgba(255, 122, 0, 0.4);
}

.filter-category:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.filter-location {
  width: 100%;
  border: 2px solid var(--primary);
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.filter-location:focus {
  border-color: var(--primary);
  box-shadow: 0px 3px 6px #00000029;
}

.filter-rating {
  cursor: pointer;
  margin-right: 4px;
  width: 14px;
  height: 14px;
  accent-color: var(--primary);
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

.rating-img img {
  width: 21px;
  height: 21px;
}

.filter-rating:hover {
  box-shadow: 0 0 6px rgba(255, 122, 0, 0.4);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.book-btn {
  background: var(--primary);
  border: none;
  color: var(--light);
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  align-self: flex-start;
}

.pagination-btn {
  text-align: center;
  margin-top: 101px;
}

.filter-section input[type="checkbox"] {
  accent-color: var(--primary);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

.extra-categories {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-top: 5px;
}

.see-more {
  margin-top: 5px;
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.see-more img {
  width: 10px;

  transition: transform 0.3s ease;
}

.see-more:hover {
  text-decoration: underline;
}

.see-more.active img {
  transform: rotate(180deg);
}

/* results-page-end */

/* Search Result Page Start */
.search-result-page {
  .results-section {
    background-image: url("/assets/img/Results_page/background_image.png");
    margin-top: -68px;
    padding: 113px 0 105px;
  }

  .results-grid {
    display: grid;
    grid-template-columns: 376px 1fr;
    gap: 33px;

    margin: 0 auto;
  }

  .filter-sidebar {
    background: var(--light);
    border-radius: 5px;
    box-shadow: 0px 3px 6px #00000029;
    padding: 18px 26px;
    height: fit-content;
  }

  .filter-sidebar h3 {
    font-size: var(--font-size-xll);
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
    display: inline-block;
  }

  .filter-sidebar h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 5px;
  }

  .filter-sidebar h4 {
    font-size: var(--font-size-sm);
    position: relative;
    display: inline-block;
    font-weight: 100;
    margin-bottom: 5px;
  }

  .filter-sidebar .h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 323px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 5px;
  }

  .filter-sidebar .title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 11px;
    font-weight: 100;
    color: var(--dark);
  }

  .filter-sidebar .title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 323px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 5px;
  }

  .filter-sidebar .filter-section {
    margin-bottom: 36px;
  }

  .filter-sidebar label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 11px;
    color: var(--dark);
    gap: 1px;
  }

  .filter-category {
    margin-right: 8px;
    width: 14px;
    height: 14px;
    accent-color: var(--primary);
    cursor: pointer;
    border: 2px solid var(--primary);
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .filter-category:hover {
    box-shadow: 0 0 6px rgba(255, 122, 0, 0.4);
  }

  .filter-category:checked {
    background-color: var(--primary);
    border-color: var(--primary);
  }

  .filter-location {
    width: 100%;
    border: 1px solid var(--primary-200);
    border-radius: 5px;
    padding: 8px 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .filter-location:focus {
    border-color: var(--primary);
    box-shadow: 0px 3px 6px #00000029;
  }

  .filter-rating {
    cursor: pointer;
    margin-right: 4px;
    width: 14px;
    height: 14px;
    accent-color: var(--primary);
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
  }

  .rating-img img {
    width: 21px;
    height: 21px;
  }

  .filter-rating:hover {
    box-shadow: 0 0 6px rgba(255, 122, 0, 0.4);
  }

  #applyFilters {
    margin-top: 33px;
    float: right;
  }

  .book-btn {
    background: var(--primary);
    border: none;
    color: var(--light);
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    align-self: flex-start;
  }

  .pagination-btn {
    text-align: center;
    margin-top: 101px;
  }

  .filter-section input[type="checkbox"] {
    accent-color: var(--primary);
    width: 15px;
    height: 15px;
    cursor: pointer;
  }

  .extra-categories {
    display: none;
    flex-direction: column;
    gap: 6px;
    margin-top: 5px;
  }

  .see-more {
    margin-top: 5px;
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
  }

  .see-more img {
    width: 10px;

    transition: transform 0.3s ease;
  }

  .see-more:hover {
    text-decoration: underline;
  }

  .see-more.active img {
    transform: rotate(180deg);
  }
}

/* bottom-bar-sart */

.bottom-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 24px;
  border-radius: 5px;
  border: 2px solid var(--primary);
  box-shadow: 0px 3px 6px #00000029;
  z-index: 100;
  width: 80%;
  max-width: 800px;
  transition: all 0.3s ease;
}

.summary {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

.summary span {
  font-weight: 600;
  color: var(--primary);
}

/* bottom-bar-end */

/* no-img-sart */
.no-img {
  background-color: var(--primary) !important;
  color: var(--light);
  display: flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.no-img img {
  display: none;
}

/* no-img-end */

.review-section {
  background: var(--light);
  width: 100%;
  max-width: 548px;
  padding: 26px;
  border-radius: 5px;
  box-shadow: 0px 3px 6px #00000029;
}

.review-section-title {
  margin: 0;
  font-size: var(--font-size-xll);
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.review-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  border-radius: 5px;
}

.review-section-group {
  margin-bottom: 22px;
}

.review-section-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--dark);
}

.review-section-input,
.review-section-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--primary);
  border-radius: 5px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

.review-section-input:focus,
.review-section-textarea:focus {
  border-color: var(--dark);
  border: 1px solid var(--dark);
  box-shadow: none;
}

.review-rating {
  display: flex;
  gap: 8px;
  font-size: 1.9rem;
  cursor: pointer;
}

.review-rating .review-rating-star {
  color: var(--secondary);
  transition: color 0.3s ease, transform 0.2s ease;
}

.review-rating-star:hover,
.review-rating-star--active {
  color: var(--primary);
  transform: scale(1.1);
}

.price-card {
  background: var(--light);
  border-radius: 5px;
  padding: 25px 20px;
  box-shadow: 0px 3px 6px #00000029;
  width: 100%;
  max-width: 548px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transition: 0.3s ease;
  margin-bottom: 18px;
}

.price-card h3 {
  font-size: var(--font-size-xl);
  font-weight: 400;
}

.price-amount {
  font-size: var(--font-size-xl);
  color: var(--primary);
  font-weight: 700;
}

.order-info {
  display: flex;
  gap: 35px;
  padding-left: 6px;
  margin-top: 16px;
}

.order-info p {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* no-data-pages-start */

.no-data-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-data-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.no-data {
  text-align: center;
  padding: 40px 20px 60px;
  background-color: var(--light);
  box-shadow: 0px 3px 6px #00000029;
  width: max-content;
  height: max-content;
  /* max-width: 600px; */
  border-radius: 5px;
}

.no-data img {
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
}

.no-data h2 {
  font-size: var(--font-size-xll);
  margin-bottom: 10px;
}

.no-data p {
  margin-bottom: 20px;
}

/* no-data-pages-end */