/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Nunito", sans-serif
}

/* Global Colors */
:root {
  /* Background Color - This color is applied to the background of the entire website as well as individual sections. */
  --background-color: #ffffff;

  /* Default Color - This is the default color used for the majority of the text content. */
  --default-color: #3d4348;

  /* Heading Color - This color is used for titles, headings and secondary elements. */
  --heading-color: #3e5055;

  /* Accent Color - This is the main accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out. */
  --accent-color: #388da8;

  /* Contrast Color - This is a color used for text when the background color is one of the heading, accent, or default colors. Its purpose is to ensure proper contrast and readability when placed over these more dominant colors. */
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  /* Nav Color - This is the default color of the main navmenu links. */
  --nav-color: #313336;

  /* Nav Hover Color - This color is applied to main navmenu links when they are hovered over. */
  --nav-hover-color: #77b6ca;

  /* Nav Dropdown Background Color - This color is used as the background for dropdown boxes that appear when hovering over primary navigation items. */
  --nav-dropdown-background-color: #ffffff;

  /* Nav Dropdown Color - This color is used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-color: #313336;

  /* Nav Dropdown Hover Color - Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --nav-dropdown-hover-color: #77b6ca;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: Poppins;
}

a {
  color: #0F56AA;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #0F56AA, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: Poppins;
  line-height: normal;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 65px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 24px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: #0F56AA;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 15px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 600;
}


.btn-getstart {
  color: #0F56AA;
  background: #fff;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 15px;
  border-radius: 50px;
  transition: 0.3s;
  border: 1px solid;
  font-weight: 600;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #0F56AA, transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
  .card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    width: 100%;
    max-width: 335px;
}
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 15px;
    font-family: Poppins;
    /*    font-weight: 600;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #0F56AA;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-dropdown-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, #0F56AA, transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #0F56AA;
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #0F56AA;
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: color-mix(in srgb, #0F56AA, transparent 97%);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 100px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: Poppins;
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: Poppins;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #0F56AA;
  border-color: #0F56AA;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #0F56AA;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, #0F56AA, transparent 70%);
  display: flex;
  background-color: var(--contrast-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: #0F56AA;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: #0F56AA;
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, #0F56AA, transparent 20%);
}

.footer .footer-newsletter .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.footer .footer-newsletter .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-top: 10px;
  font-weight: 600;
  border-radius: 4px;
}

.footer .footer-newsletter .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-top: 10px;
}

.footer .footer-newsletter .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #0F56AA;
  border-top-color: var(--background-color);
  animation: subscription-loading 1s linear infinite;
}

@keyframes subscription-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid #0F56AA;
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #0F56AA;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #0F56AA, transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 25px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  /*margin-bottom: 20px;
  padding-bottom: 20px;*/
  position: relative;
}

/*.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #0F56AA;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}*/

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 75px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 56px;
  font-family: poppins;
  text-align: left;
}

.hero h1 span {
  color: #FF6600;
}

.hero p {
  color: #000;
  margin: 5px 0 30px 0;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: #0F56AA;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px color-mix(in srgb, #0F56AA, transparent 80%);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, #0F56AA, transparent 15%);
  box-shadow: 0 8px 28px color-mix(in srgb, #0F56AA, transparent 55%);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: #0F56AA;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: #0F56AA;
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, #0F56AA, transparent 15%);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  /*  --background-color: color-mix(in srgb, #0F56AA, transparent 94%);*/
  padding: 40px 0;
}

.featured-services .service-item {
  position: relative;
  padding-top: 20px;
}

.featured-services .service-item .icon {
  background-color: color-mix(in srgb, #0F56AA, transparent 80%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  border-radius: 10px;
}

.featured-services .service-item .icon i {
  color: #0F56AA;
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.featured-services .service-item .title a {
  color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
  color: #0F56AA;
}

.featured-services .service-item .description {
  font-size: 14px;
}

.featured-services .service-item:hover .icon {
  background-color: color-mix(in srgb, #0F56AA, transparent 80%);
}

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}

.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: #0F56AA;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: #0F56AA;
  color: var(--contrast-color);
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, #0F56AA, transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 15px 10px 10px 20px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
  align-items: flex-end;
}

.features .nav-link i {
  background-color: var(--contrast-color);
  color: #0F56AA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: color-mix(in srgb, #0F56AA, transparent 96%);
}

.features .nav-link.active {
  background: color-mix(in srgb, #0F56AA, transparent 92%);
}

.features .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item+.features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: color-mix(in srgb, #0F56AA, transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
  border-radius: 10px;
}

.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features-details .features-item .more-btn {
  background-color: #0F56AA;
  color: var(--contrast-color);
  padding: 10px 30px;
  border-radius: 6px;
}

.features-details .features-item .more-btn:hover {
  background-color: color-mix(in srgb, #0F56AA, transparent 20%);
}

.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: #0F56AA;
}

.features-details .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--contrast-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
  font-size: 15px;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
  box-shadow: 0px 2px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-item:hover h3 {
  color: var(--heading-color);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}

.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
  margin-top: 30px;
}

.more-features .icon-box i {
  color: #0F56AA;
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, #0F56AA, transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: #0F56AA;
  font-size: 48px;
  font-weight: 700;
  font-family: Poppins;
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  background-color: var(--default-color);
  color: var(--contrast-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: Poppins;
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: #0F56AA;
  color: var(--contrast-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #0F56AA;
  color: var(--contrast-color);
  padding: 5px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
}

.pricing .featured .cta-btn {
  background: #0F56AA;
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: #0F56AA;
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: #0F56AA;
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #0F56AA;
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, #0F56AA, transparent 97%);
  border-color: color-mix(in srgb, #0F56AA, transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: #0F56AA;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #0F56AA;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  --background-color: color-mix(in srgb, #0F56AA, transparent 97%);
}

.testimonials .testimonial-item {
  background-color: var(--contrast-color);
  box-shadow: 0px 0 20px color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  font-size: 15px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0F56AA;
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  padding: 20px 0 30px 0;
  box-shadow: 0 0 4px color-mix(in srgb, var(--default-color), transparent 85%);
}

.contact .info-item i {
  color: #0F56AA;
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  box-shadow: 0 2px 3px color-mix(in srgb, var(--default-color), transparent 85%);
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
  padding: 30px;
  box-shadow: 0 0 4px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--background-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #0F56AA;
  border-top-color: var(--background-color);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #0F56AA;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: #0F56AA;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, #0F56AA, transparent 20%);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  padding: 20px;
  box-shadow: 0px 2px 20px color-mix(in srgb, var(--default-color), transparent 88%);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: #0F56AA;
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: #0F56AA;
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, #0F56AA, transparent 95%);
  color: #0F56AA;
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: #0F56AA;
}

.service-details .download-catalog a:hover {
  color: #0F56AA;
}

.service-details .help-box {
  background-color: #0F56AA;
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: #0F56AA;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.but {
  background-color: #0F56AA;
  color: var(--contrast-color);
  padding: 10px 30px;
  border-radius: 6px;
  border: none;
}

.buts {
  background-color: #ffffff;
  color: #0F56AA;
  padding: 10px 30px;
  border-radius: 6px;
  border: 1px solid #0F56AA;
}

.sel {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #3d434861;
  background-color:
    color-mix(in srgb, var(--background-color), transparent 50%);
  border-color:
    color-mix(in srgb, var(--default-color), transparent 80%);
}


.count {
  font-size: 40px;
  font-weight: bold;
}

.counter-wrapper:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*  background: rgba(0,0,0,.5);*/
}

.counter-inner {
  position: relative;
  z-index: 2;
}

.count-icon {
  font-size: 48px;
}

.text-white {
  --bs-text-opacity: 1;
  color: #3e5055 !important;
}

/* RESET RULES
         –––––––––––––––––––––––––––––––––––––––––––––––––– */
/*@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700&display=swap");*/

:root {
  --white: white;
  --gray: #999;
  --lightgray: whitesmoke;
  --darkgreen: #2a9d8f;
  --popular: #ffdd40;
  --starter: #f73859;
  --essential: #00aeef;
  --professional: #ff7f45;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: #fff;
  border: none;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

/*body {
         font: 18px/1.5 "Noto Sans", sans-serif;
         background: var(--lightgray);
         margin-bottom: 100px;
         }*/
h1 {
  font-size: 2.5rem;
}

.con {
  max-width: 1140px;
  text-align: center;
  padding: 0 10px;
  margin: 0 auto;
}

.intro-text {
  padding: 50px 0;
}

.intro-text a {
  text-decoration: underline;
}

/* SWITCH STYLES
         –––––––––––––––––––––––––––––––––––––––––––––––––– */
.switch-wrapper {
  position: relative;
  display: inline-flex;
  padding: 4px;
  border: 1px solid lightgrey;
  margin-bottom: 10px;
  border-radius: 30px;
  background: var(--white);
}

.switch-wrapper [type="radio"] {
  position: absolute;
  left: -9999px;
}

.switch-wrapper [type="radio"]:checked#monthly~label[for="monthly"],
.switch-wrapper [type="radio"]:checked#yearly~label[for="yearly"] {
  color: var(--white);
}

.switch-wrapper [type="radio"]:checked#monthly~label[for="monthly"]:hover,
.switch-wrapper [type="radio"]:checked#yearly~label[for="yearly"]:hover {
  background: transparent;
}

.switch-wrapper [type="radio"]:checked#monthly+label[for="yearly"]~.highlighter {
  transform: none;
}

.switch-wrapper [type="radio"]:checked#yearly+label[for="monthly"]~.highlighter {
  transform: translateX(100%);
}

.switch-wrapper label {
  font-size: 16px;
  z-index: 1;
  min-width: 100px;
  line-height: 32px;
  cursor: pointer;
  border-radius: 30px;
  transition: color 0.25s ease-in-out;
}

.switch-wrapper label:hover {
  background: var(--lightgray);
}

.switch-wrapper .highlighter {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 30px;
  background: #0F56AA;
  transition: transform 0.25s ease-in-out;
}

/* TABLE STYLES
         –––––––––––––––––––––––––––––––––––––––––––––––––– */

table {
  width: 100%;
  font-size: 14px;
}

/*table tr {
         display: flex;
         }*/
table th,
table td {
  /*width: 20%;
  min-width: 150px;*/
  font-size: 14px;
  padding: 7px 20px 0px 7px;
}

table th {
  font-size: 18px;
}

/*table th:nth-child(1) {
         display: flex;
         flex-direction: column;
         font-size: 1.5rem;
         line-height: 1.3;
         padding: 1rem 10px;
         }
         table th:nth-child(1) .svg-wrapper {
         margin-top: 10px;
         }
         table th:nth-child(1) svg {
         width: 22px;
         height: 22px;
         }*/
table th .heading {
  padding: 1rem;
  color: var(--white);
}

table th:nth-child(1) .heading {
  background: #01bd6f;
  border-radius: 10px 10px 0px 0px;
  /*border-left: 1px solid var(--lightgray);
    border-right: 1px solid var(--lightgray);
    box-shadow: 1px 0px 5px 5px #00000059;*/
}

table th:nth-child(2) .heading {
  background: #ff6038;
  border-radius: 10px 10px 0px 0px;
  /*border-left: 1px solid var(--lightgray);
    border-right: 1px solid var(--lightgray);
box-shadow: 1px 0px 5px 5px #00000059;*/
}

table th:nth-child(3) .heading {
  background: #ffb828;
  border-radius: 10px 10px 0px 0px;
  /*border-left: 1px solid var(--lightgray);
    border-right: 1px solid var(--lightgray);
box-shadow: 1px 0px 5px 5px #00000059;*/
}

table th:nth-child(4) .heading {
  background: #0F56AA;
  border-radius: 10px 10px 0px 0px;
  /*border-left: 1px solid var(--lightgray);
    border-right: 1px solid var(--lightgray);
box-shadow: 1px 0px 5px 5px #00000059;*/
}

table th:nth-child(5) .heading {
  background: #d0c435;
  border-radius: 10px 10px 0px 0px;
  /*border-left: 1px solid var(--lightgray);
    border-right: 1px solid var(--lightgray);*/
  /*    box-shadow: 1px 0px 5px 5px #00000059;*/
}

table th .info {
  position: relative;
  /*    padding: 1.5rem 0;*/
  border-left: 1px solid var(--lightgray);
  border-right: 1px solid var(--lightgray);
  background-color: #394258;
  color: #fff;
  box-shadow: 7px 8px 10px 7px #00000059;
  border-radius: 10px 10px 10px 10px;

}

table th .popular {
  position: absolute;
  top: 10px;
  right: 0;
  font-size: 14px;
  background: var(--popular);
  padding: 4px 8px;
  border-radius: 15px 0px 15px 0px;
  color: #000;
}

table th .amount {
  font-size: 2rem;
}

table th .amount span {
  display: block;
  transform: translateY(-8px);
}

table th:nth-child(1) .amount {
  color: #fff;
}

table th:nth-child(2) .amount {
  color: #fff;
}

table th:nth-child(3) .amount {
  color: #fff;
}

table th:nth-child(4) .amount {
  color: #fff;
}

table th:nth-child(5) .amount {
  color: #fff;
}

table th .billing-msg,
table th .amount span {
  font-weight: normal;
  font-size: 0.8rem;
}

table th button {
  border-radius: 20px;
  padding: 8px 20px;
  margin-top: 10px;
  transition: all 0.2s;
}

table th:nth-child(1) button {
  color: #01bd6f;
  border: 1px solid #01bd6f;
}

table th:nth-child(1) button:hover {
  background: #01bd6f;
}

table th:nth-child(2) button {
  color: #ff6038;
  border: 1px solid #ff6038;
}

table th:nth-child(2) button:hover {
  background: #ff6038;
}

table th:nth-child(3) button {
  color: #ffb828;
  border: 1px solid #ffb828;
}

table th:nth-child(3) button:hover {
  background: #ffb828;
}

table th:nth-child(4) button {
  color: #0F56AA;
  border: 1px solid #0F56AA;
}

table th:nth-child(4) button:hover {
  background: #0F56AA;
}

table th:nth-child(5) button {
  color: #d0c435;
  border: 1px solid #d0c435;
}

table th:nth-child(5) button:hover {
  background: #d0c435;
}

table th button:hover {
  color: var(--white);
}

table td {
  padding: 10px;
}

table td:not(:first-child) {
  border-left: 1px solid var(--lightgray);
  background-color: #394258;
  color: #fff;
  border-right: 16px solid var(--lightgray);
  border-left: 16px solid var(--lightgray);
}

table td:first-child {
  font-size: 14px;
  text-align: center;
  background-color: #394258;
  color: #fff;
  border-right: 16px solid var(--lightgray);
  border-left: 16px solid var(--lightgray);
}

table svg {
  width: 18px;
  height: 18px;
}

table svg.not-included {
  fill: var(--gray);
}

table svg.starter {
  fill: var(--starter);
}

table svg.essential {
  fill: var(--essential);
}

table svg.professional {
  fill: var(--professional);
}

table .hide {
  display: none;
}

.bor {
  border-bottom: 1px solid #ffffff3d;
  font-size: 14px;
  padding: 14px;

}

.bord {
  /*         border-bottom: 1px solid #4444442b; */
  box-shadow: 0px 2px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

/* MQ
         –––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 780px) {
  table td {
    padding: 20px;

  }
}

/* FOOTER STYLES
         –––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  position: fixed;
  right: 0;
  bottom: 50px;
  display: flex;
  align-items: center;
  padding: 5px;
  z-index: 1;
  font-size: 16px;
  background: var(--lightgray);
}

.page-footer a {
  display: flex;
  margin-left: 4px;
}


* {
  box-sizing: border-box
}

.tablink {
  background-color: #fff;
  color: #000;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  font-size: 14px;
  width: 16%;
  border-radius: 10px 10px 0px 0px;
}

.tablink:hover {
  background-color: #0F56AA;
}

.tabcontent {
  color: white;
  display: none;
  padding: 20px 20px;
  height: 100%;
  border-radius: 0px 0px 10px 10px;
}

#Signatures {
  background-color: #d1e6ff;
}

#Payment {
  background-color: #d1e6ff;
}

#Generated {
  background-color: #d1e6ff;
}

#Data {
  background-color: #d1e6ff;
}

#Approvals {
  background-color: #d1e6ff;
}


header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/*.logo img {
    width: 100px; 
}*/

/* Hide mobile logo on desktop view */
.mobile-logo {
  display: none;
}

/* Media query for mobile view */
@media (max-width: 768px) {
  .desktop-logo {
    display: none;
    /* Hide desktop logo on mobile view */
  }

  .mobile-logo {
    display: block;
    /* Show mobile logo on mobile view */
    /*    width: 70px;*/
    /* Adjust size if needed */
  }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 14px;
  color: #000;
}


.image-box {
  /*    background-color: aliceblue;*/
  width: fit-content;
  overflow: hidden;
}

.img1 {
  z-index: -1;
  animation-duration: 1s;
  animation-name: slideUp;

  margin-left: -110px;
}

.img2 {
  margin-left: -264px;
  z-index: 0;
  animation-duration: 1s;
  animation-name: slideUp;
  width: 80%;
  position: absolute;
  margin-top: 20px;
}

.img3 {
  margin-left: -160px;
  z-index: -1;
  animation-duration: 1s;
  animation-name: slideUp;
  position: absolute;
  margin-top: -25px;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.tabs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  color: #ffffff;
  background-color: #0F56AA;
  margin: 10px;
  border-radius: 10px;
}

.tab.active {
  border-bottom: 2px solid #007bff;
  color: #007bff;
  border-bottom: 2px solid #ffffff;
  color: #000000;
  background-color: #ff5400d6;
  border-radius: 10px;
}

.content {
  margin-top: 20px;
  overflow: hidden;
}

.tab-content {
  display: none;
  padding: 20px;
  /*    border: 1px solid #ddd;*/
  border-top: none;
  border-radius: 5px;
}

.tab-content.active {
  display: block;
}

button {
  padding: 10px 20px;
  /*         background-color: #007bff;*/
  color: #000;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.timesheet-tab-content {
  display: flex;
  justify-content: space-between;
}

.card {
  
  margin: 15px;
  
}

.card h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  margin-bottom: 15px;
  padding: 10px;
  background-color: #fff;
  margin-top: -4px;
}

.bon {
  color: #ff5400;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  transition: transform 0.5s ease-in-out;
}

.image-container:hover img {
  transform: translateY(-15%);
  /* Adjust the percentage to control the scroll distance */
}


.card1 {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
  /* border: 1px solid #ddd; */
  border-radius: 10px 10px 0px 0px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
  /*    margin: 5px;*/
  background-color: #ddebff;
}

.card1 img {
  width: 100%;
  height: auto;
  /*      position: absolute;*/
  top: 0;
  transition: transform 8s linear;
  padding: 15px;
  border-radius: 10px;
}

.card1:hover img {
  transform: translateY(-50%);
}


/* Responsive Styles */
@media screen and (max-width: 768px) {
  .tabs {
    flex-direction: column;
    align-items: center;
  }

  .tabs li {
    /*    width: 100%;*/
    margin: 5px 0;
  }

  .timesheet-tab-content {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 14px;
  }

  .hero {
    width: 100%;
    min-height: 50vh;
    position: relative;
    padding: 120px 0 40px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .banner {
    width: 180%;
  }


}


@media (min-width: 1200px) and (max-width: 1439px) {
  .banner {
    width: 100%;
  }

}

@media screen and (max-width: 480px) {
  .section-title h2 {
    font-size: 20px;
  }

  .section-title p {
    font-size: 12px;
  }

  .tabs li {
    padding: 10px;
    font-size: 14px;
  }

  .card button {
    padding: 8px 12px;
    font-size: 14px;
  }


  .hero {
    width: 100%;
    min-height: 70vh;
    position: relative;
    padding: 75px 0 40px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .banner {
    width: 180%;
  }
}

.butt {
  background-color: #ffffff;
  color: #0F56AA;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 0px 40px 10px 40px;
  border: 1px solid #0F56AA;
}


.ico {
  width: 100px;
  border-radius: 100px;
  padding: 10px;
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}


.popup {
  /*display: none;
  position: fixed;
  top: 20%;
  left: 20%;
  width: 60%;
  height: 50%;
  z-index: 3;*/
  position: fixed;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border: 1px solid #ccc;
  padding: 20px;
  z-index: 1000;
  height: auto;
  border-radius: 10px;
  width: 50%;
}

/*.popup-content {
  grid-template-columns: 2fr 1fr;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}*/

.form-container,
.info-container {
  padding: 20px;
}

.closePopup {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.popup-content {

  /*  display: grid;*/
  grid-template-columns: 2fr 1fr;

  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
}


.bt {
  background-color: #ffffff;
  color: #0F56AA;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  /*    margin: 0px 40px 10px 40px;*/
  border: 1px solid #0F56AA;
}

/*@media (min-width: 1200px) and (max-width: 1439px) {
  .table-wrapper {
    background: var(--white);
    overflow-x: hidden;
  }
}*/

/*@media (min-width: 1440px)  {
  .table-wrapper {
    background: var(--white);
    overflow-x: hidden;
  }
}*/


@media (max-width: 576px) {
  button {
    font-size: 12px;
    padding: 8px 12px;
    width: 50%;
  }

  .table-wrapper {
    overflow-x: auto;
  }
}


.table-wrapper table {
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns */
}

th {
  padding: 18px;
}


/* Medium Devices (768px - 992px) */
@media (min-width: 768px) and (max-width: 992px) {
  .table-wrapper table {
    grid-template-columns: repeat(3, 1fr);
    overflow: auto;
    /* 3 columns */
  }

  th {
    padding: 20px;
  }
}


@media (min-width: 992px) {
  .table-wrapper table {
    grid-template-columns: repeat(4, 1fr);
    /* Full grid for larger screens */
  }
}


element {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

element::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, and Edge */
}

th:nth-child(2) {
  transform: scale(1.02);
}


th:hover {
  transform: scale(1.01);
}


th:hover:nth-child(2) {
  transform: scale(1.02);
}


/* Container for header */
.header1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 0px 35px 0px 35px;
}

/* Left side: Sort by Dropdown */
.sort-by {
  display: flex;
  align-items: center;
}

.sort-by select {
  margin-left: 10px;
  padding: 5px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

/* Right side: Search Box */
.search-box input {
  padding: 8px;
  width: 200px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
}

.search-box input:focus {
  border-color: #007bff;
}

/* Card Styling */
/*.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-bottom: 20px;
}*/

.timesheet-tab-content1 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}


@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.img-fluid {
  animation: slideIn 1.5s ease-out;
}


.d-flex {
  display: flex !important;
    justify-content: space-around;
}


@media (min-width: 480px) and (max-width: 768px) {
  .img1 {
    z-index: -1;
    animation-duration: 1s;
    animation-name: slideUp;
    margin-left: -112px;
    width: 80%;
  }

  .img2 {
    margin-left: -160px;
    z-index: 0;
    animation-duration: 1s;
    animation-name: slideUp;
    width: 68%;
    position: absolute;
    margin-top: 0px;
  }

  .img3 {
    margin-left: -60px;
    z-index: -1;
    animation-duration: 1s;
    animation-name: slideUp;
    position: absolute;
    margin-top: -40px;
    width: 65%;
  }
}


@media (max-width: 480px) {
  .img1 {
    z-index: -1;
    animation-duration: 1s;
    animation-name: slideUp;
    margin-left: -140px;
    width: 80%;
    margin-top: 0;
  }

  .img2 {
    margin-left: -125px;
    z-index: 0;
    animation-duration: 1s;
    animation-name: slideUp;
    width: 65%;
    position: absolute;
    margin-top: 0px;
  }

  .img3 {
    margin-left: -60px;
    z-index: -1;
    animation-duration: 1s;
    animation-name: slideUp;
    position: absolute;
    margin-top: -20px;
    width: 65%;
  }
}


.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1* var(--bs-gutter-y));
  margin-right: calc(-.5* var(--bs-gutter-x));
  margin-left: calc(-.5* var(--bs-gutter-x));
}

/*.tabs {
  display: flex;
  background-color: #FF6600;
  width: 100px;
  padding: 1em;
  border-radius: 10px;
}*/

.menu {
  display: flex;
  width: 100%;
  /* background-color: #007bff; */
  justify-content: center;
  gap: 10px;
}

.wh {
  background-color: #fff;
}

.cards {
  display: flex;
  gap: 2em;
  width: 100%;
  justify-content: center;
}

.card {
  /*width: 20em;
  height: 33em;*/
  overflow: visible;
      overflow: visible;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    padding: 15px;
}

.title {
  display: flex;
  /* background-color: #007bff; */
  justify-content: space-between;
}

.brand {
  background-color: white;
  border-right: lightgray solid 1px;
  padding-right: 10px;
}

.price {
  background-color: #0F56AA;
  display: flex;
  width: auto;
  justify-items: center;
  border-radius: 50px;
  align-items: center;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 14px;
  /*  padding: 0px 100px;*/
}

h1 {
  font-size: 1.5em;
  font-weight: 900;

}

.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5em;
}

.fl-st {
  align-items: flex-start !important;
}

.features {
  width: 28%;
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.specification {
  display: flex;
  gap: 5em;
  justify-content: center;
}

.achievements {
  display: flex;
  gap: 1em;
  justify-content: space-between;
}

.achieve {
  border-right: solid 1px grey;
  width: 8em;
}

.achieves {
  border-right: solid 1px grey;
  width: 30%;
  text-align: center;
}

.br-0 {
  border-right: 0px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #FF6600;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #000;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #FF6600;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #FF6600;
  border: 1px solid #FF6600;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 1em;
  font-size: 14px;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #FF6600;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true']+.accordion-content {
  opacity: 1;
  max-height: 9em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 14px;
  font-weight: 300;
  margin: 2em 1em;
}

/*.promo{
  width: 100%;
}*/
.company {
  width: 20%;
  font-size: 14px;
}

.contact {
  display: flex;
  gap: 1em;
  align-items: flex-start;
  margin-top: 1em;
}

.copyrights {
  width: 100%;
  text-align: center;
}

.ft-img {
  position: absolute;
  bottom: 0;
  /*  right: 0;*/
  left: 0;
  width: 170px;
}


/* General Styling */
#featured-services {
  padding: 20px;
  /*  background-color: #FFF0E6;*/
  border-radius: 20px;
  margin: 0 auto;
  width: 87%;
  max-width: 1320px;
}

#featured-services .section-title {
  text-align: center;
  margin-bottom: 20px;
}

#featured-services .menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

#featured-services .menu .tabs img {
  width: 50px;
  height: auto;
  cursor: pointer;
}

/* Cards Styling */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/*.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  width: calc(50% - 20px);
  max-width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  padding: 15px;
}*/

.card img {
  border-radius: 10px;
  margin-bottom: 10px;
}

.card .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card .price {
  background: #0F56AA;
  border-radius: 25px;
  padding: 5px 10px;
  text-align: center;
  color: #fff;
  width: auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cards {
    gap: 15px;
  }

  .card {
    width: calc(50% - 15px);
  }

  #featured-services .menu {
    flex-wrap: wrap;
    gap: 15px;
  }

  #featured-services .menu .tabs img {
    width: 40px;
  }
}

@media (max-width: 576px) {
  .card {
    width: 100%;
  }

  #featured-services .section-title h2 {
    font-size: 1.5em;
  }

  #featured-services .menu .tabs img {
    width: 35px;
  }

  .card h6 {
    font-size: 0.9em;
  }

  .card .price h6 {
    font-size: 0.9em;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .specification {
    display: flex;
    gap: 5em;
    justify-content: center;
  }

  .acc {
    display: flex;

    justify-content: center;
  }

  .al {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /*.wi {
    width: 50%;
  }*/

  .popup {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;
    height: auto;
    border-radius: 10px;
    width: 50%;
  }

}

@media (max-width: 992px) {
  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .card {

    height: 31em;
    overflow: visible;
  }

  .specification {
    display: flex;
    flex-wrap: wrap;
  }

  .features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
  }

  .top1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 14px;
    /* padding: 0px 100px; */
    flex-wrap: wrap;
  }

  .acc {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .al {
    display: flex;
    flex-direction: column;
  }

  .promo {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .card {

    height: 37em;
    overflow: visible;
  }

  .specification {
    display: flex;
    flex-wrap: wrap;
  }

  .features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
  }

  .top1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 14px;
    /* padding: 0px 100px; */
    flex-wrap: wrap;
  }

  .acc {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .al {
    display: flex;
    flex-direction: column;
  }

  .promo {
    width: 100%;
  }

  .achievements {
    display: flex;
    gap: 1em;
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .card {

    height: 36em;
    overflow: visible;
  }

  .specification {
    display: flex;
    flex-wrap: wrap;
  }

  .features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2em;
  }

  .top1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 14px;
    /* padding: 0px 100px; */
    flex-wrap: wrap;
  }

  .acc {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .al {
    display: flex;
    flex-direction: column;
  }

  .promo {
    width: 100%;
  }

  .achievements {
    display: flex;
    gap: 1em;
    justify-content: space-between;
    width: 100%;
  }
}


/* General Section Styling */
.featured-services {
  padding: 0px;
  width: 100%;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
}

.highlight {
  color: #FF6600;
}

.divider-img {
  max-width: 100px;
  margin-bottom: 10px;
}

.title {
  font-size: 1.5rem;
  /*    margin-bottom: 20px;*/
  text-align: center;
}

.images-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  flex: 1 1 30%;
}

/* Description Section */
.description {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
  margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .title {
    font-size: 1.2rem;
    text-align: center;
  }

  .images-group {
    flex-direction: column;
    align-items: center;
  }

  .responsive-img {
    width: 80%;
    margin-bottom: 15px;
  }

  .description {
    font-size: 13px;
  }

  .popup {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;
    height: auto;
    border-radius: 10px;
    width: auto;
  }

  .achievements {
    display: flex;
    gap: 1em;
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 667px) {
  .achievements {
    display: flex;
    gap: 1em;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 1rem;
  }

  .responsive-img {
    width: 100%;
  }

  .description {
    font-size: 12px;
  }

  .popup {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;
    height: auto;
    border-radius: 10px;
    width: auto;
  }

  .achievements {
            display: flex;
        gap: 1em;
        justify-content: space-between;
        width: 100%;
        flex-direction: row;
        margin-bottom: 100px;
  }

  widd{
    width: auto;
  }
}


.h6,
h6 {
  font-size: 14px;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container.footer-top {
    flex-direction: column;
    align-items: center;
  }

  .company {
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
  }

  .company h4 {
    font-size: 18px;
  }

  .contact p {
    font-size: 14px;
  }

  .social-links {
    display: flex;
    justify-content: left;
  }

  .social-links a {
    margin-right: 15px;
    font-size: 20px;
  }

  .copyrights p {
    font-size: 14px;
    margin-top: 10px;
  }

  .popup {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;
    height: auto;
    border-radius: 10px;
    width: 90%;
  }
}

@media (max-width: 480px) {
  .company h4 {
    font-size: 16px;
  }

  .company p {
    font-size: 12px;
  }

  .social-links a {
    font-size: 18px;
  }

  .copyrights p {
    font-size: 12px;
  }

  .popup {
    position: fixed;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;
    height: auto;
    border-radius: 10px;
    width: 90%;
  }
}


hr {
  margin: 5px;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: .25;
}


.swiper-pagination {
  position: relative;
  text-align: center;
  transition: .3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}


dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 14px;
  color: #000;
}


.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  display: none;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {

  display: none;
}


.swiper-container {
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #FF6600;
  /* Customize navigation button colors */
}

.swiper-pagination {
  position: relative;
  bottom: 10px;
  /* Adjust the position of the pagination to the bottom */
  width: 100%;
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: transparent;
  border: none;
  display: inline-block;
  padding: 5px 10px;
  margin: 0 5px;
  cursor: pointer;
  font-weight: bold;
  color: #FF6600;
  border: 1px solid #FF6600;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.swiper-pagination-bullet-active {
  background-color: #FF6600;
  color: #fff;
  /* Active page number style */
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.swiper-pagination-bullet:hover {
  background-color: #FF6600;
  color: #fff;
  /* Hover effect for page numbers */
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

/*.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 100%;
  
  max-width: 385px;
  
}*/


/* Style the tab */
.tabb {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  background-color: #ffffff;
}


/*popup1*/

/* Style the buttons inside the tab */
.tabb button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 14px;
}

/* Change background color of buttons on hover */
.tabb button:hover {
  background-color: #ddd;
  border-radius: 10px 10px 0px 0px;
}

/* Create an active/current tablink class */
.tabb button.active {
  background-color: #ccc;
  border-radius: 10px 10px 0px 0px;
}

/* Style the tab content */
.tabbcontent {
  display: none;
  padding: 6px 12px;
  /*  border: 1px solid #ccc;*/
  border-top: none;
}

.tabbcontent.active {
  display: block;
}


.tab1 {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  background-color: #ffffff;
}

/*poppup2*/
/* Style the tab */
.tab1 {
  overflow: hidden;
  border-bottom: 1px solid #ccc;
  background-color: #ffffff;
}

/* Style the buttons inside the tab */
.tab1 button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 14px;
}

/* Change background color of buttons on hover */
.tab1 button:hover {
  background-color: #ddd;
  border-radius: 10px 10px 0px 0px;
}

/* Create an active/current tablink class */
.tab1 button.active {
  background-color: #ccc;
  border-radius: 10px 10px 0px 0px;
}

/* Style the tab content */
.tab1content {
  display: none;
  padding: 6px 12px;
  /*  border: 1px solid #ccc;*/
  border-top: none;
}

.tab1content.active {
  display: block;
}


.jic {
  justify-items: center;
}

.alc {
  align-items: center;
}

.hero_col {
  color: #0F56AA;
}

.hero_colo {
  color: #FF6600;
}

.mar-10 {
  margin: 10px;
}

.wid-250 {
  width: 250px;
}

.callus {
  background-color: #d2bde982;
  padding: 10px;
  border-radius: 10px;
  margin: 10px;
  height: 220px;
}

.wid-50 {
  width: 50px;
}

.wid-75 {
  width: 75px;
}

.bg1 {
  background-color: #FF66001A;
}

.tit1 {
  justify-content: left;
  gap: 10px;
}

.tal {
  text-align: left;
}

.titl {
  justify-content: right;
  gap: 10px;
}

.pri {
  color: #fff;
  padding: 10px;
  text-align: center;
  width: 100%;
}

.view {
  background-color: #0F56AA;
  color: #fff;
  border-radius: 50px;
}

.h1-wid {
  width: 32%;
}

.abt-con {
  /*  width: 64%;*/
  text-align: justify;
  font-size: 14px;
}

.tar {
  text-align: right;
  

}

.pad-t-b {
  padding-top: 50px;
  padding-bottom: 50px;
}

.f-s {
  font-size: 2em;
}

.mission {
  color: #0F56AA;
  font-weight: 900;
}

.f-s-18 {
  font-size: 18px;
}

.m-b {
  margin-bottom: 10px;
}

.mar-15 {
  margin: 15px;
}

.foot {
  background-color: #E7EEF7;
  padding-bottom: 1em;
  padding-top: 6em;
}

.search-page .footer {
  --background-color: #ffffff;
  background-color: #ffffff;
}

.search-page .footer .footer-top {
  padding-top: 0;
}

.search-page .foot {
  background-color: #ffffff;
  padding-top: 0;
}

.search-page .footer-map-wrap {
  width: 100%;
  max-width: none;
  margin: 0;
}

.search-page .footer-map-wrap iframe {
  display: block;
  width: 100%;
}

.conta {
  background-image: url(assets/img/promobg.svg);
  width: 80%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  position: absolute;
  margin-top: -4em;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pro {
  color: #fff;
  font-size: 2em;
}

.co-whit {
  color: #fff;
}

.call {
  font-size: 18px;
  color: #fff;
}

.foot_con {
  display: flex;
  justify-content: space-between;
}

.foot_lo {
  width: 10em;
}

.f-s-14 {
  font-size: 14px;
  margin-bottom: 0px;
}

.quick_link {
  font-size: 14px;
  display: flex;
  flex-direction: column;
}

.ti {
  justify-content: right;
  gap: 10px;
  position: relative;
  bottom: -25px;
  right: 10px;
}


.hidden {
  display: none;
}

.tabs,
.popup-tabs {
  list-style: none;
  padding: 0;
  display: flex;
}

.tab,
.popup-tab {
  cursor: pointer;
  padding: 15px;
  margin: 0 5px;
  background: #FF6600;
  border-radius: 5px;
  width: auto;
  text-align: center;
}

.tab.active,
.popup-tab.active {
  background: #ff6600;
  color: #fff;
  width: auto;
  text-align: center;
}

/*  .popup-content { max-width: 500px; }*/
.closePopup {
  margin-top: 10px;
  background: #f00;
  color: #fff;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 50px;
  font-size: 14px;
  width: 30px;
}

.wit {
  width: 100px;
}

/*whatsapp*/
.WhatsAppfloat {
         position: fixed;
         width: 60px;
         height: 60px;
         bottom: 85px;
         right: 40px;
         background-color: #25d366;
         color: #FFF;
         border-radius: 90px;
         text-align: center;
         font-size: 40px;
         box-shadow: 2px 2px 3px #999;
         z-index: 100;
      }

      .WhatsAppfloat.WhatsAppfloat--left {
        right: auto;
        left: 24px;
      }

      .WhatsApp-float {
         margin-top: 12px;
      }


      @media (max-width: 480px) {
    .ft-img { 
        display: none;
    }
}


@media (max-width: 768px) {
    .ft-img { 
        display: none;
    }
}


@media (max-width: 480px) {
    .achievements {
        display: flex;
        gap: 1em;
        justify-content: space-between;
        width: 100%;
        flex-direction: column;
        margin-bottom: 100px;
    }
}



.carousel-container {
         width: 100%; 
         overflow: hidden;
         position: relative;
         }
         .carousel-container1 {
         width: 100%;
         overflow: hidden;
         position: relative;
         }
         .carousel-wrapper {
         display: flex;
         flex-wrap: nowrap;
         transition: transform 0.5s ease-in-out;
         }
         .carousel-card {
         min-width: 31.3%;
         margin: 10px;
         background: white;
         padding: 20px;
         text-align: center;
         border-radius: 10px;
         }
         .carousel-btn {
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         background: rgba(0, 0, 0, 0.7);
         color: white;
         border: none;
         padding: 5px;
         cursor: pointer;
         font-size: 15px;
/*         border-radius: 50%;*/
         z-index: 10;
         }
         .prev { left: 0; z-index: 1; }
         .next { right: 0; }
         @media (max-width: 576px) {
         .carousel-btn {
         width: 12%;
         }
         }
         @media (max-width: 576px) {
         .carousel-card {
         min-width: 97%;
         margin: 10px;
         background: white;
         padding: 20px;
         text-align: center;
         border-radius: 10px;
         box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
         }
         }
         @media (max-width: 576px) {
         .carousel-btn {
            width: 12%;
         }
         .carousel-card {
            min-width: 97%;
         }
      }



      @keyframes shadowFade {
  0% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0);
  }
  50% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0);
  }
}
 
.fading-shadow {
  display: inline-block;
  border-radius: 60px;
  transition: all 0.3s ease-in-out;
  animation: shadowFade 2s infinite ease-in-out;
}

/*--------------------------------------------------------------
# Search Page
--------------------------------------------------------------*/
body.search-page {
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

body.search-page h1,
body.search-page h2,
body.search-page h3,
body.search-page h4,
body.search-page h5,
body.search-page h6 {
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;
}

body.search-page code,
body.search-page pre,
body.search-page kbd,
body.search-page samp {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

body.search-page .navmenu a,
body.search-page .navmenu a:focus {
  font-family: "Nunito", sans-serif;
}

body.search-page .footer .footer-about .logo span,
body.search-page .footer .footer-about p {
  font-family: "Nunito", sans-serif;
}

body.search-page .main {
  background-color: #ffffff;
  overflow-x: hidden;
}

.search-page .header {
  --background-color: #ffffff;
  background-color: #ffffff;
}

.search-page.scrolled .header {
  --background-color: #ffffff;
  background-color: #ffffff;
}

@media (max-width: 991px) {
  body.search-page .WhatsAppfloat.WhatsAppfloat--left {
    display: flex;
    align-items: center;
    justify-content: center;
    left: auto;
    right: 12px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    font-size: 30px;
    line-height: 1;
  }

  body.search-page .WhatsApp-float {
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  body.search-page .header .container-fluid.container-xl {
    --bs-gutter-x: 0.75rem;
    gap: 4px;
  }

  body.search-page .header .logo {
    flex-shrink: 1;
    min-width: 0;
    margin-right: 4px;
  }

  body.search-page .header .btn-getstarted {
    font-size: 11px;
    padding: 6px 10px;
    margin: 0 6px 0 0;
    max-width: min(46vw, 200px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body.search-page .header > .container-fluid a .fa-whatsapp {
    font-size: 1.35em !important;
  }
}

.search-page .search-page-band {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 6px 16px 18px;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-radius: 0;
  /* overflow-x: hidden here forces overflow-y to clip; dropdown panels need to extend below */
  overflow: visible;
}

.search-page .search-page-inner {
  background: #ffffff;
  border: 1px solid #edf0f5;
  border-radius: 20px;
  padding: 8px 16px 16px;
  box-sizing: border-box;
  box-shadow: 0 4px 28px rgba(26, 44, 66, 0.06);
  max-width: 100%;
  overflow: visible;
}

.search-page .search-layout-wrap {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-sizing: border-box;
  box-shadow: none;
}

@media (max-width: 991px) {
  .search-page .search-page-band {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .search-page .search-page-band {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 6px 0 16px;
  }

  .search-page .search-page-inner {
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 8px 0 14px;
  }

  .search-page .search-layout-wrap {
    padding: 0;
    border-radius: 0;
  }
}

.search-page .section {
  background-color: transparent;
}

.search-page section.search-quick {
  padding-top: 0;
  padding-bottom: 0;
}

.search-page section.search-results {
  padding-top: 6px;
  padding-bottom: 8px;
}

.search-page .search-hero {
  padding-top: 42px;
  padding-bottom: 0;
}

.search-page .search-hero .section-title {
  padding-bottom: 2px;
}

.search-page .search-hero .section-title h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0f56aa;
  margin-bottom: 0;
  font-family: "Nunito", sans-serif;
  line-height: 1.2;
}

.search-page .search-quick {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}

.search-page .search-quick-card {
  position: relative;
  max-width: none;
  width: auto;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(to right, rgba(255, 120, 50, 0.22) 0%, rgba(255, 170, 90, 0.06) 38%, transparent 68%),
    linear-gradient(to left, rgba(255, 120, 50, 0.22) 0%, rgba(255, 170, 90, 0.06) 38%, transparent 68%),
    linear-gradient(135deg, #ffffff 50%, #fff8f0 85%, #fff0e5 100%);
  border: 1px solid #f0d9c4;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 140, 80, 0.2),
    0 6px 22px rgba(255, 102, 0, 0.1),
    0 2px 12px rgba(15, 86, 170, 0.06);
  padding: 10px 18px 12px;
}

/* Inset orange side accents — avoids messy corners from asymmetric borders + outer glow */
.search-page .search-quick-card::before,
.search-page .search-quick-card::after {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 11px;
  width: 5px;
  border-radius: 5px;
  background: linear-gradient(180deg, #ffb04d 0%, #ff8533 45%, #ff6600 100%);
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}

.search-page .search-quick-card::before {
  left: 7px;
}

.search-page .search-quick-card::after {
  right: 7px;
}

.search-page .search-quick-card > * {
  position: relative;
  z-index: 1;
}

.search-page .search-quick-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0f56aa;
  margin-bottom: 6px;
  font-family: "Nunito", sans-serif;
  line-height: 1.2;
}

.search-page .search-quick-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px 10px;
}

.search-page .search-quick-card .filter-grid-three {
  margin-bottom: 0;
  gap: 8px 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1 1 auto;
  min-width: 0;
}

.search-page .search-quick-card .filter-grid-two {
  margin-bottom: 0;
  gap: 8px 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  flex: 1 1 auto;
  min-width: 0;
}

.search-page .search-quick-row .quick-search-btn {
  width: auto;
  flex: 0 0 auto;
  min-width: 120px;
}

/* Exclude checkbox row labels inside dropdown panels — they must stay flex for gap + alignment */
.search-page .search-quick-card label:not(.gd-filter-dd__check),
.search-page .search-quick-card .filter-grid-three label:not(.gd-filter-dd__check) {
  display: block;
  color: #0F56AA;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.search-page .quick-dt-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 8px;
  width: 100%;
  align-items: stretch;
}

.search-page .quick-dt-part {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  height: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0 8px;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  color: #1f1f1f;
  background: #f8fafc;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.search-page .quick-dt-full {
  display: block;
}

.search-page .quick-dt-part:focus-visible {
  outline: none;
  border-color: #0F56AA;
  box-shadow: 0 0 0 3px rgba(15, 86, 170, 0.12);
}

/* Flatpickr alt field: calendar icon, same strip styling as .quick-dt-part */
.search-page .search-quick-card .search-fp-alt {
  cursor: pointer;
  padding-right: 34px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%230f56aa' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM1 4v10a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4H1z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px 14px;
}

.search-page .search-quick-card .search-fp-alt:focus-visible {
  outline: none;
  border-color: #0F56AA;
  box-shadow: 0 0 0 3px rgba(15, 86, 170, 0.12);
}

.search-page .flatpickr-calendar {
  font-family: "Nunito", sans-serif;
}

/* Flatpickr search: replace default time spinners with 30-minute scroll list */
.search-page .flatpickr-calendar .flatpickr-time.gd-fp-time-custom {
  display: block !important;
  box-sizing: border-box;
  padding: 10px 12px 12px;
  border-top: 1px solid #e8ecf1;
  background: #fff;
  max-height: none !important;
  height: auto !important;
  min-height: 0;
  overflow: visible !important;
  align-items: stretch !important;
  flex-wrap: nowrap !important;
}

.search-page .flatpickr-calendar .flatpickr-time.gd-fp-time-custom > :not(.gd-fp-time-list-root) {
  display: none !important;
}

.search-page .flatpickr-calendar .gd-fp-time-list-root {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  flex: 0 0 auto;
}

.search-page .flatpickr-calendar .gd-fp-time-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  color: #1f1f1f;
  cursor: default;
  text-align: left;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.search-page .flatpickr-calendar .gd-fp-time-trigger:focus-visible {
  outline: none;
  border-color: #0f56aa;
  box-shadow: 0 0 0 3px rgba(15, 86, 170, 0.12);
}

.search-page .flatpickr-calendar .gd-fp-time-trigger__icon {
  flex-shrink: 0;
  display: flex;
  color: #94a3b8;
}

.search-page .flatpickr-calendar .gd-fp-time-trigger__label {
  flex: 1;
  min-width: 0;
}

.search-page .flatpickr-calendar .gd-fp-time-trigger.is-placeholder .gd-fp-time-trigger__label {
  color: #94a3b8;
}

.search-page .flatpickr-calendar .gd-fp-time-scroll {
  max-height: 260px;
  min-height: 160px;
  overflow-y: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.12);
  border: 1px solid #e8ecf1;
  scrollbar-color: #64748b #f1f5f9;
  scrollbar-width: thin;
  flex: 0 1 auto;
}

.search-page .flatpickr-calendar .gd-fp-time-scroll::-webkit-scrollbar {
  width: 12px;
}

.search-page .flatpickr-calendar .gd-fp-time-scroll::-webkit-scrollbar-track {
  background: #f8fafc;
}

.search-page .flatpickr-calendar .gd-fp-time-scroll::-webkit-scrollbar-thumb {
  background: #64748b;
  border-radius: 6px;
  border: 2px solid #f8fafc;
}

.search-page .flatpickr-calendar .gd-fp-time-scroll::-webkit-scrollbar-button {
  display: block;
  height: 10px;
  background: #e2e8f0;
}

.search-page .flatpickr-calendar .gd-fp-time-opt {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0px 6px;
  border: none;
  border-bottom: 1px solid #eef2f6;
  background: #fff;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  color: #0f172a;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.12s ease;
}

.search-page .flatpickr-calendar .gd-fp-time-opt:last-child {
  border-bottom: none;
}

.search-page .flatpickr-calendar .gd-fp-time-opt:hover {
  background: #f1f5f9;
}

.search-page .flatpickr-calendar .gd-fp-time-opt.is-active {
  background: #e8f4fc;
  font-weight: 600;
  color: #0f56aa;
}

.search-page .flatpickr-calendar .gd-fp-time-opt.is-disabled,
.search-page .flatpickr-calendar .gd-fp-time-opt:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  color: #94a3b8;
  background: #f8fafc;
}

.search-page .flatpickr-calendar .gd-fp-time-opt:focus-visible {
  outline: 2px solid #0f56aa;
  outline-offset: -2px;
  background: #f1f5f9;
}

.search-page .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Never treat checkbox/radio in the search strip as full-width text fields (breaks pickup location list) */
.search-page .search-quick-card input:not([type="hidden"]):not(.quick-dt-part):not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  height: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0 10px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  color: #1f1f1f;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.search-page .search-quick-card input:focus-visible:not([type="hidden"]):not(.quick-dt-part):not([type="checkbox"]):not([type="radio"]) {
  outline: none;
  border-color: #0F56AA;
  box-shadow: 0 0 0 3px rgba(15, 86, 170, 0.12);
}

.search-page .search-quick-card select {
  width: 100%;
  height: 34px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0 8px;
  font-family: "Nunito", sans-serif;
  font-size: 13px;
  color: #1f1f1f;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  cursor: pointer;
  appearance: auto;
}

.search-page .search-quick-card select:focus-visible {
  outline: none;
  border-color: #0F56AA;
  box-shadow: 0 0 0 3px rgba(15, 86, 170, 0.12);
}

/* Collapsible multi-select dropdowns (checkbox panels) */
.search-page .gd-filter-dd {
  position: relative;
  width: 100%;
  min-width: 0;
}

.search-page .gd-filter-dd__field-label {
  display: block;
  color: #0F56AA;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.search-page .gd-filter-dd__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-page .gd-filter-dd__btn:hover {
  border-color: #cbd5e1;
}

.search-page .gd-filter-dd__btn.is-open,
.search-page .gd-filter-dd__btn:focus-visible {
  outline: none;
  border-color: #0F56AA;
  box-shadow: 0 0 0 2px rgba(15, 86, 170, 0.15);
}

.search-page .gd-filter-dd__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-page .gd-filter-dd__chev {
  flex-shrink: 0;
  font-size: 14px;
  opacity: 0.65;
  transition: transform 0.2s ease;
}

.search-page .gd-filter-dd__btn.is-open .gd-filter-dd__chev {
  transform: rotate(180deg);
}

.search-page .gd-filter-dd__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 10060;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(15, 44, 66, 0.12);
  max-height: min(280px, calc(100vh - 120px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.search-page .gd-filter-dd__scroll {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 10px;
  -webkit-overflow-scrolling: touch;
}

.search-page .gd-filter-dd__scroll--models {
  max-height: 260px;
}

.search-page .gd-filter-dd__check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 10px;
  margin: 0 2px 2px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: background 0.15s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.search-page .gd-filter-dd__check:hover {
  background: #f1f5f9;
}

.search-page .gd-filter-dd__check input[type="checkbox"] {
  width: 1rem !important;
  min-width: 1rem !important;
  max-width: 1rem !important;
  height: 1rem !important;
  margin: 2px 0 0;
  flex: 0 0 auto;
  flex-shrink: 0;
  accent-color: #0f56aa;
  cursor: pointer;
  border: none;
  padding: 0;
  background: transparent;
}

.search-page .gd-filter-dd__check span {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.45;
  color: #1e293b;
  font-size: 13px;
  font-weight: 500;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.search-page .search-quick-card .filter-grid-three > .gd-filter-dd--in-search {
  overflow: visible;
  z-index: 20;
}

.search-page #dd-branch-quick .gd-filter-dd__panel {
  box-sizing: border-box;
  min-width: min(340px, calc(100vw - 16px));
}

/* Pickup locations: state → combined city + site rows (see renderBranchCheckboxTree in main.js) */
.search-page .gd-branch-tree {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.search-page .gd-branch-tree__region {
  border-radius: 8px;
}

.search-page .gd-branch-tree__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px;
  margin: 0 0 2px;
}

.search-page .gd-branch-tree__row--state {
  background: #f8fafc;
  padding: 4px 6px 4px 4px;
}

.search-page .gd-branch-tree__node-check {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0;
  padding: 4px 2px;
  cursor: pointer;
}

.search-page .gd-branch-tree__node-check input[type="checkbox"] {
  width: 1rem !important;
  min-width: 1rem !important;
  max-width: 1rem !important;
  height: 1rem !important;
  margin: 0;
  accent-color: #0f56aa;
  cursor: pointer;
}

.search-page .gd-branch-tree__toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 6px 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s ease;
}

.search-page .gd-branch-tree__row--state .gd-branch-tree__toggle:hover {
  background: #e2e8f0;
}

.search-page .gd-branch-tree__toggle .gd-branch-tree__chev {
  flex-shrink: 0;
  font-size: 11px;
  opacity: 0.7;
  transition: transform 0.18s ease;
}

.search-page .gd-branch-tree__toggle.is-open .gd-branch-tree__chev {
  transform: rotate(90deg);
}

.search-page .gd-branch-tree__toggle-label {
  flex: 1 1 auto;
  min-width: 0;
}

.search-page .gd-branch-tree__nest {
  padding: 2px 0 4px 10px;
  border-left: 1px solid #e2e8f0;
  margin: 0 0 4px 10px;
}

.search-page .gd-branch-tree__nest--state {
  margin-left: 8px;
  padding-left: 12px;
}

.search-page .gd-branch-tree__leaf {
  padding-left: 8px;
  margin-left: 0;
}

.search-page .gd-branch-tree__region--flat {
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid #e2e8f0;
}

.search-page .gd-branch-tree__flat-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  padding: 6px 8px 4px;
}

.search-page .quick-search-btn {
  width: 100%;
  border: none;
  border-radius: 50px;
  background: #FF6600;
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 7px 22px;
  min-height: 34px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(255, 102, 0, 0.22);
}

.search-page .quick-search-btn:hover {
  color: #ffffff;
  background: #e55b00;
  box-shadow: 0 10px 32px rgba(255, 102, 0, 0.35);
}

.search-page .quick-search-btn:focus-visible {
  outline: 3px solid rgba(255, 102, 0, 0.45);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .search-page .quick-search-btn:hover {
    transform: translateY(-1px);
  }
}

.search-page .search-results {
  padding-top: 0;
  padding-bottom: 8px;
  background: transparent;
}

.search-page .search-shell {
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  max-width: none;
  width: 100%;
  margin: 0;
  overflow: visible;
}

.search-page .search-layout {
  --search-filter-width: 240px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
}

.search-page .search-filter-card.search-filter-drawer {
  box-sizing: border-box;
  flex: 0 0 min(var(--search-filter-width), 100%);
  max-width: min(var(--search-filter-width), 100%);
  min-width: min(200px, 92vw);
  width: min(var(--search-filter-width), 100%);
  margin: 0;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 12px;
  border: 1px solid #c5d4e5;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff 60%, #FF66000D 100%);
  box-shadow:
    0 0 0 1px rgba(15, 86, 170, 0.06),
    0 8px 28px rgba(15, 86, 170, 0.12);
  pointer-events: auto;
  align-self: flex-start;
  position: sticky;
  top: 86px;
  max-height: calc(100vh - 86px);
  transition: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.search-page .search-filter-resize-handle {
  flex: 0 0 8px;
  width: 8px;
  min-height: 100%;
  align-self: stretch;
  border: none;
  background: transparent;
  border-radius: 999px;
  cursor: col-resize;
  position: relative;
  padding: 0;
}

.search-page .search-filter-resize-handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  border-radius: 999px;
  background: #d6dfeb;
}

.search-page .search-filter-resize-handle:hover::before,
.search-page .search-filter-resize-handle:focus-visible::before,
.search-page .search-layout.is-resizing .search-filter-resize-handle::before {
  background: #0f56aa;
}

.search-page .search-filter-resize-handle:focus-visible {
  outline: 2px solid color-mix(in srgb, #0f56aa, #ffffff 35%);
  outline-offset: 2px;
}

.search-page .search-filter-card.search-filter-drawer::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.search-page .search-filter-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.search-page .search-filter-drawer-header h3 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0;
  color: #0F56AA;
  font-family: "Nunito", sans-serif;
  letter-spacing: 0.01em;
}

.search-page .search-filter-close {
  display: none;
}

.search-page .search-filter-close:hover {
  background: transparent;
  border-color: transparent;
}

.search-page .search-filters-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  border: 1px solid #0f56aa;
  border-radius: 50px;
  background: #ffffff;
  color: #0f56aa;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  transition: 0.2s;
  white-space: nowrap;
}

.search-page .search-filters-toggle:hover {
  background: color-mix(in srgb, #0f56aa, transparent 92%);
}

.search-page .search-toolbar-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  width: 100%;
  padding-bottom: 8px;
  min-width: 0;
}

.search-page .search-toolbar-left {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px 10px;
  flex: 0 1 auto;
  min-width: 0;
}

.search-page .search-filter-card {
  background: linear-gradient(135deg, #fff 60%, #FF66000D 100%);
  border: 1px solid #edf0f5;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 6px 32px rgba(15, 86, 170, 0.08);
  margin-top: 0;
}

.search-page .search-filter-card h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  color: #0F56AA;
  font-family: "Nunito", sans-serif;
  letter-spacing: 0.01em;
}

.search-page .search-filter-drawer .search-filter-drawer-header h3 {
  margin-bottom: 0;
}

.search-page .filter-block {
  margin-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 12px;
}

.search-page .filter-block h4 {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0F56AA;
  font-family: "Nunito", sans-serif;
}

.search-page .filter-block.filter-block--vehicle-type h4 {
  margin-bottom: 6px;
}

.search-page .filter-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
}

.search-page .filter-grid-single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.search-page .filter-grid-single label {
  display: block;
  color: #0F56AA;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.search-page .filter-grid-single input {
  width: 100%;
  height: 40px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 13px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: #1f1f1f;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.search-page .filter-grid-single input:focus-visible {
  outline: none;
  border-color: #0F56AA;
  box-shadow: 0 0 0 3px rgba(15, 86, 170, 0.12);
}

.search-page .filter-grid-two label {
  display: block;
  color: #0F56AA;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.search-page .filter-grid-two p,
.search-page .filter-block p {
  margin: 0;
  font-size: 16px;
  color: #1f1f1f;
  font-weight: 500;
  line-height: 1.35;
  font-family: "Nunito", sans-serif;
}

/* Do not style checkbox/radio inside custom dropdowns as full-width text fields */
.search-page .filter-block input:not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  height: 40px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 13px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: #1f1f1f;
  margin-bottom: 10px;
  background: #f8fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.search-page .filter-block input:not([type="checkbox"]):not([type="radio"])::placeholder {
  color: #7a7a7a;
  opacity: 1;
}

.search-page .filter-block input:not([type="checkbox"]):not([type="radio"]):focus-visible {
  outline: none;
  border-color: #0F56AA;
  box-shadow: 0 0 0 3px rgba(15, 86, 170, 0.12);
}

.search-page .filter-list {
  list-style: none;
  padding: 6px;
  margin-top: 8px;
  margin-bottom: 0;
  margin-left: 0;
  max-height: 128px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border: 1px solid #e2eaf4;
  border-radius: 12px;
  background: #f8fafc;
  box-shadow: 0 1px 3px rgba(22, 55, 92, 0.06);
  box-sizing: border-box;
}

.search-page .filter-list li {
  font-size: 13px;
  color: #2a2a2a;
  padding: 7px 8px;
  border-bottom: 1px solid #e8eef5;
  font-weight: 500;
  line-height: 1.35;
  font-family: "Nunito", sans-serif;
}

.search-page .filter-list li:last-child {
  border-bottom: none;
}

.search-page .filter-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.search-page .filter-list .filter-option {
  cursor: pointer;
  border-radius: 8px;
  margin: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.search-page .filter-list .filter-option:hover,
.search-page .filter-list .filter-option:focus-visible {
  outline: none;
  background-color: #f7f2ed;
}

.search-page .filter-list .filter-option.is-pending {
  background-color: #fff2e4;
  color: #a85616;
  font-weight: 700;
}

.search-page .filter-list .filter-option.is-applied {
  background-color: #eaf2fd;
  color: #0f56aa;
  font-weight: 700;
}

.search-page .filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
}

.search-page .filter-clear-btn {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid #FF6600;
  border-radius: 999px;
  background: #ffffff;
  color: #FF6600;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  line-height: 1.2;
  min-height: 42px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.search-page .filter-clear-btn:hover {
  background: rgba(255, 102, 0, 0.06);
}

.search-page .filter-clear-btn:focus-visible {
  outline: 3px solid color-mix(in srgb, #0f56aa, #ffffff 65%);
  outline-offset: 2px;
}

.search-page .filter-apply-btn {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  border-radius: 999px;
  background: #FF6600;
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  line-height: 1.2;
  min-height: 42px;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.25);
}

.search-page .filter-apply-btn:hover {
  background: #e55b00;
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.35);
}

.search-page .filter-apply-btn:focus-visible {
  outline: 3px solid rgba(255, 102, 0, 0.45);
  outline-offset: 2px;
}

.search-page .search-results-panel {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 0;
  box-shadow: none;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.search-page .search-results-scroll {
  padding: 16px 18px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.search-page .search-results-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.search-page .search-toolbar {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
  padding-bottom: 0;
}

.search-page .sort-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px 10px;
  flex-wrap: nowrap;
  min-width: 0;
  flex-shrink: 0;
}

.search-page .sort-field-label {
  margin: 0;
  font-size: 12px;
  color: #323232;
  font-weight: 700;
  white-space: nowrap;
}

.search-page .search-sort-select {
  width: auto;
  min-width: 160px;
  max-width: min(240px, 42vw);
  height: 34px;
  padding: 0 10px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  color: #1e293b;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-page .search-sort-select:hover {
  border-color: #cbd5e1;
}

.search-page .search-sort-select:focus-visible {
  outline: none;
  border-color: #0f56aa;
  box-shadow: 0 0 0 3px rgba(15, 86, 170, 0.12);
}

.search-page .mode-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search-page .chip {
  border: 1px solid #f4dba8;
  border-radius: 20px;
  background: #f8edd4;
  color: #8a7538;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.search-page .chip:hover {
  background: #f0e4c0;
  border-color: #e0c67a;
}

.search-page .chip.active {
  color: #ffffff;
  background: #FF6600;
  border-color: #FF6600;
}

.search-page .chip.active:hover {
  background: #e55b00;
  border-color: #e55b00;
}

.search-page .result-note {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  padding-left: 8px;
  text-align: right;
  color: #64748b;
  font-size: 10px;
  line-height: 1.3;
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-page .bike-grid {
  display: grid;
  gap: 22px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

/* Grid items default to min-width:auto — long content can blow out columns on narrow viewports */
.search-page .bike-grid > .bike-card {
  min-width: 0;
}

.search-page .bike-card {
  isolation: isolate;
  border: 1px solid #e8eef5;
  border-radius: 18px;
  padding: 10px 12px 12px;
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(26, 44, 66, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.search-page .bike-card::before {
  content: none;
}

.search-page .bike-card>* {
  position: relative;
  z-index: 1;
}

.search-page .bike-card:hover {
  border-color: #c5d6e8;
  box-shadow:
    0 12px 40px rgba(15, 86, 170, 0.15),
    0 4px 16px rgba(26, 44, 66, 0.1);
}

@media (prefers-reduced-motion: no-preference) {
  .search-page .bike-card:hover {
    transform: translateY(-6px);
  }
}

.search-page .bike-card:focus-within {
  border-color: #c5d6e8;
  box-shadow:
    0 6px 28px rgba(26, 44, 66, 0.09),
    0 0 0 2px rgba(15, 86, 170, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .search-page .bike-card {
    transition-duration: 0.01ms;
  }

  .search-page .bike-card:hover,
  .search-page .bike-card:focus-within {
    transform: none;
  }

  .search-page .bike-card:not(.bike-card--sold-out):hover .bike-media img,
  .search-page .bike-card:not(.bike-card--sold-out):focus-within .bike-media img {
    transform: none;
  }

  .search-page .bike-action-btn:hover {
    transform: none;
  }
}

.search-page .bike-card-details {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  max-width: 100%;
  gap: 0;
}

.search-page .bike-card-footer {
  flex-shrink: 0;
  margin-top: 8px;
  padding: 8px 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  min-width: 0;
  max-width: 100%;
}

.search-page .bike-card-booking-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 12px;
  background: #f6f8fb;
  border: 1px solid #e8eef5;
}

.search-page .bike-card-booking-fields .bcf-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-page .bike-card-booking-fields label {
  font-size: 11px;
  font-weight: 600;
  color: #5a6d82;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.search-page .bike-card-booking-fields .bike-card-branch {
  width: 100%;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d5dee8;
  background: #fff;
  color: #1a2b3c;
}

.search-page .bike-card-booking-fields .bcf-row-dt {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.search-page .bike-card-booking-fields .bcf-dt {
  flex: 1 1 140px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-page .bike-card-booking-fields input[type="datetime-local"] {
  width: 100%;
  font-size: 12px;
  padding: 8px 8px;
  border-radius: 8px;
  border: 1px solid #d5dee8;
  background: #fff;
  color: #1a2b3c;
}

.search-page .bike-card-days-line {
  margin: 0;
  font-size: 12px;
  color: #3d4f63;
  font-weight: 500;
}

.search-page .bike-card-days-line strong {
  color: #0f56aa;
  font-variant-numeric: tabular-nums;
}

.search-page .bike-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 6px;
  min-height: 0;
  min-width: 0;
}

.search-page .bike-card .tag {
  color: #7f7f7f;
  font-size: 12px;
}

.search-page .bike-card h5 {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
  margin: 0;
  padding-right: 4px;
  text-align: left;
  color: #0a4a8f;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.25;
  min-height: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.search-page .bike-media {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8eef5;
  background: #f6f8fb;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.55) inset;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-page .bike-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(15, 86, 170, 0.04);
  pointer-events: none;
  z-index: 1;
  transition: box-shadow 0.25s ease;
}

.search-page .bike-card:hover .bike-media,
.search-page .bike-card:focus-within .bike-media {
  border-color: #bcd3eb;
  box-shadow:
    0 0 0 2px rgba(15, 86, 170, 0.15),
    0 10px 20px rgba(15, 86, 170, 0.12);
}

.search-page .bike-card:hover .bike-media::after,
.search-page .bike-card:focus-within .bike-media::after {
  box-shadow: inset 0 0 0 1px rgba(15, 86, 170, 0.1);
}

.search-page .bike-card img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  border-radius: 0;
  border: none;
  background: transparent;
  transform-origin: 50% 50%;
  transition: transform 0.45s ease;
  display: block;
}

.search-page .bike-chips {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}

.search-page .bike-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d4d96;
  background: #ffffff;
  border: 1px solid #e8eef5;
  box-shadow: 0 2px 8px rgba(26, 44, 66, 0.06);
}

.search-page .bike-chip-electric {
  color: #0a7a46;
  border-color: rgba(10, 122, 70, 0.22);
}

/* Sold out: red border + text only (no hatch lines inside stamp) */
.search-page .bike-sold-out-mark {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  border-radius: inherit;
}

.search-page .bike-sold-out-stamp {
  position: relative;
  padding: 12px 28px;
  border: 3px solid #9b1c1c;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: rotate(-30deg);
  transform-origin: center center;
}

.search-page .bike-sold-out-label {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #9b1c1c;
  letter-spacing: 0.24em;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.search-page .bike-card--sold-out .bike-desc {
  color: #9b1c1c;
  font-weight: 600;
}

.search-page .bike-card--sold-out .bike-availability {
  background: linear-gradient(165deg, #faf6f6 0%, #f5eded 100%);
  border-color: #ecd4d4;
  box-shadow: 0 1px 2px rgba(155, 28, 28, 0.06);
}

.search-page .bike-card--sold-out .bike-avail-icon {
  color: #9b1c1c;
  border-color: #ecc8c8;
  background: #fff;
}

/* Sold out: photo stays sharp; stamp overlay + status text show availability */
.search-page .bike-card--sold-out .bike-media {
  background: #f6f8fb;
}

.search-page .bike-actions {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.search-page .bike-action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e8eef5;
  background: #ffffff;
  color: #4a5a6e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(26, 44, 66, 0.05);
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.search-page .bike-action-btn:hover {
  background: #f6f8fb;
  border-color: #c5d6e8;
  color: #0f56aa;
  box-shadow: 0 4px 14px rgba(26, 44, 66, 0.08);
}

.search-page .bike-action-btn:focus-visible {
  outline: 3px solid color-mix(in srgb, #0f56aa, #ffffff 65%);
  outline-offset: 2px;
}

.search-page .bike-action-btn.is-active {
  color: #ffffff;
  background: #ff7a1a;
  border-color: #ff7a1a;
}

.search-page .bike-action-btn.is-active i {
  color: #ffffff;
}

@media (prefers-reduced-motion: no-preference) {
  .search-page .bike-card:not(.bike-card--sold-out):hover .bike-media img,
  .search-page .bike-card:not(.bike-card--sold-out):focus-within .bike-media img {
    transform: scale(1.06);
  }

  .search-page .bike-action-btn:hover {
    transform: translateY(-1px);
  }
}

.search-page .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 14px;
  /* margin-top: 8px; */
  /* margin-bottom: 6px; */
  min-width: 0;
  padding: 9px 11px;
  /* border-radius: 12px; */
  /* background: linear-gradient(180deg, #fbfcfe 0%, #f1f5f9 100%);
  border: 1px solid #e2e9f2;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(26, 44, 66, 0.04); */
}

.search-page .bike-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  color: #3d4f63;
  font-size: 13px;
  font-weight: 500;
  font-family: "Nunito", sans-serif;
  min-width: 0;
  flex: 1 1 auto;
}

.search-page .bike-meta__brand {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 800;
  color: #083358;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.search-page .bike-meta__brand + .bike-meta__capacity {
  position: relative;
  margin-left: 2px;
  padding-left: 12px;
}

.search-page .bike-meta__brand + .bike-meta__capacity::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  border-radius: 1px;
  background: linear-gradient(180deg, transparent, #c5d6e8 20%, #c5d6e8 80%, transparent);
}

.search-page .bike-meta__capacity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* padding: 5px 11px 5px 9px;
  border-radius: 999px; */
  font-size: 12px;
  font-weight: 700;
  color: #143c5c;
  /* background: #fff;
  border: 1px solid #d8e6f4;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 3px rgba(15, 86, 170, 0.07); */
}

.search-page .bike-meta__capacity i {
  font-size: 11px;
  color: #4a6f94;
}

.search-page .bike-meta__capacity + .bike-meta__locale {
  position: relative;
  margin-left: 2px;
  padding-left: 12px;
}

.search-page .bike-meta__capacity + .bike-meta__locale::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  border-radius: 1px;
  background: linear-gradient(180deg, transparent, #c5d6e8 20%, #c5d6e8 80%, transparent);
}

.search-page .bike-meta__locale {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #56667a;
  letter-spacing: 0.03em;
}

.search-page .bike-meta__locale i {
  font-size: 11px;
  color: #0f56aa;
  opacity: 0.88;
}

.search-page .bike-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #101c2a;
  font-size: 13px;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  font-variant-numeric: tabular-nums;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(165deg, #ffffff 0%, #f6f9ff 50%, #e8f0fb 100%);
  /* border: 1px solid #c9daf0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 10px rgba(15, 86, 170, 0.1); */
  flex-shrink: 0;
  line-height: 1.2;
}

.search-page .bike-rating__value {
  font-variant-numeric: tabular-nums;
}

.search-page .bike-rating i {
  color: #f4b000;
  font-size: 13px;
  filter: drop-shadow(0 1px 1px rgba(160, 95, 0, 0.22));
}

.search-page .bike-availability {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 8px 0 10px;
  padding: 11px 12px;
  border-radius: 10px;
  background: linear-gradient(165deg, #f8fafc 0%, #f0f4f8 100%);
  /* border: 1px solid #e2e9f2;
  box-shadow: 0 1px 3px rgba(26, 44, 66, 0.06); */
  font-family: "Nunito", sans-serif;
}

.search-page .bike-avail-row--dates {
  align-items: flex-start;
}

.search-page .bike-avail-date {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 2px;
  min-width: 0;
}

.search-page .bike-avail-date__segment {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  /* gap: 4px; */
  padding: 6px 8px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid #dce6f0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.search-page .bike-avail-date__tag {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6b7c90;
  line-height: 1.2;
}

.search-page .bike-avail-date__text {
  font-size: 12px;
  font-weight: 700;
  color: #101c2a;
  line-height: 1.35;
  overflow-wrap: break-word;
  word-break: break-word;
  font-variant-numeric: tabular-nums;
}

.search-page .bike-avail-date__connector {
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 -2px;
  border-radius: 999px;
  background: linear-gradient(165deg, #e8f0fb 0%, #dce8f5 100%);
  color: #0f56aa;
  font-size: 11px;
  border: 1px solid #c9daf0;
}

.search-page .bike-avail-date__connector i {
  opacity: 0.92;
}

@media (max-width: 380px) {
  .search-page .bike-avail-date {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .search-page .bike-avail-date__connector {
    align-self: center;
    transform: rotate(90deg);
    margin: 2px 0;
  }
}

.search-page .bike-avail-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  min-width: 0;
}

.search-page .bike-avail-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #fff;
  color: #0f56aa;
  border: 1px solid #dce6f0;
  font-size: 13px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.search-page .bike-avail-content {
  flex: 1;
  min-width: 0;
}

.search-page .bike-avail-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  color: #6b7c90;
  margin-bottom: 5px;
}

.search-page .bike-availability .pickup-branch {
  margin: 0;
  padding: 0;
  color: #1a2b3c;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.search-page .bike-availability .bike-desc {
  margin: 0;
  padding: 0;
  color: inherit;
  font-weight: 400;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.search-page .bike-avail-pill {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
  background: #eef2f7;
  color: #3d4f63;
  border: 1px solid #dde4ee;
}

.search-page .bike-avail-pill--available {
  background: #e8f5e9;
  color: #1b5e20;
  border-color: #c8e6c9;
}

.search-page .bike-avail-pill--busy {
  background: #fff8e6;
  color: #8d6b00;
  border-color: #ffe082;
}

.search-page .bike-avail-pill--soldout {
  background: #fdecea;
  color: #9b1c1c;
  border-color: #f5c6c6;
}

.search-page .pickup-branch {
  color: #5a6d82;
  font-size: 12px;
  margin-bottom: 6px;
  line-height: 1.45;
  font-family: "Nunito", sans-serif;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.search-page .bike-desc {
  color: #2a3a4d;
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 4px;
  flex-shrink: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  display: block;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}

.search-page .bike-specs {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
  margin: 0 0 8px;
  font-family: "Nunito", sans-serif;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8eef5;
  background: #fafbfd;
}

.search-page .bike-specs th,
.search-page .bike-specs td {
  padding: 6px 10px;
  text-align: left;
  border-bottom: 1px solid #e8eef5;
  vertical-align: middle;
  overflow-wrap: break-word;
  word-break: break-word;
}

.search-page .bike-specs tr:last-child th,
.search-page .bike-specs tr:last-child td {
  border-bottom: 0;
}

.search-page .bike-specs th {
  width: 40%;
  max-width: 42%;
  font-weight: 600;
  color: #5a6d82;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #f0f4f9;
}

.search-page .bike-specs td {
  /* Reset global `table td` / `table td:not(:first-child)` (pricing tables use dark cells). */
  background-color: #ffffff;
  color: #1a2b3c;
  border-left: 1px solid #e8eef5;
  border-right: none;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.search-page .bike-desc-wrap {
  margin: 0 0 8px;
}

.search-page .bike-desc-detail {
  margin: 0 0 6px;
  padding: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #4a5a6e;
  white-space: pre-line;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  flex-grow: 0;
  min-height: 0;
}

.search-page .bike-desc-detail--html {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.search-page .bike-card--sold-out .bike-desc-detail {
  color: #4a5a6e;
}

.search-page .time-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.search-page .bike-card-footer .time-row {
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid #e6ecf3;
}

.search-page .time-row div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #edf0f5;
}

.search-page .time-row strong {
  font-size: 13px;
  font-weight: 700;
  color: #142433;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.search-page .time-row span {
  font-size: 11px;
  font-weight: 500;
  color: #5a6d82;
  font-variant-numeric: tabular-nums;
}

.search-page .price-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 12px;
  margin-top: 4px;
  min-width: 0;
}

.search-page .price-row strong {
  order: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: 21px;
  font-weight: 800;
  color: #002c55;
  background: #eef4fc;
  border-radius: 11px;
  padding: 7px 13px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  border: 1px solid #c5d6e8;
  box-shadow: 0 2px 10px rgba(15, 86, 170, 0.1);
  white-space: nowrap;
  font-family: "Nunito", sans-serif;
  letter-spacing: 0.01em;
}

.search-page .bike-card--sold-out .price-row strong {
  color: #5a6d82;
  background: #f1f3f6;
  border-color: #d8dee6;
  box-shadow: none;
  opacity: 0.92;
}

.search-page .book-btn {
  order: 2;
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 0;
  background: #FF6600;
  color: #ffffff;
  border-radius: 6px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  text-decoration: none;
  line-height: 1;
  border: none;
  box-shadow: 0 3px 10px rgba(255, 102, 0, 0.3);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.search-page .book-btn:hover {
  background: #e55b00;
  color: #ffffff;
  box-shadow: 0 5px 16px rgba(255, 102, 0, 0.4);
}

.search-page .book-btn:focus-visible {
  outline: 2px solid rgba(255, 102, 0, 0.5);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: no-preference) {
  .search-page .book-btn:hover {
    transform: translateY(-2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .search-page .book-btn:hover {
    transform: none;
  }
}

/* Quick View */
.search-page .bike-quickview[hidden] {
  display: none;
}

.search-page .bike-quickview {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.search-page .bike-quickview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(3px);
}

.search-page .bike-quickview-dialog {
  position: relative;
  width: min(920px, calc(100% - 28px));
  margin: 8vh auto 0;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #efe3da;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.16),
    0 40px 120px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.search-page .bike-quickview-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid #efe3da;
  background: rgba(255, 255, 255, 0.96);
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.search-page .bike-quickview-close:hover {
  background: #fff5f0;
}

.search-page .bike-quickview-close:focus-visible {
  outline: 3px solid color-mix(in srgb, #0f56aa, #ffffff 65%);
  outline-offset: 2px;
}

.search-page .bike-quickview-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
}

.search-page .bike-quickview-media {
  background: #f6f4f1;
  border-right: 1px solid #f2ebe4;
}

.search-page .bike-quickview-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.search-page .bike-quickview-content {
  padding: 18px 18px 16px;
}

.search-page .bike-quickview-content h3 {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0f56aa;
  margin: 6px 0 10px;
}

.search-page .bike-quickview-branch {
  margin: 0 0 10px;
  color: #444;
  font-size: 13px;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}

.search-page .bike-quickview-desc {
  margin: 0 0 12px;
  color: #2d2d2d;
  font-size: 14px;
  line-height: 1.55;
  font-family: "Nunito", sans-serif;
}

.search-page .bike-quickview-times {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 10px 0 14px;
  padding-top: 12px;
  border-top: 1px solid #f2ebe4;
}

.search-page .bike-quickview-times strong {
  font-size: 12px;
  color: #222;
}

.search-page .bike-quickview-times span {
  font-size: 11px;
  color: #666;
}

.search-page .bike-quickview-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid #f2ebe4;
}

.search-page .bike-quickview-price {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: #0f56aa;
  border-radius: 999px;
  padding: 8px 14px;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(15, 86, 170, 0.22);
}

@media (max-width: 768px) {
  .search-page .bike-quickview-dialog {
    margin: 5vh auto 0;
  }

  .search-page .bike-quickview-body {
    grid-template-columns: 1fr;
  }

  .search-page .bike-quickview-media {
    border-right: none;
    border-bottom: 1px solid #f2ebe4;
  }

  .search-page .bike-quickview-media img {
    min-height: 240px;
  }
}

/* Vehicle Terms & Conditions modal (search results) */
.search-page .bike-terms-modal[hidden] {
  display: none;
}

.search-page .bike-terms-modal {
  position: fixed;
  inset: 0;
  z-index: 10070;
}

.search-page .bike-terms-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(3px);
}

.search-page .bike-terms-dialog {
  position: relative;
  width: min(560px, calc(100% - 28px));
  max-height: min(88vh, 720px);
  margin: 6vh auto 0;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #efe3da;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.16),
    0 40px 120px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.search-page .bike-terms-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid #efe3da;
  background: rgba(255, 255, 255, 0.96);
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.search-page .bike-terms-close:hover {
  background: #fff5f0;
}

.search-page .bike-terms-close:focus-visible {
  outline: 3px solid color-mix(in srgb, #0f56aa, #ffffff 65%);
  outline-offset: 2px;
}

.search-page .bike-terms-inner {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1;
}

.search-page .bike-terms-inner h2 {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #0f56aa;
  margin: 0 40px 8px 0;
  padding-right: 8px;
}

.search-page .bike-terms-vehicle {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  font-family: "Nunito", sans-serif;
}

.search-page .bike-terms-scroll {
  overflow: auto;
  flex: 1;
  padding-right: 4px;
  margin-right: -4px;
  -webkit-overflow-scrolling: touch;
}

.search-page .bike-terms-prose .bike-terms-lead {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a3d6b;
  margin: 0 0 12px;
}

.search-page .bike-terms-prose ol.bike-terms-numbered {
  margin: 0;
  padding-left: 1.35em;
  color: #2d2d2d;
  font-size: 13px;
  line-height: 1.6;
  font-family: "Nunito", sans-serif;
}

.search-page .bike-terms-prose ol.bike-terms-numbered li {
  margin-bottom: 10px;
  padding-left: 2px;
}

.search-page .bike-terms-prose ol.bike-terms-numbered li:last-child {
  margin-bottom: 0;
}

.search-page .bike-terms-prose h3 {
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a3d6b;
  margin: 16px 0 8px;
}

.search-page .bike-terms-prose h3:first-child {
  margin-top: 0;
}

.search-page .bike-terms-prose ul {
  margin: 0 0 0 1.1em;
  padding: 0;
  color: #2d2d2d;
  font-size: 13px;
  line-height: 1.55;
  font-family: "Nunito", sans-serif;
}

.search-page .bike-terms-prose ul.bike-terms-nested {
  list-style: disc;
  margin-left: 1.75em;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .search-page .bike-terms-dialog {
    margin: 4vh auto 0;
    width: calc(100% - 20px);
  }
}

@media (max-width: 768px) {
  .search-page .search-hero .section-title h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .search-page .search-hero .section-title h2 {
    font-size: 18px;
  }
}

@media (min-width: 1200px) {
  .search-page .search-layout {
    align-items: flex-start;
    gap: 6px;
    min-height: 0;
  }

  .search-page .search-results-panel {
    flex: 1;
    min-width: 0;
    margin-left: 0;
    width: 100%;
  }

  .search-page .search-results-scroll {
    min-height: 0;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }
}

@media (max-width: 1199px) {
  .search-page .search-layout {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .search-page .search-filter-resize-handle {
    display: none;
  }

  .search-page .search-layout-wrap {
    /* padding: 0 clamp(10px, 3.5vw, 18px); */
    box-sizing: border-box;
  }

  /* Fluid columns: avoids intrinsic-width blowout when align-items was flex-start */
  .search-page .bike-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 272px), 1fr));
    gap: clamp(12px, 2.5vw, 18px);
  }

  .search-page .search-quick-card {
    margin: 0;
  }

  .search-page .search-filter-card.search-filter-drawer {
    position: static;
    top: auto;
    align-self: stretch;
    flex: 0 0 auto;
    flex-basis: auto;
    width: 100%;
    max-width: none;
    min-width: 0;
    order: -1;
    opacity: 1;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 12px;
    border: 1px solid #edf0f5;
    pointer-events: auto;
  }

  .search-page .search-results-scroll {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 991px) {
  .search-page .sort-row {
    gap: 6px;
  }

  .search-page .search-sort-select {
    font-size: 12px;
    max-width: min(220px, 50vw);
  }

  .search-page .mode-chips {
    gap: 8px;
  }

  .search-page .chip {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (max-width: 767px) {
  .search-page .bike-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 72px;
  }

  .search-page .bike-card img {
    object-fit: contain;
    object-position: center;
    background: #f0f4f8;
  }

  .search-page .bike-sold-out-stamp {
    padding: 8px 16px;
    transform: rotate(-22deg) scale(0.82);
  }

  .search-page .price-row strong {
    flex: 0 1 auto;
    max-width: 100%;
  }

  .search-page .search-sort-select {
    font-size: 11px;
    min-width: min(160px, 55vw);
    max-width: 100%;
  }

  .search-page .sort-field-label {
    font-size: 11px;
  }

  .search-page .mode-chips {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 6px;
  }

  .search-page .chip {
    width: auto;
    align-self: flex-start;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .search-page .search-toolbar-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .search-page .result-note {
    flex: 1 1 100%;
    padding-left: 0;
    text-align: left;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    font-size: 9px;
  }
}

@media (max-width: 991px) {
  .search-page .bike-card img {
    height: 138px;
  }

  .search-page .search-quick-card .filter-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-page .search-quick-card .filter-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-page .search-quick-row .quick-search-btn {
    align-self: center;
  }
}

@media (max-width: 575px) {
  .search-page .search-hero {
    padding-top: 38px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .search-page .search-hero .section-title h2 {
    font-size: 18px;
  }

  .search-page section.search-quick {
    padding-left: 12px;
    padding-right: 12px;
  }

  .search-page .search-results {
    padding-top: 0;
    padding-bottom: 8px;
  }

  .search-page section.search-results {
    padding-top: 0;
    padding-bottom: 8px;
  }

  .search-page .search-layout-wrap {
    padding: 0 12px;
    box-sizing: border-box;
  }

  .search-page .search-quick-card {
    padding: 10px 12px 11px;
    border-radius: 12px;
    margin: 0;
  }

  .search-page .search-quick-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .search-page .search-quick-card .filter-grid-three {
    grid-template-columns: 1fr;
  }

  .search-page .search-quick-card .filter-grid-two {
    grid-template-columns: 1fr;
  }

  .search-page .search-quick-row {
    flex-direction: column;
    align-items: center;
  }

  .search-page .search-quick-row .filter-grid-three {
    align-self: stretch;
  }

  .search-page .search-quick-row .filter-grid-two {
    align-self: stretch;
  }

  .search-page .search-quick-row .quick-search-btn {
    width: auto;
    min-width: 160px;
    align-self: center;
  }

  .search-page .search-filter-card {
    padding: 14px;
  }

  .search-page .search-results-scroll {
    padding: 8px 0 8px;
  }

  .search-page .search-filter-card h3 {
    font-size: 16px;
  }

  .search-page .search-filter-drawer-header h3 {
    font-size: 16px;
  }

  .search-page .search-quick-card label:not(.gd-filter-dd__check),
  .search-page .filter-grid-two label,
  .search-page .filter-grid-three label:not(.gd-filter-dd__check),
  .search-page .filter-grid-single label {
    font-size: 12px;
  }

  .search-page .search-sort-select {
    font-size: 12px;
  }

  .search-page .sort-field-label {
    font-size: 12px;
  }

  .search-page .chip {
    font-size: 11px;
    padding: 4px 10px;
  }

  .search-page .filter-block h4 {
    font-size: 15px;
  }

  .search-page .bike-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 88px;
  }

  .search-page .bike-card {
    padding: 8px 10px 10px;
  }

  .search-page .bike-card img {
    height: 132px;
  }

  .search-page .bike-desc {
    font-size: 14px;
    line-height: 1.62;
  }

  .search-page .bike-specs {
    font-size: 13px;
  }

  .search-page .bike-specs th,
  .search-page .bike-specs td {
    padding: 8px 11px;
  }

  .search-page .bike-desc-detail {
    font-size: 13px;
    line-height: 1.62;
  }

  .search-page .pickup-branch {
    line-height: 1.62;
  }

  .search-page .bike-availability {
    padding: 12px 13px;
    gap: 14px;
  }

  .search-page .bike-availability .pickup-branch {
    font-size: 14px;
  }

  .search-page .price-row {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .search-page .price-row strong {
    font-size: 18px;
    padding: 6px 11px;
    min-width: 0;
  }

  .search-page .bike-card--sold-out .price-row strong {
    font-size: 17px;
    padding: 5px 10px;
  }

  .search-page .book-btn {
    margin-left: auto;
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* Search booking chat */
.booking-chat-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  /* Above page chrome; .scroll-top is z-index 99999 */
  z-index: 100000;
}

.booking-chat-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  width: min(980px, calc(100vw - 32px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
  max-height: min(92vh, calc(100vh - 32px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
  max-height: min(92vh, calc(100dvh - 32px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(2, 18, 46, 0.22);
  border: 1px solid #e8eff8;
  z-index: 100010;
  overflow: hidden;
}

/* ---- Header (white, clean) ---- */
.booking-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 18px 18px 0 0;
  border-bottom: 1px solid #edf2f8;
}

.booking-chat-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-chat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #FF6600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.booking-chat-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.booking-chat-header h4 {
  margin: 0;
  font-size: 16px;
  color: #1e293b;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.bc-title-orange {
  color: #FF6600;
}

.booking-chat-sub {
  margin: 0;
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.5px;
}

.bc-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
}

.booking-chat-close {
  width: 32px;
  height: 32px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  font-size: 20px;
  border-radius: 999px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.booking-chat-close:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* ---- Body (scrollable area) ---- */
.booking-chat-body {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 12px;
  min-height: 0;
  padding: 14px;
}

.booking-chat-conversation {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

/* Form is a flex child: min-width:0 so the inner grid can shrink on narrow viewports */
.booking-chat-conversation .booking-chat-input-row {
  min-width: 0;
  align-self: stretch;
}

/* ---- Vehicle info card ---- */
.booking-chat-vehicle-card {
  margin: 0;
  width: 100%;
  min-width: 0;
  align-self: flex-start;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 8px 24px rgba(15, 86, 170, 0.08);
  position: sticky;
  top: 0;
}

.bcvc-layout {
  display: block;
  padding: 14px 16px;
}

.bcvc-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.bcvc-image-wrap {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dce8f6;
  background: #f7fbff;
}

.bcvc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bcvc-image-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F56AA;
  font-size: 30px;
  background: linear-gradient(180deg, #f4f9ff 0%, #ebf4ff 100%);
}

.bcvc-title-wrap {
  padding: 0 2px;
}

.bcvc-info {
  padding-top: 0;
}

.bcvc-model {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  color: #243041;
  font-family: "Nunito", sans-serif;
}

.bcvc-brand {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #5b6b84;
  font-family: "Nunito", sans-serif;
}

.bcvc-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bcvc-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  line-height: 1.5;
}

.bcvc-label {
  color: #0F56AA;
  font-weight: 700;
}

.bcvc-value {
  color: #4a5b73;
  font-weight: 500;
}

/* ---- Progress bar ---- */
.booking-chat-progress {
  display: none;
}

.booking-chat-progress-bar {
  display: none;
}

/* ---- Messages ---- */
.booking-chat-messages {
  padding: 0 0 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.booking-chat-messages::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.booking-chat-msg {
  max-width: calc(100% - 44px);
  padding: 11px 16px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.55;
  font-family: "Nunito", sans-serif;
  position: relative;
}

.booking-chat-msg.bot {
  background: #ffffff;
  color: #1e293b;
  align-self: flex-start;
  border: 1px solid #dfe8f4;
  box-shadow: 0 8px 20px rgba(15, 86, 170, 0.08);
  margin-left: 42px;
}

.booking-chat-msg.bot::before {
  content: "\f544";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: -40px;
  top: 8px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #0F56AA, #1d67c7);
  box-shadow: 0 8px 18px rgba(15, 86, 170, 0.22);
  font-size: 14px;
}

.booking-chat-msg.user {
  background: #0F56AA;
  color: #fff;
  align-self: flex-end;
  box-shadow: 0 10px 24px rgba(15, 86, 170, 0.2);
  margin-right: 42px;
}

.booking-chat-msg.user::after {
  content: "\f007";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -40px;
  top: 8px;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #ff7a1a, #ff6600);
  box-shadow: 0 8px 18px rgba(255, 102, 0, 0.24);
  font-size: 14px;
}

/* ---- Quick options ---- */
.booking-chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 14px 10px;
}

.booking-chat-option {
  border: 1px solid #c6dbf6;
  border-radius: 999px;
  background: #f4f9ff;
  color: #0F56AA;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.booking-chat-option:hover {
  background: #e7f1ff;
  border-color: #0F56AA;
}

/* ---- Input row (grid: fluid pill field + auto-width Send — reliable on mobile Safari) ---- */
.booking-chat-input-row {
  border-top: 1px solid #edf2f8;
  padding: 12px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0;
}

.booking-chat-input-row input {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid #d2deed;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  font-family: "Nunito", sans-serif;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.booking-chat-input-row input:focus {
  border-color: #0F56AA;
}

.booking-chat-input-row input:disabled {
  background: #f3f6fb;
  border-color: #dbe5f2;
  color: #94a3b8;
  cursor: not-allowed;
}

.booking-chat-input-row input:disabled::placeholder {
  color: #94a3b8;
}

.booking-chat-input-row button {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  min-width: 4.5rem;
  min-height: 42px;
  box-sizing: border-box;
  background: #FF6600;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.booking-chat-input-row button:hover {
  background: #e55b00;
}

.booking-chat-input-row button:disabled,
.booking-chat-input-row button:disabled:hover {
  background: #cbd5e1;
  color: #f8fafc;
  cursor: not-allowed;
  box-shadow: none;
}

.booking-chat-send-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: booking-chat-send-spin 0.65s linear infinite;
  flex-shrink: 0;
}

.booking-chat-input-row button:disabled .booking-chat-send-spinner {
  border-color: rgba(15, 86, 170, 0.22);
  border-top-color: #0F56AA;
}

@keyframes booking-chat-send-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---- Confirmation card ---- */
.booking-chat-confirmed {
  border: 1px solid #cae2fb;
  background: linear-gradient(180deg, #eef7ff 0%, #f8fcff 100%);
  border-radius: 12px;
  padding: 12px;
}

.booking-chat-confirmed h5 {
  margin: 0 0 8px;
  color: #0F56AA;
  font-size: 16px;
}

.booking-chat-confirmed p {
  margin: 0 0 4px;
  font-size: 13px;
  color: #1e293b;
}

/* Narrow viewports: tighter header + message chrome (applies to stacked and two-column) */
@media (max-width: 767px) {
  .booking-chat-header {
    padding: 12px;
    gap: 8px;
  }

  .booking-chat-header h4 {
    font-size: 15px;
  }

  .booking-chat-msg {
    max-width: calc(100% - 36px);
    font-size: 13px;
  }

  .booking-chat-msg.bot {
    margin-left: 34px;
  }

  .booking-chat-msg.bot::before {
    left: -32px;
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .booking-chat-msg.user {
    margin-right: 34px;
  }

  .booking-chat-msg.user::after {
    right: -32px;
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .booking-chat-input-row {
    padding: 12px 14px 0;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  /* Prevents iOS zooming the field (which feels like “layout broke”) */
  .booking-chat-input-row input {
    font-size: 16px;
  }

  .booking-chat-input-row button {
    min-width: 7.5rem;
    padding: 12px 22px;
    min-height: 44px;
  }
}

/*
 * Phone-only (max 575px): vehicle card stacked above chat; fixed thumbnail size.
 * From 576px: tablet/desktop two-column layout (.booking-chat-body default grid).
 */
@media (max-width: 575px) {
  .booking-chat-window {
    width: min(100%, calc(100vw - 24px - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px)));
    max-height: min(90vh, calc(100vh - 24px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
    max-height: min(90vh, calc(100dvh - 24px - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px)));
  }

  .booking-chat-body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
    min-height: 0;
  }

  .booking-chat-vehicle-card {
    width: 100%;
    min-width: 0;
    position: static;
  }

  .booking-chat-conversation {
    flex: 1 1 auto;
    min-height: 0;
  }

  .bcvc-layout {
    padding: 12px 12px 10px;
  }

  .bcvc-left {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
  }

  .bcvc-image-wrap {
    width: 104px;
    min-width: 104px;
    max-width: 104px;
    height: 78px;
    flex-shrink: 0;
    border-radius: 10px;
  }

  .bcvc-title-wrap {
    flex: 1;
    min-width: 0;
    align-self: center;
  }

  .bcvc-model {
    font-size: 17px;
  }

  .bcvc-row {
    grid-template-columns: minmax(72px, 38%) minmax(0, 1fr);
    font-size: 13px;
    gap: 8px;
  }
}