/*
Theme Name: GoCar
Theme URL: 
Author: TemplatesJungle
Author URL: https://templatesjungle.com/
Description: GoCar is a Free Bootstrap Website Template for Car Rental by TemplatesJungle.
Version: 1.0
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/


/** Base Styles
--------------------------------------------------------------*/
:root {
  --accent-color: #feac15;
  --secondary-color: #79A6DE;
  --dark-color: #222222;
  --white-color: #FFFFFF;
  --body-text-color: #414141;
  --light-text-color: #686868;
  --link-color: #feac15;
  --background-color: #F9F9F9;
}

/* Fonts */
:root {
  --body-font: 'Inter', sans-serif;
  --heading-font: 'Exo 2', sans-serif;
  --sub-heading-font: 'Inter', sans-serif;
}


/*  General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
}

/** Typography
    --------------------------------------------------------------*/
body {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6em;
  letter-spacing: 0.02em;
  color: var(--light-text-color);
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--dark-color);

}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--sub-heading-font);
  font-weight: 700;
  color: var(--body-text-color);

}

h1,
.h1 {
  font-size: 3.938rem;
  text-transform: uppercase;
}

/* Override Bootstrap display classes to use our heading font */
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: var(--heading-font) !important;
  font-weight: 700;
}

h2,
.h2 {
  font-size: 2.875rem;
  text-transform: uppercase;
}

h3,
.h3 {
  font-size: 2.25rem;
  text-transform: capitalize;

}

h4,
.h4 {
  font-family: var(--sub-heading-font);
  font-weight: 700;
  color: var(--body-text-color);
  font-size: 1.688rem;
  text-transform: capitalize;
}

h5,
.h5 {
  font-size: 1rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;

}

.text-primary {
  color: var(--accent-color) !important;
}

p {
  font-family: var(--body-font);
  color: var(--light-text-color);
}

hr {
  color: #E4E4E4;
  opacity: 100;
}


a {
  font-family: var(--body-font);
  color: var(--dark-color);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

@media only screen and (max-width: 768px) {

  h1,
  .h1 {
    font-size: 3rem;
  }

  h2,
  .h2 {
    font-size: 2.3rem;
  }

  h3,
  .h3 {
    font-size: 1.7rem;
  }

  h4,
  .h4 {
    font-size: 1.3rem;
  }

}


/* bootstrap button override  
--------------------------------------------------------------*/
.btn {
  --bs-btn-font-size: 1rem;
  letter-spacing: 0.1em;
  transition: 0.3s ease-in;
}

.btn-primary {
  text-transform: uppercase;
  --bs-btn-font-weight: 700;
  --bs-btn-font-family: var(--body-font);
  --bs-btn-padding-x: 1.25rem;
  --bs-btn-padding-y: 0.938rem;
  --bs-btn-color: var(--white-color);
  --bs-btn-bg: var(--dark-color);
  --bs-btn-border-color: var(--dark-color);
  --bs-btn-hover-color: var(--white-color);
  --bs-btn-hover-bg: var(--accent-color);
  --bs-btn-hover-border-color: var(--accent-color);
  --bs-btn-active-color: var(--white-color);
  --bs-btn-active-bg: var(--accent-color);
  --bs-btn-active-border-color: var(--accent-color);
}

.btn-outline-primary {
  border: 2px solid var(--accent-color);
  --bs-btn-color: var(--body-text-color);
  --bs-btn-border-color: var(--accent-color);
  --bs-btn-hover-color: var(--white-color);
  --bs-btn-hover-bg: var(--accent-color);
  --bs-btn-hover-border-color: var(--accent-color);
  --bs-btn-active-color: var(--white-color);
  --bs-btn-active-bg: var(--accent-color);
  --bs-btn-active-border-color: var(--accent-color);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
  color: var(--white-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}


/* offcanvas styling */
.btn-close {
  --bs-btn-close-focus-shadow: none;
}


/*--------------------------------------------------------------
Index page style start
--------------------------------------------------------------*/



/*---- navigation section style start ----*/

nav.navbar {
  background: var(--white-color);
  z-index: 9999999;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  z-index: 9999999;
}

.site-logo {
  height: 80px !important;
  width: auto;
  transition: height 0.3s ease;
}

body:not(.home-page) .site-header {
  min-height: 100px;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

@media only screen and (min-width: 992px) {
  body.home-page .site-header.home-hero-nav {
    background: transparent;
    min-height: 130px;
    transition: background-color 0.3s ease, min-height 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
  }

  body.home-page .site-header.home-hero-nav .site-logo {
    height: 150px !important;
    width: auto;
    transition: height 0.3s ease;
  }

  body.home-page .site-header.home-hero-nav .nav-link,
  body.home-page .site-header.home-hero-nav .nav-button,
  body.home-page .site-header.home-hero-nav #userDropdown {
    color: #ffffff;
    font-size: calc(1rem + 5px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: color 0.3s ease, font-size 0.3s ease;
  }

  body.home-page .site-header.home-hero-nav .btn-outline-primary {
    --bs-btn-color: #ffffff;
    --bs-btn-border-color: rgba(255, 255, 255, 0.8);
    --bs-btn-hover-color: #222222;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #ffffff;
  }

  body.home-page .site-header.home-hero-nav.is-scrolled {
    background: rgba(255, 255, 255, 0.9);
    min-height: 100px;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }

  body.home-page .site-header.home-hero-nav.is-scrolled .site-logo {
    height: 80px !important;
  }

  body.home-page .site-header.home-hero-nav.is-scrolled .nav-link,
  body.home-page .site-header.home-hero-nav.is-scrolled .nav-button,
  body.home-page .site-header.home-hero-nav.is-scrolled #userDropdown {
    color: var(--body-text-color);
    font-size: 1rem;
    text-shadow: none;
  }

  body.home-page .site-header.home-hero-nav.is-scrolled .btn-outline-primary {
    --bs-btn-color: var(--body-text-color);
    --bs-btn-border-color: var(--accent-color);
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: var(--accent-color);
    --bs-btn-hover-border-color: var(--accent-color);
  }
}

a.nav-link,
.nav-button {
  color: var(--body-text-color);
  font-size: 1rem;
  font-family: var(--body-font);
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

a.nav-link::after {
  content: "";
  text-align: center;
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s;
}

a.nav-link.active::after,
a.nav-link:focus::after,
a.nav-link:hover::after {
  width: 100%;
  transition: width 0.3s;
}


/* dropdown */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0em;
  vertical-align: 0em;
  content: "";
  border: none;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--body-text-color);
  text-decoration: none;
  background-color: var(--background-color);
}

/* modal  */
.modal-header {
  border-bottom: none;
}

/*---- hero section style start ----*/
section#hero {
  background: var(--background-color);
}

.hero-content {
  padding: 200px 0px;
}

.hero-paragraph {
  font-size: 1.313rem;
}

.pattern-overlay.pattern-right {
  right: 0px;
  bottom: 0px;
}

.pattern-overlay.pattern-left {
  bottom: 0px;
}


@media only screen and (max-width: 992px) {
  .pattern-overlay.pattern-right {
    display: none;

  }

}

@media only screen and (max-width: 768px) {
  .hero-paragraph {
    font-size: 1rem;
  }
}




/*---- search section style start ----*/
.search-block {
  background: #FFFFFF;
  border: 1px solid #FAFAFA;
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
  border-radius: 9px;
  position: absolute;
  margin-top: -135px;
  left: 0;
  right: 0;
}

iconify-icon.search-icons {
  color: #B8B8B8;
  font-size: 20px;
}

.label-style {
  color: var(--body-text-color);
}

.input-group-text {
  border: none;
  background: transparent;
}

.form-control {
  border: 1px solid #E1E1E1;
  border-radius: 4px !important;
  color: var(--body-text-color);
}

.form-control:focus {
  border-color: var(--light-text-color);
  box-shadow: none;
  color: var(--body-text-color);
}

.process-content {
  margin-top: 260px;
}

.search-icon-position {
  right: 0;
}

#search #searchForm .input-group {
  position: relative;
}

#search #searchForm .search-icon-position {
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 !important;
  pointer-events: none;
  z-index: 3;
}

#search #searchForm .form-control,
#search #searchForm .form-select {
  padding-right: 2.75rem !important;
}

#search #searchForm select.form-select {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (min-width: 1200px) {
  #search #searchForm .search-col-wide {
    flex: 0 0 20%;
    max-width: 20%;
  }

  #search #searchForm .search-col-regular {
    flex: 0 0 15%;
    max-width: 15%;
  }
}

@media only screen and (max-width: 992px) {
  .search-block {
    position: static;
    margin-top: 0;
  }

}




/*---- process section style start ----*/

.process-block {
  margin-top: -54px;
}

.bullet {
  z-index: 1;
  position: v absolute;
  background: #D3EB9F;
  width: 25px;
  height: 25px;
  border-radius: 100%;
  transition: 0.3s ease;
}

.bullet:hover {
  background: var(--accent-color);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 12px #D3EB9F;
  border-radius: 15px;
}

@media only screen and (max-width: 990px) {
  .progress-line {
    display: none;
  }
}




/*---- rental section style start ----*/
.swiper-button-next.rental-arrow,
.swiper-button-prev.rental-arrow {
  position: static;
  margin-top: 0;
  background: var(--accent-color);
  color: var(--white-color);
  border: 2px solid var(--accent-color);
  padding: initial;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  --swiper-navigation-size: 16px;
  font-weight: bold;
  transition: all 0.25s ease;
  box-shadow: 0 8px 18px rgba(12, 38, 63, 0.18);
}

.swiper-button-next.rental-arrow::after,
.swiper-button-prev.rental-arrow::after {
  font-weight: 700;
}

.swiper-button-next.rental-arrow:hover,
.swiper-button-prev.rental-arrow:hover {
  background: var(--white-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.rental-header {
  row-gap: 1rem;
}

.rental-swiper-ui {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin-top: -8px;
  margin-bottom: 1.75rem;
}

.rental-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.rental-swiper-pagination {
  position: static;
  width: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  margin-right: auto;
}

.rental-swiper-ui .rental-controls {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.rental-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c7d6e2;
  opacity: 1;
  margin: 0 !important;
}

.rental-swiper-pagination .swiper-pagination-bullet-active {
  background: #006195;
  transform: scale(1.12);
}

#rental .rental-swiper .swiper-slide {
  height: auto;
  display: flex;
  transition: opacity 0.35s ease;
  opacity: 0.94;
}

#rental .rental-swiper .card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#rental .rental-swiper .swiper-slide-active {
  opacity: 1;
}

#rental .rental-swiper .swiper-slide-active .card {
  box-shadow: 0 12px 30px rgba(12, 38, 63, 0.14);
}

/* ==============================
   PARALLAX DIVIDER SECTION
   ============================== */
.pacific-parallax-section {
    background-image: url('images/PACIFIC-280.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 750px;
    width: 100%;
}

/* iOS / mobile: fixed attachment no funciona bien, usar scroll */
@media (max-width: 991px) {
    .pacific-parallax-section {
        background-attachment: scroll;
        height: 480px;
    }
}

#rental .rental-card-media-link {
  display: block;
}

#rental .home-vehicle-card {
  cursor: pointer;
}

#rental .home-vehicle-detail-trigger {
  cursor: pointer;
}

.home-vehicle-modal .vehicle-detail-media {
  height: 360px;
  background: linear-gradient(135deg, #edf2f6 0%, #f7f9fb 100%);
  padding: 12px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-vehicle-modal .vehicle-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.home-vehicle-modal .vehicle-detail-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: #b7c0c8;
}

#rental .rental-card-media {
  height: 360px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(135deg, #eef2f6 0%, #dbe4ec 100%);
}

#rental .rental-card-media .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 0;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#rental .card-hover:hover img {
  transform: none;
}

.card {
  --bs-card-border-width: none;
  --bs-card-border-radius: none;
  --bs-card-inner-border-radius: none;
}

.rental-list {
  color: var(--light-text-color);
}

.rental-meta {
  gap: 6px;
  margin-bottom: 0;
  min-height: 3.9em;
  align-content: flex-start;
}

.rental-meta-item {
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
}

#rental .card-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#rental .card-body {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#rental .card-text {
  min-height: 3.9em;
}

#rental .rental-footer-row {
  margin-top: auto;
  align-items: flex-end;
  gap: 0.75rem;
}

#rental .rental-footer-row h3 {
  margin-bottom: 0;
}

.rental-price {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-transform: capitalize;
}

.rental-currency {
  font-size: 0.75rem;
  font-weight: 600;
  vertical-align: middle;
  margin-left: 2px;
}

.btn-rent-now {
  --bs-btn-padding-x: 0.85rem;
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  min-height: 46px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media only screen and (max-width: 768px) {
  .btn-rent-now {
    letter-spacing: 0.04em;
  }
}

img.card-img-top {
  border-radius: 10px;
}

@media only screen and (max-width: 1199px) {
  #rental .rental-card-media {
    height: 310px;
  }
}

@media only screen and (max-width: 990px) {
  #rental .rental-swiper .swiper-slide {
    opacity: 1;
  }

  #rental .rental-swiper .swiper-slide-active {
    transform: none;
  }

  #rental .rental-card-media {
    height: 270px;
  }

  .rental-list.display-small {
    display: none;
  }

  .rental-header {
    justify-content: center !important;
  }

  .rental-header h2 {
    text-align: center;
    width: 100%;
  }

  .rental-controls {
    justify-content: center;
  }

  .rental-swiper-ui {
    justify-content: center;
    flex-direction: column;
    gap: 0.9rem;
  }

  .rental-swiper-ui .rental-controls {
    position: static;
    transform: none;
  }

  #rental .card-title {
    white-space: normal;
  }
}


/*---- testimonial section style start ----*/
section#testimonial {
  background: var(--background-color);
}

.testimonial-icon {
  font-size: 127px;
  color: var(--accent-color);
}

.testimonial-paragraph {
  font-size: 31px;
  line-height: 146%;
}

@media only screen and (max-width: 768px) {
  .testimonial-icon {
    font-size: 100px;
    color: var(--accent-color);
  }

  .testimonial-paragraph {
    font-size: 20px;
    line-height: 146%;
  }
}


/* swiper overide 
--------------------------------------------------------------*/
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  position: unset;
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, var(--accent-color));

}





/*---- pricing section style start ----*/
.pricing-lable {
  background: #EDF3E0;
  border-radius: 10px;
  overflow: hidden;
  height: 580px;
}


iconify-icon.pricing-lable-icon {
  color: #E2EEC9;
  font-size: 400px;
}

.pricing-detail {
  border: 1px solid #E4E4E4;
  border-radius: 10px;
  height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-recommend {
  color: var(--accent-color);
}

.label-color {
  color: var(--accent-color);
}

label#monthly-label,
label#yearly-label {
  cursor: pointer;
}


/* switch button style */
.form-switch .form-check-input {
  width: 4em;
  background-color: #D3EB9F;

  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input {
  height: 2em;
}

.form-check-input:focus {
  border-color: #D3EB9F;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: #D3EB9F;
  border-color: #D3EB9F;
}

.form-check-input {
  border: var(--bs-border-width) solid #D3EB9F;
}

.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-color: #D3EB9F;

}




/*---- services section style start ----*/
section#services {
  background: var(--background-color);
}

.services-components {
  background: var(--white-color);
  border: 1px solid #FAFAFA;
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
  border-radius: 9px;
  width: 100%;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.services-sub .row > [class*="col-"] {
  display: flex;
}

.services-icon {
  font-size: 45px;
  color: var(--accent-color);
}

.services-sub {
  margin-top: -150px;
}




/*---- faq section style start ----*/

/* accordian style override  */
.accordion-button {
  font-family: var(--sub-heading-font);
  font-weight: 700;
  color: var(--body-text-color);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.09em;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--body-text-color);
  background-color: var(--grey-color);
}

.accordion {
  --bs-accordion-border-color: none;
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-btn-icon: url('https://api.iconify.design/mdi/plus.svg');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/mdi/minus.svg');
}




/*---- blog section style start ----*/
a.blog-title {
  font-family: var(--sub-heading-font);
  font-weight: 700;
  color: var(--body-text-color);
  font-size: 1.688rem;
  text-transform: capitalize;
  transition: all 0.5s ease-in;
}

a.blog-title:hover {
  color: var(--accent-color);
  text-decoration: none;
}



/*---- call-to-action section style start ----*/
section#action {
  background: var(--background-color);
}




/*---- footer section style start ----*/
.social-link-icon {
  font-size: 24px;
}

.social-link-icon.active {
  color: var(--accent-color);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
}


/*--------------------------------------------------------------
Blog Page style start
--------------------------------------------------------------*/
.blog-title:hover {
  color: var(--accent-color);
}

.pagination {
  --bs-pagination-active-bg: var(--bs-black);
  --bs-pagination-active-border-color: var(--bs-gray-dark);
  --bs-pagination-color: var(--body-text-color);
}


/*--------------------------------------------------------------
Reviews Page style start
--------------------------------------------------------------*/
.reviews-components {
  border: 2px solid #FAFAFA;
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
  border-radius: 9px;
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--accent-color);
}

.rate {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
Properties-single page style start
--------------------------------------------------------------*/
iconify-icon.property-icon {
  color: var(--body-text-color);
  font-size: 30px;

}

/*--------------------------------------------------------------
Animaciones Personalizadas - Custom Animations
--------------------------------------------------------------*/

/* Hero section animations */
.hero-title {
  animation: none;
  transform: none;
}

.hero-subtitle {
  animation: subtitleFade 4s ease-in-out 0.5s forwards;
}

@keyframes heroTitleFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes subtitleFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card hover animations */
.card-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-hover:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.card-hover:hover img {
  transform: scale(1.08);
}

.card-hover img {
  transition: transform 0.5s ease-in-out;
}

/* Service items hover */
.service-item-hover {
  padding: 20px;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.service-item-hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.service-item-hover:hover::before {
  left: 100%;
}

.service-item-hover:hover {
  background: rgba(244, 168, 21, 0.05);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(244, 168, 21, 0.15);
}

.service-item-hover:hover .services-icon {
  animation: iconBounce 0.6s ease-in-out;
  color: var(--accent-color);
}

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pricing card animations */
.pricing-card {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 2px solid #f0f0f0;
  border-radius: 15px;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(244, 168, 21, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(244, 168, 21, 0.25);
  border-color: var(--accent-color);
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card h5 {
  transition: color 0.3s ease;
}

.pricing-card:hover h5 {
  color: var(--accent-color);
}

/* Button animations */
.btn-primary {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus animations for form elements */
.form-control:focus,
.form-select:focus {
  animation: focusIn 0.3s ease;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(244, 168, 21, 0.25);
}

@keyframes focusIn {
  from {
    box-shadow: 0 0 0 0 rgba(244, 168, 21, 0.25);
  }
  to {
    box-shadow: 0 0 0 0.2rem rgba(244, 168, 21, 0.25);
  }
}

/* Search block animation */
.search-block {
  animation: slideInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(244, 168, 21, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Progress line animation */
.progress-line {
  animation: lineExpand 1s ease-in-out forwards;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border: none;
  height: 2px;
}

@keyframes lineExpand {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Testimonial animations */
.testimonial-paragraph {
  animation: textFlow 1.5s ease-in-out;
}

@keyframes textFlow {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media only screen and (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1400px;
  }
}

.search-results-page .search-results-layout {
  align-items: flex-start;
}

.search-results-page .search-results-toolbar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1rem;
}

.search-results-page .search-results-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  align-self: flex-start;
}

.search-results-page .search-results-filter-card {
  min-width: 260px;
  max-width: 340px;
  margin-left: auto;
  border: 1px solid rgba(0, 97, 149, 0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(12, 38, 63, 0.08);
}

.search-results-page .search-results-filter-card .card-header,
.search-results-page .search-results-filter-card .card-body {
  padding: 0.85rem 1rem;
}

.search-results-page .search-results-sidebar {
  position: sticky;
  top: 112px;
}

.search-results-page .vehicle-result-col {
  display: flex;
}

.search-results-page .vehicle-card {
  width: 100%;
  border: 1px solid rgba(0, 97, 149, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 38, 63, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.search-results-page .vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 38, 63, 0.14);
}

.search-results-page .vehicle-card-media {
  height: 232px;
  background: linear-gradient(135deg, #dfe8ef 0%, #eef3f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.search-results-page .vehicle-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.search-results-page .vehicle-card-body {
  padding: 1.15rem 1rem 1rem;
}

.search-results-page .vehicle-title {
  min-height: 2.8em;
  margin-bottom: 0.4rem;
}

.search-results-page .vehicle-meta {
  min-height: 2.2em;
}

.search-results-page .vehicle-features {
  min-height: 78px;
}

.search-results-page .vehicle-price-block {
  min-height: 108px;
}

.search-results-page .vehicle-detail-media {
  height: 360px;
  background: linear-gradient(135deg, #edf2f6 0%, #f7f9fb 100%);
  padding: 12px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-results-page .vehicle-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.search-results-page .vehicle-detail-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: #b7c0c8;
}

@media only screen and (max-width: 1199px) {
  .search-results-page .search-results-toolbar {
    flex-wrap: wrap;
  }

  .search-results-page .search-results-filter-card {
    max-width: 100%;
  }

  .search-results-page .search-results-sidebar {
    position: static;
  }
}

@media only screen and (max-width: 991px) {
  .search-results-page .search-results-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .search-results-page .search-results-filter-card {
    min-width: 0;
    width: 100%;
    margin-left: 0;
  }

  .search-results-page .vehicle-card-media {
    height: 220px;
  }

  .search-results-page .vehicle-detail-media {
    height: 300px;
  }
}

@media only screen and (max-width: 767px) {
  .search-results-page .vehicle-card-media {
    height: 210px;
  }

  .search-results-page .vehicle-card-body {
    padding: 1rem 0.95rem 0.95rem;
  }

  .search-results-page .vehicle-detail-media {
    height: 240px;
    padding: 10px;
  }
}

/* Parallax effect subtle */
.hero-section {
  position: relative;
}

.hero-section::before {
  animation: parallaxBg 0.5s ease;
}

@keyframes parallaxBg {
  from {
    background-position: 0 100px;
  }
  to {
    background-position: 0 0;
  }
}

/* Accordion animations */
.accordion-button {
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(244, 168, 21, 0.1);
  color: var(--accent-color);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(244, 168, 21, 0.25);
  border-color: var(--accent-color);
}

/* Loading pulse animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Text gradient animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.gradient-text {
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--accent-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

/*--------------------------------------------------------------
Datepicker Custom Styling - Diseño Moderno
--------------------------------------------------------------*/

/* Contenedor del datepicker */
.datepicker {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 15px;
  z-index: 1050 !important;
}

/* Tabla del calendario */
.datepicker table {
  width: 100%;
  border-collapse: collapse;
}

/* Header del datepicker con navegación */
.datepicker-days .datepicker-header,
.datepicker-months .datepicker-header,
.datepicker-years .datepicker-header {
  background: linear-gradient(135deg, var(--accent-color) 0%, #ffc947 100%);
  color: white;
  padding: 15px;
  border-radius: 8px 8px 0 0;
  font-weight: bold;
}

.datepicker table thead tr:first-child th {
  background: #f8f9fa;
  padding: 10px 5px;
  font-weight: 600;
  color: var(--body-text-color);
  border-bottom: 2px solid #e0e0e0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Días del mes */
.datepicker table tbody td {
  padding: 8px 5px;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: var(--body-text-color);
  border-radius: 6px;
  margin: 2px;
}

.datepicker table tbody td.day {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.datepicker table tbody td.day:hover:not(.disabled) {
  background: rgba(244, 168, 21, 0.15);
  color: var(--accent-color);
  font-weight: 600;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(244, 168, 21, 0.2);
}

/* Día actual (hoy) */
.datepicker table tbody td.today {
  background: rgba(244, 168, 21, 0.2);
  color: var(--accent-color);
  font-weight: bold;
  border: 2px solid var(--accent-color);
}

/* Día seleccionado */
.datepicker table tbody td.active {
  background: linear-gradient(135deg, var(--accent-color), #ffc947);
  color: white;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(244, 168, 21, 0.35);
  transform: scale(1.1);
}

.datepicker table tbody td.active:hover {
  background: linear-gradient(135deg, #f29c1f, #ffc947);
  box-shadow: 0 6px 20px rgba(244, 168, 21, 0.45);
}

/* Días deshabilitados */
.datepicker table tbody td.disabled {
  color: #ccc;
  cursor: not-allowed;
  background: #f5f5f5;
}

/* Días fuera del mes */
.datepicker table tbody td.old,
.datepicker table tbody td.new {
  color: #d0d0d0;
  background: #fafafa;
}

/* Navegación del datepicker */
.datepicker-switch {
  background: #f0f0f0;
  color: var(--dark-color);
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.datepicker-switch:hover {
  background: rgba(244, 168, 21, 0.15);
  color: var(--accent-color);
}

/* Botones de navegación (anterior/siguiente) */
.prev, .next {
  color: var(--accent-color);
  font-weight: bold;
  padding: 6px 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev:hover, .next:hover {
  background: rgba(244, 168, 21, 0.2);
  transform: scale(1.15);
  box-shadow: 0 3px 10px rgba(244, 168, 21, 0.25);
}

.prev:active, .next:active {
  transform: scale(0.95);
}

/* Dos meses lado a lado */
.datepicker.datepicker-inline {
  width: auto !important;
}

.input-daterange {
  display: flex;
  gap: 15px;
  align-items: center;
}

.input-daterange .input-group {
  flex: 1;
}

/* Estilos para el rango de fechas */
.datepicker table tbody td.range {
  background: rgba(121, 166, 222, 0.1);
  color: var(--secondary-color);
}

.datepicker table tbody td.range.range-start,
.datepicker table tbody td.range.range-end {
  background: var(--secondary-color);
  color: white;
  border-radius: 8px;
}

/* Animaciones para entrada del datepicker */
.datepicker {
  animation: datepickerSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes datepickerSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Input focus para fecha */
#pickup_date:focus,
#dropoff_date:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 0.3rem rgba(244, 168, 21, 0.15) !important;
}

/* Estilos para branch_id select */
#branch_id {
  transition: all 0.3s ease;
}

#branch_id:focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 0.3rem rgba(244, 168, 21, 0.15) !important;
}