/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --servixa-font: "Inter", sans-serif;
  --servixa-gray: #585b6b;
  --servixa-yellow: #f2b400;
  --servixa-gray-rgb: 88, 91, 107;
  --servixa-base: #076797;
  --servixa-blue: #ebebeb;

  --servixa-base-rgb: 217, 2, 2;
  --servixa-primary: #ebebeb;
  --servixa-primary-rgb: 235, 235, 235;
  --servixa-black: #111111;
  --servixa-black-rgb: 17, 17, 17;
  --servixa-white: #ffffff;
  --servixa-white-rgb: 255, 255, 255;
  --servixa-bdr-color: #e6e6e6;
  --servixa-bdr-color-rgb: 230, 230, 230;
  --servixa-bdr-radius: 10px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--servixa-font);
  color: var(--servixa-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  /* overflow-x: hidden; */
  padding-bottom: 75px;
}

body,
html {
  overflow-x: hidden !important;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--servixa-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-decoration: none !important;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

section {
  padding: 2rem 0;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  vertical-align: middle;
  outline: none !important;
  background-color: var(--servixa-base);
  color: var(--servixa-white);
  font-size: 15px;
  line-height: 17px;
  font-weight: 600;
  padding-right: 8px;
  overflow: hidden;
  border-radius: 25px;
  transition: all 0.5s linear;
  text-transform: capitalize;
  z-index: 1;
}

.thm-btn>span {
  position: relative;
  font-size: 18px;
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--servixa-black);
  border-radius: 50%;
  color: var(--servixa-white);
  transition: all 0.5s linear;
}

.thm-btn:hover>span {
  background-color: var(--servixa-white);
  color: var(--servixa-base);
}

.thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--servixa-black);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn:hover {
  color: var(--servixa-white);
}

/* ======================================
   NAVBAR
====================================== */
.navLogodiv {
  height: 60px;
  transition: 0.3s ease;
}

.navbar-one {
  padding: 0.6rem 0 !important;
}

.navbar-nav .nav-link {
  color: var(--servixa-base);
  font-weight: 500;
}

/* MOBILE ICONS */
.mobile-location i,
.dropdown a i {
  font-size: 18px;
  color: var(--servixa-base);
}


/* location */
.location-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* border: 1px solid var(--servixa-bdr-color); */
  padding: 5px 10px !important;
  border-radius: 10px;
  width: 220px;
  gap: 20px;
}

.location-bar i {
  color: var(--servixa-base);
  font-size: 20px;
}

.location-bar .text-content h4 {
  margin: 0;
  font-size: 12px;
  color: var(--servixa-base) !important;
}

.location-bar .text-content p {
  margin: 2px 0 0 0;
  font-size: 10px;
  color: #666;
}

.drop-icon {
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.3s;
}

/* vehicle icon */
.vehicle-bar {
  display: flex;
  align-items: center;
  text-align: right;
  justify-content: center;
  /* border: 1px solid var(--servixa-bdr-color); */
  /* padding: 5px 10px !important; */
  /* border-radius: 10px; */
  width: 200px;
  gap: 10px;
}

.vehicle-bar i {
  color: var(--servixa-base);
  font-size: 20px;
}

.vehicle-bar .text-content h4 {
  margin: 0;
  font-size: 12px;
  color: var(--servixa-base) !important;
}

.vehicle-bar .text-content p {
  margin: 2px 0 0 0;
  font-size: 10px;
  color: #666;
}

/* ===============
     Location
================== */
/* HEADER */
.location-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--servixa-bdr-color);
}

.location-header i,
h3 {
  font-size: 18px !important;
  cursor: pointer;
  color: var(--servixa-base) !important;
  margin: 0 !important;

}

/* SEARCH */
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 12px;
  padding: 12px;
}

.search-box i {
  color: var(--servixa-yellow);
  margin-right: 10px;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
}

/* SUGGESTIONS */
.suggestions {
  list-style: none;
  padding: 0;
  margin: 6px 0;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
}

.suggestions li {
  padding: 12px;
  cursor: pointer;
}

.suggestions li:hover {
  background: #f5f5f5;
}

/* USE LOCATION */
.use-location {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #007bff;
  font-weight: 600;
  margin: 18px 0;
  cursor: pointer;
}

/* SAVED */
.section-location-title {
  margin: 10px 0;
}

.address-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--servixa-bdr-color);
}

.address-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.address-left i {
  color: var(--servixa-yellow);
}

.address-name {
  font-weight: 600;
}

.address-text {
  font-size: 14px;
  color: #666;
}

/* MENU */
.menu {
  position: relative;
}

.menu-box {
  position: absolute;
  right: 0;
  top: 20px;
  background: var(--servixa-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-box div {
  padding: 10px 14px;
  cursor: pointer;
}

.menu-box div:hover {
  background: #f5f5f5;
}

.hidden {
  display: none;
}

/* ================
  VEHICLE Select page
 ===================*/
.vehicle-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vehicle-header i,
h3 {
  flex: 1;
  color: var(--servixa-base) !important;
  font-size: 18px;
  margin: 0;
}

.vehicle-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  border-radius: 10px;
  padding: 0 20px;
}

.vehicle-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.vehicle-text h5 {
  color: var(--servixa-yellow);
}

.vehicle-image {
  height: 200px;
}

.vehicle-image img {
  max-height: 100%;
  object-fit: contain;
}

/* ==============================
   select Vehicle number  popup
    ============================== */
.bottom-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--servixa-white);
  border-radius: 18px 18px 0 0;
  padding: 20px;
  transition: 0.35s ease;
  z-index: 101;
}

/* Active */
.bottom-popup.show {
  bottom: 50px;
}

.popup-header h3 {
  font-size: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vehicle-number-label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 12px;

}

.number-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--servixa-bdr-color);
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 10px;
}

.prefix {
  font-weight: 700;
  margin-right: 10px;
}

.number-input input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
}

.info {
  font-size: 12px;
  color: #777;
  line-height: 1.4;
  margin-bottom: 10px;
}

.btn-proceed {
  width: 100%;
  background: #000;
  color: var(--servixa-white);
  padding: 8px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  margin-bottom: 10px;
}

.btn-skip {
  width: 100%;
  background: var(--servixa-white);
  border: 1px solid var(--servixa-bdr-color);
  padding: 8px;
  border-radius: 10px;
  font-size: 15px;
}

/* ==============================
   seved Vehicle show popup
    ============================== */

.saved-vehicle-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.saved-vehicle-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--servixa-black) !important;
}

.saved-vehicle-add-btn {
  background: #eef2ff;
  color: var(--servixa-base);
  border: none;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.saved-vehicle-label {
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
  margin: 10px 0 6px;
}

.saved-vehicle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--servixa-bdr-color);
}

.saved-vehicle-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.saved-vehicle-left img {
  width: 44px;
  height: 28px;
  object-fit: contain;
}

.saved-vehicle-left h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.vehicle-name {
  color: #2563eb;
}

.vehicle-brand {
  color: #6b7280;
  font-weight: 500;
}

.saved-vehicle-right {
  display: flex;
  align-items: center;
}

.saved-vehicle-check {
  width: 18px;
  height: 18px;
  background: #2563eb;
  color: var(--servixa-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.saved-vehicle-delete {
  width: 30px;
  height: 30px;
  background: #fee2e2;
  color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.saved-vehicle-close {
  position: absolute;
  top: 10px;
  right: 14px;
  color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
}

.saved-vehicle-close:hover {
  background: #e5e7eb;
}

.saved-vehicle-item.active {
  background: #f8fafc;
  border-radius: 12px;
  padding: 12px;
}

/* ==============================
   Thank you popup
    ============================== */
.popup-icon {
  font-size: 70px;
  color: var(--servixa-base);
  margin-bottom: 10px;
}

.popup-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.popup-message {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.popup-btn {
  background: var(--servixa-base);
  color: var(--servixa-white);
  padding: 10px 25px;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.popup-btn:hover {
  background: var(--servixa-base);
}

@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ================
    Brand Select
 ===================*/
.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2px;
}

.brand-header i,
h3 {
  flex: 1;
  color: var(--servixa-base) !important;
  font-size: 18px !important;
  margin: 0 !important;
}

.find-btn {
  background: var(--servixa-yellow);
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.brand-grid a {
  text-decoration: none;
  font-weight: 600 !important;
}

.brand img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.brand span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

/* ================
    POPUP
 ===================*/
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  display: none;
  z-index: 100;
}

.vehicle-search-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 350px;
  background: var(--servixa-white);
  border-radius: 16px;
  padding: 20px;
  display: none;
  z-index: 100;
  text-align: center;
}

.vehicle-search-popup h3 {
  text-align: center;
  margin-bottom: 15px;
}

.type {
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.type.active {
  border-color: var(--servixa-yellow);
  background: var(--servixa-white)be6;
}

.label {
  margin: 10px 0 5px;
  font-size: 15px;
}

.input-box-brand {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.input-box-brand input {
  border: none;
  outline: none;
  width: 100%;
}

.proceed {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: #ccc;
  color: var(--servixa-white);
  font-size: 15px;
}

.call-btn {
  margin: 15px auto 0;
  width: 55px;
  height: 55px;
  background: var(--servixa-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* ================
    Hero
 ===================*/
.wash-banner {
  overflow: hidden;
  margin-top: 100px;
}

.hero-container {
  padding: 0 50px 0 50px !important;
}

.banner-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--servixa-gray);
}

.banner-text {
  font-size: 16px;
  color: #666;
  max-width: 100%;
  margin: 15px 0 25px;
}

.wash-banner .btn-primary {
  width: 50%;
  background: var(--servixa-base) !important;
  color: var(--servixa-white);
  border-radius: 10px;
  font-weight: 600;
  padding: 14px 28px;
  border: none;
  transition: all 0.3s ease;
}

/* Benefits grid */
/* .benefits-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 480px;
}

.fancy-benefits .benefit-card {
  background: var(--servixa-white);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.fancy-benefits .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.fancy-benefits .icon {
  color: var(--yellow);
  font-weight: 700;
} */

/* Image */
.banner-image {
  max-height: 360px;
  animation: floatImg 6s ease-in-out infinite;
}

.image-collage {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* top 2 images */
.image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.image-row img,
.image-bottom img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* bottom image bigger */
.image-bottom img {
  height: 220px;
}

/* hover effect (subtle) */
.image-collage img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-collage img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

@keyframes floatImg {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }


}

/* =========================
   VIDEO SECTION BASE
========================= */
.team-one {
  position: relative;
  padding: 80px 0;
  background: #f8fbff;
  overflow: hidden;
}

/* background shape (optional) */
.team-one__shape-1 {
  position: absolute;
  left: -80px;
  top: 100px;
  opacity: 0.15;
  z-index: 0;
}

/* =========================
   SECTION TITLE
========================= */
.section-title {
  margin-bottom: 50px;
  z-index: 1;
}

.section-title__tagline {
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--servixa-yellow);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--servixa-base);
  line-height: 1.3;
}

/* =========================
   VIDEO GRID CARD
========================= */
.team-one {
  padding: 120px 0 100px;
  background: #fafafa;
}

.team-one__inner .row {
  row-gap: 30px;
}

.team-one__single {
  background: var(--servixa-white);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.35s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.team-one__single:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

/* Video container */
.team-one__img-box {
  position: relative;
  overflow: hidden;
}

.team-one__img iframe {
  width: 100%;
  height: 220px;
  border: none;
}

/* Dark hover overlay */
.team-one__img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0.45));
  opacity: 0;
  transition: 0.3s ease;
  z-index: 2;
}

.team-one__single:hover .team-one__img-box::before {
  opacity: 1;
}

/* Play icon overlay */
.team-one__social-box {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  opacity: 0;
  transition: 0.3s ease;
}

.team-one__single:hover .team-one__social-box {
  opacity: 1;
}

.project-one__video-icon {
  width: 60px;
  height: 60px;
  background: var(--servixa-yellow);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: 0.3s ease;
}

.team-one__single:hover .project-one__video-icon {
  transform: scale(1.1);
}

/* Content */
.team-one__content {
  padding: 18px 20px 20px;
  text-align: center;
}

.team-one__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-one__sub-title {
  font-size: 13px;
  color: #888;
}

/* ======================
       why choose 
  ========================*/
.why-choose-two__buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.tab-btn-1 {
  padding: 12px 20px;
  font-size: 16px;
  border: 2px solid var(--servixa-base);
  background-color: var(--servixa-white);
  color: var(--servixa-base);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
}

.tab-btn-1:hover,
.tab-btn-1.active {
  background-color: var(--servixa-base);
  color: var(--servixa-white);
}

.why-choose-two__img-box-1 img {
  width: 100%;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

/* new css end */

.why-choose-two {
  position: relative;
  display: block;
  padding: 50px 0 0px;
  z-index: 1;
}

.why-choose-two__left {
  position: relative;
  display: block;
  margin-right: 60px;
}


.why-choose-two__points {
  position: relative;
  display: block;
  margin: 25px 0 30px;
}

.why-choose-two__points li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.why-choose-two__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--servixa-base);
}

.why-choose-two__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 40px;
  color: var(--servixa-white);
  transition: all 500ms ease;
}



.why-choose-two__points li .content {
  position: relative;
  display: block;
  flex: 1;
}

.why-choose-two__points li .content h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-choose-two__points li+li {
  margin-top: 20px;
}

.why-choose-two__btn-and-call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}

.why-choose-two__call-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.why-choose-two__call-box .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--servixa-base);
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-two__call-box .icon:hover {
  background-color: var(--servixa-black);
}

.why-choose-two__call-box .icon span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--servixa-white);
}

.why-choose-two__call-box .content {
  position: relative;
  display: block;
  flex: 1;
}

.why-choose-two__call-box .content h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.why-choose-two__call-box .content h4 a {
  color: var(--servixa-black);
}

.why-choose-two__call-box .content h4 a:hover {
  color: var(--servixa-base);
}

.why-choose-two__right {
  position: relative;
  display: block;
}

.why-choose-two__img-box {
  position: relative;
  display: block;
  border-radius: var(--servixa-bdr-radius);
  z-index: 1;
}

.why-choose-two__img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: var(--servixa-bdr-radius);
  background-color: var(--servixa-primary);

}

.why-choose-two__img-box .before-after {
  position: relative;
}




/* =====================
   mision and vision 
 ===================== */
.mission-vision {
  padding: 60px 0;
  background-color: var(--servixa-white);
}

/* Boxes */
.box {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.box h4 {
  font-size: 22px;
  color: var(--servixa-yellow);
  margin-bottom: 15px;
}

.box p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  text-align: justify;
}

/* Image */
.mission-vision__image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ======================
      service card home page 
  =======================*/
/* SERVICE SECTION */
.px-service-wrap {
  padding: 15px;
  margin-bottom: 50px;
}

.px-service-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.px-service-title {
  font-size: 18px;
  font-weight: 600;
}

.px-service-link {
  font-size: 13px;
  color: #555;
  text-decoration: none;
}

/* HORIZONTAL SLIDER */
.px-service-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.px-service-row::-webkit-scrollbar {
  display: none;
}

/* CARD */
.px-service-item {
  min-width: 120px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.px-service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.px-service-label {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 6px 8px;
  background: var(--servixa-base);
  color: var(--servixa-white);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

/* ======================
      Footer Section 
  =======================*/
/* .footer-section {
  position: relative;
  background-color: var(--servixa-base);
  color: var(--servixa-white);
  padding: 30px 0 20px;
  overflow: hidden;
}


.footer-section__bg-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}


.footer-section__top {
  position: relative;
  z-index: 2;
}

.footer-widget__column {
  margin-bottom: 30px;
}

.footer-widget__logo img {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-widget__about-text {
  font-size: 14px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 20px;
  text-align: justify;
  width: 80%;
}

.site-footer__social a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background-color: #222;
  color: var(--servixa-white);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.site-footer__social a:hover {
  background-color: var(--servixa-yellow);
  color: var(--servixa-white);
}


.footer-widget__title {
  font-size: 18px !important;
  color: var(--servixa-white) !important;
  margin-bottom: 15px !important;
  font-weight: 600;
}

.footer-widget__quick-link-list li {
  margin-bottom: 10px;
  gap: 5px;
}

.footer-widget__quick-link-list li a {
  color: #ccc;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-widget__quick-link-list li a:hover {
  color: var(--servixa-yellow);
  text-decoration: none;
}

.footer-widget__contact-list li {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}

.footer-widget__contact-list .icon {
  font-size: 20px;
  color: #ccc;
  margin-right: 15px;
  min-width: 24px;
  font-weight: 600;
}

.footer-widget__contact-list .content span {
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 3px;
}

.footer-widget__contact-list .content p a {
  font-size: 14px;
  margin: 0;
  color: #ccc;
  font-weight: 600;
  text-decoration: none;
}

.site-footer__bottom {
  border-top: 1px solid #222;
  padding-top: 20px;
}

.site-footer__bottom-text {
  font-size: 14px;
  color: #ccc;
  font-weight: 600;
  margin-bottom: 10px;
}

.site-footer__bottom-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__bottom-menu li {
  display: inline-block;
  margin-left: 15px;
}

.site-footer__bottom-menu li a {
  color: #ccc;
  font-size: 14px;
  transition: all 0.3s ease;
}

.site-footer__bottom-menu li a:hover {
  color: var(--servixa-yellow);
} */
/* ====================
 Support page
========================*/
.sp-support-page {
  padding: 80px 20px;
  text-align: center;
  background-color: #f4f6f8;
}

/* TITLE */
.sp-title {
  font-size: 18px;
  font-weight: 600 !important;
  margin-bottom: 25px;
  text-transform: lowercase;
}

/* INFO BLOCK */
.sp-info {
  margin-bottom: 22px;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.sp-info p {
  font-size: 13px;
  line-height: 1.5;
  color: #333;
}

/* ICON */
.sp-icon {

  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;

}

.sp-icon i {
  font-size: 20px;
  color: var(--servixa-base);
}


.sp-subtitle {
  font-size: 20px !important;
  font-weight: 600 !important;
  margin: 30px 0 14px !important;
}


.sp-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}

.sp-social a {
  width: 40px;
  height: 40px;
  background: var(--servixa-base);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--servixa-white);
  font-size: 18px;
  text-decoration: none;
}


.sp-policy a {
  display: block;
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ====================
 Support page
========================*/
.profile-section {
  padding: 20px;
  background: #f3f4f8;
  min-height: 100vh;
}

/* TOP CARD */
.profile-summary-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.profile-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.profile-summary-text h3 {
  font-size: 16px;
  margin-bottom: 4px;
}

.profile-summary-text p {
  font-size: 12px;
  color: #555;
}

.profile-id {
  font-size: 11px;
  color: #888;
}

/* OPTIONS CARD */
.profile-options-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* OPTION ROW */
.profile-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.profile-option:last-child {
  border-bottom: none;
}

.option-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.option-text {
  font-size: 14px;
}

/* ICON */
.option-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-icon.yellow {
  background: #f5d54f;
}

.option-icon i {
  font-size: 14px;
  color: #000;
}

.profile-option i.fa-chevron-right {
  font-size: 12px;
  color: #999;
}

/* LOGOUT */
.profile-option.logout .option-text {
  color: #d00;
}


/* ====================
# Login One
========================*/
.login-one {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.login-one .container {
  max-width: 620px;
}

.login-one__form {
  position: relative;
  display: block;
}

.login-one__form .inner-title {
  position: relative;
  display: block;
  /* padding-bottom: 35px; */
}

.login-one__form .inner-title h2 {
  font-size: 35px;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.login-one__form form {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 40px 48px 50px;
}

.login-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.login-one__form form .input-box {
  position: relative;
  display: block;
}

.login-one__form form input[type="text"],
.login-one__form form input[type="email"],
.login-one__form form input[type="tel"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  background-color: var(--servixa-primary);
  width: 100%;
  height: 45px;
  color: var(--servixa-black);
  font-size: 16px;
  font-family: var(--servixa-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 15px;
  padding-right: 15px;
  outline: none;
  transition: all 500ms ease;
}

.login-one__form form input[type="text"]:focus,
.login-one__form form input[type="email"]:focus,
.login-one__form form input[type="tel"]:focus {
  border-color: var(--servixa-base);
  background-color: var(--servixa-white);
}

.login-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="text"]:-moz-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="text"]::-moz-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="tel"]::-webkit-input-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="tel"]:-moz-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="tel"]::-moz-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="tel"]:-ms-input-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="email"]:-moz-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="email"]::-moz-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--servixa-gray);
}

.login-one__form form .thm-btn {
  width: 100%;
  justify-content: center;
  align-items: center;
  border: none;
}

.login-one__form form .remember-forget {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}


.login-one__form form .checked-box1 {
  position: relative;
  display: block;
  min-height: 26px;
}

.login-one__form form .checked-box1 input[type="checkbox"] {
  display: none;
}

.login-one__form form .checked-box1 label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  color: var(--servixa-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--servixa-font);
}

.login-one__form form .checked-box1 input[type="checkbox"]+label span {
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 1px solid #e3e4ea;
  cursor: pointer;
  border-radius: 4px;

}

.login-one__form form .checked-box1 label span:before {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0;
  right: 0;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--servixa-base);
  border-radius: 2px;
  margin: 3px auto 0px;
  transform: scale(0);

}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span {
  border-color: var(--servixa-base);
}

.login-one__form form .checked-box1 input[type="checkbox"]:checked+label span:before {
  transform: scale(1.0);
}


.login-one__form form .forget {
  position: relative;
  display: block;
}

.login-one__form form .forget a {
  color: var(--servixa-black);
  font-size: 16px;
  line-height: 26px;
  font-family: var(--servixa-font);
  font-weight: 400;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.login-one__form form .forget a:hover {
  color: var(--servixa-base);
}

.login-one__form form .create-account {
  position: relative;
  display: block;
  padding-top: 25px;
}

.login-one__form form .create-account p {
  color: var(--servixa-black);
}

.login-one__form form .create-account p a {
  color: var(--servixa-base);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Sign Up One
--------------------------------------------------------------*/
.sign-up-one {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  padding: 112px 0px 120px;
  z-index: 1;
}

.sign-up-one .container {
  max-width: 620px;
}

.sign-up-one__form {
  position: relative;
  display: block;
}

.sign-up-one__form .inner-title {
  position: relative;
  display: block;
  /* padding-bottom: 35px; */
}

.sign-up-one__form .inner-title h2 {
  font-size: 35px !important;
  line-height: 1.0em;
  font-weight: 700;
  text-transform: capitalize;
}

.sign-up-one__form form {
  position: relative;
  display: block;
  background-color: var(--servixa-white);
  box-shadow: 0px 0px 80px rgba(0, 0, 0, 0.06);
  padding: 40px 48px 50px;
}

.sign-up-one__form form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.sign-up-one__form form .input-box {
  position: relative;
  display: block;
}

.sign-up-one__form form input[type="text"],
.sign-up-one__form form input[type="email"] {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  background-color: var(--servixa-primary);
  width: 100%;
  height: 45px;
  color: var(--servixa-black);
  font-size: 16px;
  font-family: var(--servixa-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 15px;
  padding-right: 15px;
  outline: none;
  transition: all 500ms ease;
}

.sign-up-one__form form input[type="text"]:focus,
.sign-up-one__form form input[type="email"]:focus {
  border-color: var(--servixa-base);
  background-color: var(--servixa-white);
}

.sign-up-one__form form input[type="text"]::-webkit-input-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="text"]:-moz-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="text"]::-moz-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="text"]:-ms-input-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="email"]::-webkit-input-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="email"]:-moz-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="email"]::-moz-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form input[type="email"]:-ms-input-placeholder {
  color: var(--servixa-gray);
}

.sign-up-one__form form .thm-btn {
  width: 100%;
  justify-content: center;
  align-items: center;
  border: none;
}

.sign-up-one__form form .google-facebook {
  position: relative;
  display: flex;
  align-items: center;
  /* margin-top: 10px; */
}

.sign-up-one__form form .google-facebook a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  color: var(--servixa-black);
  font-size: 13px;
  line-height: 28px;
  font-family: var(--servixa-font);
  font-weight: 500;
  padding: 8px 8px 8px;
  border-radius: 5px;
  letter-spacing: -0.01em;
}

.sign-up-one__form form .google-facebook a:hover {
  border: 1px solid var(--servixa-base);
  background-color: var(--servixa-white);
}

.sign-up-one__form form .google-facebook a+a {
  margin-left: 14px;
}


.sign-up-one__form form .create-account {
  position: relative;
  display: block;
  /* padding-top: 22px; */
}

.sign-up-one__form form .create-account p {
  margin: 0;
}

.sign-up-one__form form .create-account p a {
  font-weight: 500;
}

.sign-up-one__form form .create-account p a:hover {
  color: var(--servixa-base);
}

/* =========================
    services 
    ======================= */

/* .services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 12px;
  text-align: center;
}

.service-type img {
  width: 60px;
  margin-bottom: 6px;
}

.service-type p {
  font-size: 13px;
  font-weight: 500;
} */
/* PAGE */
.cw-service-page {
  /* padding: 16px; */
  /* background: #f4f6f8; */
  min-height: 100vh;
}

/* BANNER */
.cw-service-banner {
  background: linear-gradient(135deg, #0f766e, #0ea5a4);
  /* background-image: url(''); */
  color: #fff;
  border-radius: 5px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.cw-service-banner img {
  width: 78px;
}

.cw-service-title {
  margin: 0;
  font-size: 22px;
}

.cw-service-subtitle {
  margin: 4px 0 0;
  font-size: 14px;
  opacity: 0.9;
}

.cw-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.cw-service-card {
  border-radius: 16px;
  padding: 18px 14px;
  text-align: center;
  text-decoration: none;
  color: #111;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cw-service-icon {
  width: 52px;
  margin-bottom: 10px;
}

.cw-service-name {
  margin: 0;
  font-size: 16px;
}

.cw-service-desc {
  font-size: 13px;
  color: #666;
}

/* HOVER */
.cw-service-card:hover {
  transform: translateY(-4px);
}

/* =========================
    Service card 
    ======================= */
.service-card-section {
  margin-top: 50px;
}

.service-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: var(--servixa-white);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.service-card__left {
  flex: 1;
}

.service-card__right img {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  object-fit: cover;
  margin-top: 40px;
}

.service-tag {
  display: inline-block;
  font-size: 12px;
  background: #f1f1f1;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}

.service-rating i {
  color: #f4b400;
}

.service-points {
  padding-left: 18px;
  margin: 0 0 8px;
  font-size: 14px;
  color: #555;
}

.service-points li {
  margin-bottom: 4px;
}

.service-links {
  display: flex;
  gap: 14px;
  font-size: 14px;
  margin-bottom: 10px;
}

.service-links a {
  color: #0d6efd;
  font-weight: 500;
  text-decoration: none;
}

.service-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.add-btn {
  background: #0a1a2f;
  color: var(--servixa-white);
  border: none;
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: 600;
}

/* =========================
    Service card Details
    ======================= */

.service-detail-card {
  max-width: 400px;
  margin: 20px auto;
  background: var(--servixa-white)fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: 0.3s ease;
}

.service-detail-card:hover {
  transform: translateY(-4px);
}

.service-detail-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
}

.service-name-rating {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #111;
}

.service-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #555;
}

.service-rating i {
  color: #f6b01e;
}

.service-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--servixa-base);
}

.time {
  font-size: 14px;
  color: #555;
  white-space: nowrap;
}

.add-btn {
  background: var(--servixa-base);
  color: var(--servixa-white);
  border: none;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.add-btn:hover {
  background: #055c85;
}


.service-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-info p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.service-info a {
  font-size: 13px;
  color: var(--servixa-base);
  text-decoration: none;
  font-weight: 500;
}

.service-actions {
  display: flex;
  gap: 10px;
}

.outline-btn {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--servixa-base);
  background: #f4f9fd;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.outline-btn:hover {
  background: var(--servixa-base);
  color: var(--servixa-white);
}

/* =========================
    package-summary-card
    ======================= */

.package-summary-card {
  max-width: 420px;
  margin: 20px auto;
  background: var(--servixa-white);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.vehicle-item,
.add-vehicle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f9fc;
  padding: 12px;
  border-radius: 14px;
}

.vehicle-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vehicle-left img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.vehicle-left h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.delete-icon {
  color: #e74c3c;
  cursor: pointer;
  font-size: 16px;
}

.package-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 6px;
  border-bottom: 1px dashed var(--servixa-bdr-color);
}

.package-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* ===== Slot Button ===== */
.slot-btn button {
  width: 100%;
  padding: 14px;
  background: var(--servixa-base);
  color: var(--servixa-white);
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(7, 103, 151, 0.35);
}

.slot-btn button:hover {
  background: #055c85;
}

/* =========================
    Select Slot
    ======================= */

.slot-page {
  padding-bottom: 90px;
}

/* Header */
.slot-header {
  display: flex;
  align-items: center !important;
  gap: 12px;
  padding-bottom: 14px;
  font-weight: 600;
  color: var(--servixa-base);
}

.slot-header h3 {
  font-size: 18px !important;
  margin: 0 !important;
  color: var(--servixa-base);
}

/* Location */
.service-location {
  background: var(--servixa-white);
  padding: 10px 14px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Cards */
.slot-card {
  background: var(--servixa-white);
  margin: 10px;
  padding: 10px;
  border-radius: 14px;
}

.slot-card h4 {
  margin: 0 0 12px;
  font-size: 20px;
}

/* Dates */
.date-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
}

.date-item {
  min-width: 100px;
  background: #f4f5f7;
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  font-size: 15px;
}

.date-item.active {
  background: #1f2933;
  color: var(--servixa-white);
}

.date-item h3 {
  margin: 4px 0;
}

/* Slots */
.slot-note {
  font-size: 15px;
  color: #777;
}

.slot-status {
  margin-top: 12px;
  font-weight: 600;
}

.today {
  color: green;
  font-size: 15px;
}

.tomorrow {
  margin-top: 18px;
  font-size: 18px;
}

/* No Slot */
.no-slot {
  text-align: center;
  font-size: 20px;
  color: #444;
  margin: 12px 0;
}

/* Time Slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.time-slot {
  border: 1px solid var(--servixa-bdr-color);
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  position: relative;
}

.discount span {
  position: absolute;
  top: -8px;
  right: 6px;
  background: #dff6dd;
  color: #1e7f34;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 6px;
}

.highlight {
  border: 2px solid #0f766e;
}

/* Footer Info */
.slot-footer {
  background: #e5e7eb;
  padding: 12px;
  text-align: center;
  font-size: 16px;
}

/* Checkout Bar */
.checkout-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background: var(--servixa-white);
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.checkout-btn {
  background: #111;
  color: var(--servixa-white);
  border: none;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* =========================
    check out page
    ======================= */
/* Coupon Row */
.checkout-coupon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0px;
  background: var(--servixa-white);
  border-radius: 12px;
  /* margin:16px; */
}

.checkout-coupon-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.checkout-coupon-right {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-weight: 600;
}

/* Title */
.checkout-payment-title {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0px;
}

/* Card */
.checkout-payment-card {
  background: var(--servixa-white);
  border-radius: 16px;
  padding: 16px;
  margin: 0 0px 90px;
}

.checkout-payment-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
}

.checkout-payment-row span {
  color: #374151;
}

.checkout-payment-row small {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.checkout-subtotal span,
.checkout-subtotal strong {
  font-weight: 700;
}

.checkout-discount span,
.checkout-discount strong {
  color: #16a34a;
}

.checkout-final {
  font-size: 18px;
  font-weight: 700;
}

/* Pay Now Bar */
.checkout-paybar {
  position: fixed;
  bottom: 6%;
  left: 0;
  width: 100%;
  background: var(--servixa-white);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
}

.checkout-pay-amount strong {
  font-size: 20px;
}

.checkout-pay-amount small {
  display: block;
  color: #6b7280;
}

.checkout-pay-btn {
  background: #111827;
  color: var(--servixa-white);
  padding: 14px 26px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
}

/* =========================
    USER PROFILE 
    ======================= */

/* .profile-page {
  padding: 16px;
  background: #f4f6f8;
  min-height: 100vh;
}

.profile-header {

  color: var(--servixa-base);
  padding: 30px 20px;
  text-align: center;
  border-radius: 16px;
}

.profile-avatar {
  width: 90px;
  height: 90px;
  margin: auto;
  position: relative;
  cursor: pointer;
}


.edit-photo {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #111;
  color: var(--servixa-white);
  font-size: 12px;
  padding: 4px;
  border-radius: 50%;
}

.profile-card {
  background: var(--servixa-white);
  padding: 16px;
  border-radius: 16px;
  margin-top: 16px;
}

.profile-list li {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px dashed var(--servixa-bdr-color);
} */

.edit-profile-btn {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  background: #111;
  color: var(--servixa-white);
  border-radius: 12px;
  border: none;
}

.booking-item {
  background: #f9fafb;
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.status {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}

.done {
  background: #dcfce7;
  color: #166534;
}

.upcoming {
  background: #e0f2fe;
  color: #075985;
}


/* Modal */
.profile-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-box {
  background: var(--servixa-white);
  padding: 20px;
  width: 90%;
  max-width: 350px;
  border-radius: 14px;
}

.modal-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid var(--servixa-bdr-color);
}

.modal-actions {
  display: flex;
  gap: 10px;
}

.modal-actions button {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.modal-actions button:first-child {
  background: #ccc;
}

.modal-actions button:last-child {
  background: #111;
  color: var(--servixa-white);
}

/* =========================
    RESPONSIVE 
    ======================= */

@media (max-width: 991px) {
  .footer-widget__column {
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .site-footer__bottom-inner {
    text-align: center;
  }

  .site-footer__bottom-menu li {
    display: inline-block;
    margin-left: 10px;
  }

  .service-detail-card {
    max-width: 520px;
  }

  .service-bottom {
    gap: 20px;
  }
}

/* =========================
        Mobile
 =========================== */
@media (max-width: 768px) {
  .main-header {
    max-width: 700px;
  }

  .navLogodiv {
    height: 24px;
  }

  .navbar-nav .nav-item {
    padding: 8px 0;
  }

  /* location */
  .location-bar {
    padding: 3px 3px;
    border-radius: 10px;
    width: 120px;
    gap: 8px;
  }

  .location-bar i {
    font-size: 8px;
  }

  .location-bar .text-content h4 {
    margin: 0;
    font-size: 8px;
  }

  .location-bar .text-content p {
    font-size: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
  }

  .drop-icon {
    font-size: 8px;

  }

  /* vehicle */
  .vehicle-bar {
    width: 90px;
    gap: 8px;
  }

  .vehicle-bar .text-content h4 {
    margin: 0;
    font-size: 8px;
  }

  .vehicle-bar .text-content p {
    font-size: 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
  }

  /* Bottom Nav */



  /* hero section */
  .hero-container {
    padding: 0px 20px !important;
  }

  .wash-banner {
    overflow: hidden;
    margin-top: 60px;
  }

  .banner-title {
    font-size: 30px;
    margin-top: 30px;
  }

  .banner-text {
    max-width: 100%;
  }

  /* Button */
  .wash-banner .btn-primary {
    padding: 5px 5px !important;
    margin-bottom: 20px !important;
    margin-top: 0px !important;
  }

  .benefits-wrap {
    grid-template-columns: 1fr;
  }

  .banner-image {
    margin-top: 30px;
    max-height: 260px;
  }

  .image-row img {
    height: 180px;
  }

  .image-bottom img {
    height: 180px;
  }

  .section-title__title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .section-title__tagline {
    font-size: 15px;
  }

  /* =========================
   VIDEO SECTION BASE
========================= */
  .team-one {
    padding: 0px 0 0px;
  }

  .team-one__social-box {
    display: none !important;
  }

  .team-one__inner .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 16px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .team-one__inner .row::-webkit-scrollbar {
    display: none;
  }

  .team-one__inner .row>[class*="col-"] {
    flex: 0 0 85% !important;
    max-width: 80% !important;
    scroll-snap-align: start;
  }

  .team-one__single {
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }

  .team-one__img iframe {
    width: 100%;
    height: 160px;
    border-radius: 20px 20px 0 0;
  }

  .team-one__title {
    font-size: 20px;
  }

  .team-one__sub-title {
    font-size: 15px;
  }

  .team-one__content {
    padding: 10px 10px 10px;
  }

  /* why choice us */
  .why-choose-two__left {
    margin-right: 0px;
  }

  .why-choose-container {
    gap: 20px;
    text-align: center !important;
  }

  /* mission and vission */
  .mission-vision__boxes .col-lg-6 {
    margin-bottom: 20px;
  }

  .mission-vision {
    padding: 50px 0 0px;
  }

  /*  service-detail-card */
  .service-detail-card {
    max-width: 480px;
    padding: 20px;
  }

  .service-detail-img img {
    height: 180px;
  }

  .service-title {
    font-size: 20px;
  }

  /*package summary card*/
  .package-summary-card {
    max-width: 520px;
    padding: 22px;
  }

  .vehicle-left h4 {
    font-size: 16px;
  }

  .package-title {
    font-size: 17px;
  }

  .footer-section {
    margin-top: 30px;
  }

  .footer-widget__column {
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .footer-widget__logo img {
    max-width: 100px;
    margin-bottom: 10px;
  }

  .footer-widget__quick-link-list li a {
    font-size: 15px;
    color: #ccc !important;
    margin-right: 8px;
    font-weight: 600 !important;

  }
}

@media (max-width: 576px) {

  /* hero section */
  .hero-container {
    padding: 0px 15px !important;
  }

  .navLogodiv {
    height: 40px;
  }

  .mobile-location i,
  .dropdown a i {
    font-size: 15px;
    color: var(--servixa-base);
  }

  .location-bar {
    width: 115px;
    gap: 8px;
  }

  .service-card-section {
    margin-top: 40px;
  }

  .site-footer__social a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .vehicle-image {
    height: 110px;
  }

  .vehicle-text h2 {
    font-size: 15px;
  }

  .vehicle-text h5 {
    color: var(--servixa-yellow);
    font-size: 15px !important;
  }
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 999;
}

.bottom-nav a {
  text-align: center;
  font-size: 11px;
  color: #888;
  line-height: 28px;
}

.bottom-nav a i {
  font-size: 18px;
  display: block;
}

.bottom-nav a.active {
  color: #000;
}

.st-form-control {
  position: relative;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(var(--servixa-black-rgb), .10);
  background-color: var(--servixa-primary);
  width: 100%;
  height: 45px;
  color: var(--servixa-black);
  font-size: 16px;
  font-family: var(--servixa-font);
  font-weight: 400;
  font-style: normal;
  padding-left: 15px;
  padding-right: 15px;
  outline: none;
  transition: all 500ms ease;
}

    /* WRAPPER */
    .px-service-wrap {
        padding: 20px 15px;
    }

    /* HEADER */
    .px-service-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

    .px-service-title {
        font-size: 18px;
        font-weight: 600;
        margin: 0;
    }

    .px-service-link {
        font-size: 14px;
        color: #4b6fff;
        text-decoration: none;
    }

    /* GRID */
    .px-service-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    @media (min-width: 768px) {
        .px-service-row {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    /* CARD */
    .px-service-card {
        background: #f2f8ff;
        border-radius: 14px;
        padding: 18px 10px;
        text-align: center;
        text-decoration: none;
        display: block;
        transition: all 0.25s ease;
    }

    .px-service-card:hover {
        background: #e9f2ff;
        transform: translateY(-2px);
    }

    /* ICON */
    .px-service-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .px-service-icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .px-service-icon i {
        font-size: 24px;
        color: #3b5bfd;
    }

    /* TEXT */
    .px-service-name {
        font-size: 14px;
        font-weight: 500;
        color: #333;
        margin: 0;
    }
/* CARD */
.service-card-full {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all .3s ease;
}

.service-card-full:hover {
    transform: translateY(-4px);
}

/* IMAGE */
.service-img {
    position: relative;
}

.service-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* BADGES */
.service-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #000;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
}

.rating-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.rating-badge i {
    color: #f5a623;
}

/* BODY */
.service-body {
    padding: 14px 16px 18px;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.service-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

/* META */
.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.price {
    font-weight: 600;
    font-size: 15px;
}

.duration {
    font-size: 12px;
    color: #777;
}

/* BUTTON */
.book-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: #000;
    color: #fff;
    border: none;
    font-weight: 600;
    transition: .25s;
}

.book-btn:hover {
    background: #333;
}

.book-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
}
