/* ===============================
   POPPINS FONT
================================ */

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font-family/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font-family/Poppins/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('/assets/font-family/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===============================
   INTER FONT
================================ */

@font-face {
  font-family: 'Inter';
  src: url('/assets/font-family/Inter/static/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/font-family/Inter/static/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/font-family/Inter/static/Inter-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ===============================
   ROOT VARIABLES (COMMON)
================================ */

:root {
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  --black-color: #000;
  --black-heading: #202020;
  --green-color: #2BAE70;
  --white-color: #ffffff;
  --placeholder-color: #858585;
  --label-color: #1C1C1C;
}

/* ===============================
   COMMON TYPOGRAPHY
================================ */



/* ===============================
   GLOBAL RESET
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-primary);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}



body {
  font-family: var(--font-primary);
  color: var(--black-color);
  font-weight: 400;
  background: #FCFCFC;
    margin: 0;
  padding: 0;
}

body.modal-open {
  overflow: hidden;
}

.page-title {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 700;
  color: var(--black-heading);
}


.step-heading{
  font-size: 39px;
  font-weight: 700;
  color: var(--black-color);
  
}


label {
  font-family: var(--font-primary);
  font-size: 23px;
  font-weight: 700;
  color: var(--black-color);
  display: block;
  margin-bottom: 18px;
}

.subtitle {
  font-family: var(--font-primary);
  font-size: 23px;
  font-weight: 400;
  color: var(--black-color);
}



button {
  width: 100%;
  border: none;
  cursor: pointer;
}

.green-btn {
  font-size: 23px;
  font-weight: 400;
  color: var(--white-color);
  font-family: var(--font-primary);
  background: var(--green-color);
  height: 60px;
  border-radius: 10px;
  border: 1px solid var(--green-color);
}

.green-btn:hover {
  background-color: transparent;
  color: var(--green-color);
}

.black-btn {
  width: 88px;
  height: 31px;
  background-color: var(--black-color);
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-secondary);
  border-radius: 5px;
  border: 1px solid var(--black-color);
}

.black-btn:hover {
  background-color: transparent;
  color: var(--black-color);
}


/* MAIN LAYOUT */
.auth-wrapper {
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.auth-wrapper.profile-page {
  /* overflow-y: auto; */
  /* height: 100%; */
}

.auth-wrapper.profile-page .auth-content {
  justify-content: flex-start;
}

/* LEFT IMAGE */
.auth-image {
  width: 50%;
  position: relative;
  height: 100%;
}

.auth-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo {
  position: absolute;
  top: 28px;
  left: 40px;
  padding: 0;
  width: 160px;
  height: 74px;
}

/* RIGHT CONTENT */
.auth-content {
  width: 50%;
  padding: 60px 60px;
  background: #fff;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow-y: auto;
}


.auth-image,
.auth-content {
  width: 50%;
  height: 100vh;
  /* force full viewport */
}

.verify-page .auth-content {
  padding: 110px 60px 50px;
}


.back-btn {
  position: absolute;
  top: 40px;
  left: 60px;
  border: none;
  font-size: 18px;
  cursor: pointer;
  background: #D9D9D9;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  padding: 8px;
}

.back-btn img {
  width: 25px;
  height: 25px;
  object-fit: cover;
}

h2 {
  margin-bottom: 20px;
}

label {
  margin-top: 20px;
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border-radius: 15px;
  background: #e6e6e62b;
  border: 1px solid #E6E6E6;
  font-size: 23px;
  color: var(--black-color);
  font-weight: 400;
}

input::placeholder {
  color: var(--black-color);
}

input:focus {
  outline: 1px solid var(--black-color);
}

.password-field {
  position: relative;
}

.password-field .eye {
  position: absolute;
  right: 12px;
  top: 45%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.password-field .eye img {
  width: 100%;
  height: 100%;
}

.forgot {
  display: block;
  margin-bottom: 20px;
  color: var(--green-color);
  font-size: 23px;
  text-decoration: none;
}


.divider {
  text-align: center;
  margin: 20px 0;
  color: #aaa;
}

.social-btns {
  /* display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-around; */
  /* flex-direction: column; */
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 16px;
  flex-wrap: wrap;
}

.social-btns button {
  /* width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #fff; */
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-family: var(--font-primary);
  cursor: pointer;
  border: 1px solid var(--black-color);
  padding: 10px 15px;
  border-radius: 20px;
  height: 66px;
  width: 100%;
  max-width: 240px;
  background: transparent;
}

.social-btns button img {
  height: 30px;
  width: 30px;
}

.social-btns button.btns.google {
  border-color: var(--green-color);
}

.social-btns button.btns.fb {
  background: #0071BC;
  color: #fff;
  border-color: #0071BC;
}

.bottom-text {
  margin-top: 20px;
  text-align: center;
  font-size: 23px;
  font-weight: 400;
}

.bottom-text a {
  color: #2fb26a;
  text-decoration: none;
}

/* OTP */

p.subtitle.verify {
  margin: 40px 0;
}


.otp-box {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.otp-box input {
  text-align: center;
  font-size: 20px;
  width: 69px;
  height: 64px;
  font-size: 34px;
  color: var(--black-color);
  font-family: var(--font-primary);
  background: transparent;
}

.timer {
  text-align: left;
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.resend {
  text-align: left;
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.resend a {
  color: var(--black-color);
  text-decoration: none;
}


/* profile css */

.step {
  display: none;
  width: 100%;
}

.step.active {
  display: block;
}

.user-form {
  display: none;
}

.user-form.active {
  display: block;
}




.profile-page .profile-avatar {
  margin: 20px auto 0;
  width: 150px;
  height: 150px;
  object-fit: contain;
  cursor: pointer;
}

.profile-page .profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile-page .profile {
  text-align: center;
}

.profile-page .auth-content {
  padding: 40px 60px;
}


.profile-page .radio-group {
  display: flex;
  gap: 40px;
  margin: 20px 0 0;
  flex-wrap: wrap;
  width: 100%;
}


section.step .radio-group label {
  display: flex;
  align-items: center;
  margin: 0;
  gap: 25px;
  cursor: pointer;
  font-size: 23px !important;
  font-weight: 400;
}


section.step input[type="radio"] {
  height: 30px;
  width: 30px;
  margin: 0;
  outline: none;
}


/* Remove focus outline */
section.step input[type="radio"]:focus {
  outline: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Remove checked styling (browser-specific) */
section.step input[type="radio"]:checked {
  outline: none !important;
  box-shadow: none !important;
}


form.login-form {
  width: 100%;
}


section.step form label {
  font-size: 26px;
  font-weight: 600;
  color: var(--label-color);
  display: block;
  margin-top: 20px;
  margin-bottom: 5px;
}


section.step form input::placeholder {
  font-size: 24px;
  font-weight: 500;
  color: #858585;
}

section.step form input {
  font-size: 24px;
  font-weight: 500;
  color: #858585;
}




section.step form .two-input {
  display: flex;
  align-items: center;
  gap: 15px;
}

section.step form .two-input .input-div {
  width: 50%;
}

section.step form button.form-btn {
  text-align: center;
  margin-top: 50px;
}


.form-action-btn {
  width: 90%;
  margin: 60px auto 0;
}


a:hover {
  color: var(--black-color) !important;
}


.date-field {
  position: relative;
  display: flex;
  align-items: center;
}

/* fake dd-mm-yyyy */
.fake-placeholder {
  position: absolute;
  left: 16px;
  font-size: 14px;
  color: #111;
  pointer-events: none;
}

/* calendar icon */
.calendar-icon {
  position: absolute;
  right: 16px;
  width: 18px;
  height: 18px;
  pointer-events: none;
}


.menu-title {
font-size: 16px;
    color: #202020;
    margin: 16px 15px 8px;
    display: block;
    font-weight: 400;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Menu item */
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: #111827;
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

button.menu-item.has-submenu.active{
  border:none ;
  border-bottom: 1px solid var(--black-color);
  border-radius: 0px;
}

.menu-item .left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-item .icon {
    width: 28px;
    height: 28px;
}

.menu-item .left span {
    font-size: 18px;
    color: #575757;
    font-weight: 400;
}

.menu-item:hover {
  border-color:  var(--black-color);
}

.menu-item:hover .left span {
  color:  var(--black-color);
}

/* Active */
.menu-item.active {
  border-color:  var(--black-color);
}

.menu-item.active .left span{
  color: var(--black-color);
}

/* Arrow */
.menu-item .arrow {
  width: 14px;
  transition: transform 0.3s ease;
}

/* Submenu */
.submenu {
  display: none;
  flex-direction: column;
  padding-left: 46px;
  margin-top: 4px;
}

.submenu a {
  font-size: 13px;
  color: #4b5563;
  text-decoration: none;
  padding: 6px 0;
  display: inline-flex;
    align-items: center;
    gap: 10px;
}

.submenu a {
    border: 1px solid transparent;
}

.submenu a.active {
    border: 1px solid var(--black-color);
}



.submenu a img.submenu-icon {
    width: 28px;
    height: 28px;
}

/* Open state */
.menu-group.open .submenu {
  display: flex;
}

.menu-group.open .arrow {
  transform: rotate(180deg);
}



.language-dropdown {
  position: relative;
  width: fit-content;
  cursor: pointer;
  
}

.selected {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid #F0F0F0;
  border-radius: 20px;
  background: #fff;
}

.selected img.arrow{
  width: 15px;
  height: 8px;
  filter: invert(78%) sepia(0%) saturate(0%) brightness(77%);
}


.profile-dropdown img.arrow{
  width: 15px;
  height: 8px;
  filter: invert(78%) sepia(0%) saturate(0%) brightness(77%);
}


.selected img.country-img {
max-width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
}

.options {
  display: none;
  position: absolute;
  top: 110%;
  width: fit-content;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  list-style: none;
  padding: 6px 0;
}

.options li {
  padding: 6px 10px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.options li:hover {
  background: #f3f4f6;
}

#top-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}


/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  border: none;
  background: none;
  cursor: pointer;
  width: fit-content;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
}




/* FOOTER pagination */
.table-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #202020;
}

.table-footer p span.bold-text {
    font-weight: 700;
}

.pagination {
  display: flex;
  gap: 6px;
  align-items: center;

}

.pagination button {
  border: 1px solid #e5e7eb;
  background: var(--white-color);
  height: 50px;
  width: 50px;
  border-radius: 6px;
  cursor: pointer;
      border-radius: 14px;
}

.pagination .pagination-number {
    display: flex;
    gap: 0px;
    align-items: center;
    border: 1px solid #e5e7eb;
    padding: 0px;
    height: 50px;
    border-radius: 14px;
    overflow: hidden;
    min-width: 150px;
}

.pagination .pagination-number button{
  border: none;
  height: 48px;
}

.pagination .active {
  background: #3b82f6;
  color: var(--white-color);
  border-color: #3b82f6;
}



/* common logout css */

/* BACKDROP */
.logout-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 9999;
}



/* MODAL */
.logout-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 90%;
    max-width: 420px;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    display: none;
    z-index: 99999;
}

.logout-modal h3 {
    margin-bottom: 8px;
    font-size: 43px;
    font-weight: 500;
    color: var(--black-color);
}

.logout-modal p {
    font-size: 23px;
    color: var(--black-color);
    margin-bottom: 20px;
    font-weight: 400;
}

/* CLOSE BUTTON */
.logout-modal .close-btn {
position: absolute;
    top: 25px;
    right: 25px;
    border: none;
    background: transparent;
    text-align: end;
    cursor: pointer;
    width: fit-content;
}

/* ACTION BUTTONS */
.logout-modal .actions {
  display: flex;
  gap: 12px;
}

.logout-modal .btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.logout-modal .btn.yes {
  background: #2fb36d;
  color: #fff;
}

.logout-modal .btn.no {
  background: #fff;
  border: 1px solid #2fb36d;
  color: #2fb36d;
}

/* MOBILE */
@media (max-width: 480px) {
  .logout-modal {
    padding: 20px;
  }
}

/* end  css */



@media (min-width: 1500px) {

  .verify-page .green-btn {
    width: 20%;
  }

  .header-inner {
    max-width: 100%;
  }

  .booking {
    max-width: 100%;
    margin: 50px 72px;
    box-shadow: none;
  }

  .footer-container {
    max-width: 100%;
    margin: 50px 72px;
  }

  .footer-bottom {
    max-width: 100%;
    margin: 0px 72px 30px;
  }

  /* .auth-content {
    margin-top: 15%;
  } */


}


/* @media (max-width: 1024px) {

  .menu-toggle{
    display: flex;
  }

} */

@media (max-width: 1100px) and (min-width: 992px) {
  section.step form .two-input {
    flex-wrap: wrap;
  }

  section.step form .two-input .input-div {
    width: 100%;
  }

}

/* RESPONSIVE */
@media (max-width: 992px) {
  .auth-wrapper {
    flex-direction: column;
    height: 100%;
    overflow: auto;
  }

  .auth-image,
  .auth-content {
    width: 100%;
  }

  .auth-image {
    height: 400px;
  }

  .auth-content,
  .profile-page .auth-content {
    padding: 40px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .logo {
    left: 10px;
    width: 80px;
    height: auto;
  }

  .verify-page .auth-content {
    padding: 100px 20px 50px;
  }

  .back-btn {
    /* top: -20px;
    left: 20px; */
    top: 30px;
    left: 30px;
  }

  .auth-image img {
    object-position: center;
  }





  .auth-wrapper.profile-page .auth-image img {
    object-position: right;
  }


  .auth-wrapper.profile-page .back-btn {
    top: 40px;
    left: 20px;
  }


}

@media (max-width: 768px) {

  .booking h2 {
    font-size: 25px !important;
  }


  .page-title {
    font-size: 30px !important;
  }


  .suggest-header h2 {
    font-size: 30px !important;
  }


  .charges h4 {
    font-size: 22px !important;
  }


  .charges p.grand-total {
    font-size: 20px !important;

  }


  .charges .items {
    font-size: 20px !important;
  }



  .total-section h4 {
    font-size: 20px !important;
  }

  .car-info h4 {
    font-size: 24px !important;
  }

  .order-info h4 {
    font-size: 22px !important;
  }

  .total-price {
    font-size: 22px !important;
  }


}

@media (max-width: 600px) {

  .auth-wrapper {
    height: 100%;
  }


  .card-item {
    height: 61px;
  }

  .confirm-btn {
    font-size: 26px;
    height: 60px;
  }


  .footer-container {
    grid-template-columns: 1fr;
  }


  .footer-links a {
    margin: 0 10px;
  }

  .profile-page .auth-content {
    padding: 40px 20px;
  }


  section.step form .two-input {
    flex-wrap: wrap;
    gap: 0;
  }

  section.step form .two-input .input-div {
    width: 100%;
  }

  .logout-modal {
    width: 90%;
    padding: 20px 15px;
  }

}