:root {
  --bs-link-color: linear-gradient(to right, #f8d22e, #ffa929) !important;
  --bs-link-hover-color: linear-gradient(to right, #d9b124, #e58b1f) !important; 
  --bs-nav-link-hover-color: #f5c000 !important;
  --bs-primary: #f5c000;
}

.banner-bg {
    background-image: url('/assets/images/bg/bg-globtour.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 1rem 5rem;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
  }


.g-btn {
  background: linear-gradient(to right, #f9ec31, #faaf40);
  color: black;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.g-btn:hover {
  background: linear-gradient(to right, #f9e329, #fa9f30); 
  color: black;
  border: none;
}

.g-btn:active {
  background: linear-gradient(to right, #f9d319, #fa8f20); 
  color: black;
  border: none;
}

.g-btn:disabled {
  background: linear-gradient(to right, #f3e0a4, #f5c987);
  color: rgba(0, 0, 0, 0.5); 
  border: none; 
  opacity: 0.8; 
  cursor: not-allowed; 
}


.g-btn-soft {
  background: linear-gradient(to right, #fcf4c1, #fcd38a);
  color: #f1c40f;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease, color 0.3s ease;
}

.g-btn-soft:hover {
  background: linear-gradient(to right, #f9ec31, #faaf40); 
  color: black;
  border: none;
}

.g-btn-soft:active {
  background: linear-gradient(to right, #f9d319, #fa8f20);
  color: black;
  border: none;
}

.g-btn-soft:disabled {
  background: linear-gradient(to right, #f8ecd6, #f7d6b3); 
  color: rgba(0, 0, 0, 0.5); 
  border: none;
  opacity: 1;
  cursor: not-allowed; 
}

.icon-gradient-circle {
    background: linear-gradient(to right, #fedc43, #fdb931);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;  
    height: 48px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.g-tab {
    color: black !important;
    background-color: #e0e0e0 !important;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  
  .g-tab.active {
    background: -webkit-linear-gradient(left, #f9ec31, #faaf40);
    color: black !important;
    border-color: transparent !important;
  }
  
  .g-tab:hover {
    background: -webkit-linear-gradient(left, #f9e329, #fa9f30);
    color: black !important;
  }
  
  .g-tab:focus,
  .g-tab:active {
    background: -webkit-linear-gradient(left, #f9d319, #fa8f20);
    color: black !important;
  }

  .nav-link:hover {
    color: grey; 
  }

.react-select__control {
    height: auto;
    min-height: 42px;
    background-color: var(--bs-form-control-bg);
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    padding: 0 1rem;
    box-shadow: none;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.card-img {
  height: 250px !important; 
  object-fit: cover !important;
}

.news-background-photo {
  width: 100%;
  height: 50%;
  object-fit: cover;
  filter: blur(3px);
}

.react-datepicker-wrapper {
  display: block;
  width: 100%; 
  padding: 0;
  border: 0;
}

@media (max-width: 575.98px) {
  .mt-xs-n6 {
    margin-top: -10rem !important;
  }
}

@media (max-width: 767.98px) {
  .mt-sm-n12 {
    margin-top: -15rem !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .mt-md-n25 {
    margin-top: -20rem !important;
  }
}

@media (min-width: 992px) {
  .mt-lg-n20 {
    margin-top: -30rem !important;
  }
}

.custom-select-container {
  position: relative;
}

.custom-select__menu {
  z-index: 1050; 
}

.custom-select__control {
  z-index: 1; 
}

.non-selectable {
  user-select: none;
  pointer-events: none; 
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.horizontal-arrow {
  display: inline-block;
}

.vertical-arrow {
  display: none;
}

@media (max-width: 768px) {
  .horizontal-arrow {
    display: none;
  }

  .vertical-arrow {
    display: inline-block;
  }
}

.dropdown-item.active,
.dropdown-item:hover,
.dropdown-item:focus {
    color: #333333;
    background-color: rgba(255, 215, 0, 0.4); 
    text-decoration: none;
    border-radius: 0.5rem; 
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:focus {
    outline: none;
}

:root {
    --bs-dropdown-link-active-color: #333333; 
    --bs-dropdown-link-active-bg: rgba(255, 215, 0, 0.4); 
}

.dropdown-item {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.form-control:focus {
  border-color: #f5c000;
  box-shadow: 0 0 0 0.1rem rgba(245, 192, 0, 0.4);
  outline: none;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-border-transparent .form-control:focus {
  border-color: rgba(245, 192, 0, 0.7);
  box-shadow: 0 0 0 0.1rem rgba(245, 192, 0, 0.3);
  outline: none; 
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.guest-selector-dropdown {
  border: 1px solid rgba(245, 192, 0, 0.7) !important; 
  border-radius: 0.5rem !important; 
}

.form-guest-selector[aria-expanded="true"] {
  border-color: rgba(245, 192, 0, 0.7) !important;
}

.info-box {
  background: linear-gradient(to right, rgba(255, 243, 200, 1), rgba(255, 223, 150, 1)); 
  border: 1px solid rgba(255, 193, 7, 0.6); 
  border-radius: 0.5rem;
  color: #5a3e00;
  padding: 0.75rem 1rem;
  font-size: 1rem; 
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.form-check-input:checked {
  background-color: #ffcb03;
  border: #fa9f30; 
  color: black;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(249, 227, 41, 0.25); 
  outline: none;
  background-color: #ffcb03;
  border: #fa9f30; 
}

h1 > a:hover, h2 > a:hover, h3 > a:hover, h4 > a:hover, h5 > a:hover, h6 > a:hover, .h1 > a:hover, .h2 > a:hover, .h3 > a:hover, .h4 > a:hover, .h5 > a:hover, .h6 > a:hover {
    color: #fa9f30;
}


        .payment-footer {
            text-align: center;
            padding: 2em 1rem;
        }

        .bank-logo {
            display: inline-block;
            margin-bottom: 2rem;
        }

        .bank-logo img {
            height: 50px;
            width: auto;
        }

        .payment-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .payment-logo img {
            width: auto;
            opacity: 0.9;
            transition: opacity 0.2s ease;
        }

        .payment-logo img[alt="VISA"] {
            height: 30px;
        }

        .payment-logo img[alt="Maestro"] {
            height: 60px;
        }

        .payment-logo img[alt="Mastercard"] {
            height: 55px;
        }

        .payment-logo img[alt="American Express"] {
            height: 55px;
        }

        .payment-logo img[alt="Mastercard ID Check"] {
            height: 55px;
        }

        .payment-logo img[alt="VISA Secure"] {
            height: 55px;
        }

        .payment-logo img[alt="Monri"] {
            height: 45px;
        }

        .payment-logo:hover img {
            opacity: 1;
        }

        @media (max-width: 576px) {
            .payment-logos {
                gap: 1.5rem;
            }
            
            .payment-logo img[alt="VISA"] {
                height: 25px;
            }

            .payment-logo img[alt="Maestro"] {
                height: 50px;
            }

            .payment-logo img[alt="Mastercard"] {
                height: 45px;
            }

            .payment-logo img[alt="American Express"] {
                height: 40px;
            }

            .payment-logo img[alt="Mastercard ID Check"] {
                height: 45px;
            }

            .payment-logo img[alt="VISA Secure"] {
                height: 45px;
            }

            .payment-logo img[alt="Monri"] {
                height: 40px;
            }
            
            .bank-logo img {
                height: 50px;
            }
        }


.text-primary {
  color: #ffcb03 !important;
}

@media (max-width: 1199.98px) {
  .currency-language-desktop {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .currency-language-mobile {
    display: none !important;
  }
   .currency-language-desktop {
    gap: 0.5rem;
   }

   .currency-language-desktop .nav-item {
    margin: 0;
  }
  
  .currency-language-desktop .btn-link {
    background: rgba(255, 255, 255, 0.15); 
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem !important;
    margin: 0 !important;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 500;
  }
  
  .currency-language-desktop .btn-link:hover {
    background: rgba(255, 255, 255, 0.3); 
    border-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
  }
  
  .currency-language-desktop .btn-link .text-black {
    color: #333 !important;
    font-weight: 600;
  }
}


.currency-language-mobile {
  padding: 1rem 0;
  margin-top: 0.5rem;
  border-top: none; 
}

.currency-language-mobile .mobile-selector-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1rem;
}

.currency-language-mobile .mobile-selector {
  flex: 1;
  max-width: 150px;
}

.currency-language-mobile .mobile-selector-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0.5rem;
  text-align: center;
}

.currency-language-mobile .btn-mobile-selector {
  width: 100%;
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #333;
  transition: all 0.3s ease;
}

.currency-language-mobile .btn-mobile-selector:hover {
  background: linear-gradient(to right, #f9ec31, #faaf40);
  border-color: #faaf40;
}

.currency-language-mobile .btn-mobile-selector img {
  width: 20px;
  height: auto;
}

.currency-language-mobile .dropdown-menu {
  width: 100%;
  min-width: auto;
}

@media (min-width: 992px) {
  .bg-lg-transparent {
    background-color: transparent !important;
  }
  
  .rounded-lg-0 {
    border-radius: 0 !important;
  }
  
  .p-lg-0 {
    padding: 0 !important;
  }
  
  .w-lg-auto {
    width: auto !important;
  }
  
  .col-lg-5.ms-auto {
    display: flex;
    align-items: center;
    margin-top: 1rem !important;
  }
  
  .col-lg-5.ms-auto > div {
    width: auto;
    margin-left: auto;
  }
  
  .col-lg-5.ms-auto .w-lg-auto {
    margin-right: 1rem;
  }
  
  .col-lg-5.ms-auto .passenger-selector-container {
    min-width: 200px;
    max-width: 250px; 
  }
}

@media (max-width: 991.98px) {
  .col-lg-5.ms-auto {
    margin-top: 0.75rem !important;
  }
  
  .col-lg-5.ms-auto > div {
    flex-direction: row !important;
    gap: 0.75rem !important;
  }
  
  .col-lg-5.ms-auto .bg-light,
  .col-lg-5.ms-auto .passenger-selector-container {
    flex: 1; 
    width: auto !important;
  }
}

@media (max-width: 575.98px) {
  .trip-segment-card h6 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.25rem;
  }
  
  .trip-segment-card .time {
    font-size: 1.25rem;
    font-weight: 700;
  }
  
  .trip-segment-card .date {
    font-size: 0.7rem;
    color: #666;
  }
  
  .trip-segment-card .location {
    font-size: 0.65rem;
    color: #999;
  }
  
  .trip-segment-duration {
    font-size: 0.8rem;
  }
  
  .trip-segment-icon {
    width: 35px !important;
    height: 35px !important;
  }
  
  .trip-segment-icon i {
    font-size: 0.75rem;
  }
}

@media (max-width: 767.98px) {
  .search-item-departure,
  .search-item-arrival {
    flex: 0 0 auto;
    width: 35%;
  }
  
  .search-item-departure {
    text-align: left;
  }
  
  .search-item-arrival {
    text-align: right;
  }
  
  .search-item-duration {
    flex: 0 0 auto;
    width: 30%; 
  }
  
  .search-item-duration p {
    font-size: 0.7rem; 
    line-height: 1.2;
  }
  
  .search-item-duration .icon-md {
    width: 35px;
    height: 35px;
  }
  
  .search-item-duration .my-3 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .search-item-actions {
    width: 100%;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
  }
  
  .search-item-actions h4 {
    font-size: 1.5rem;
  }
  
  .search-item-actions .btn {
    font-size: 0.95rem;
  }
  
  .search-item-actions .d-flex.justify-content-between small {
    font-size: 0.75rem;
    color: #666;
    white-space: nowrap;
  }
  
  .search-item-departure h4,
  .search-item-arrival h4 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  .search-item-departure p,
  .search-item-arrival p {
    font-size: 0.75rem;
    line-height: 1.2;
  }
  
  .search-item-departure small,
  .search-item-arrival small {
    font-size: 0.65rem; 
  }
}

@media (min-width: 992px) {
  .sticky-sidebar {
    position: sticky;
    top: 80px;
    z-index: 10;
  }
}

.navbar-nav .nav-link {
  transition: background-color 0.2s ease;
  position: relative;
}

.navbar-nav .nav-link.h1 {
  font-weight: 600 !important;
  font-size: 1rem !important;
  text-shadow: 0 0 0.3px rgba(0, 0, 0, 0.2);
}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
  color: #000 !important;
  outline: none;
  box-shadow: none;
}

.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #000;
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before {
  width: 60%;
}

.navbar-nav .nav-link.dropdown-toggle::after {
  display: inline-block !important;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.navbar-nav .dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.navbar-nav .dropdown-menu .dropdown-item {
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.navbar-nav .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.navbar-nav .dropdown-menu .dropdown-item:focus,
.navbar-nav .dropdown-menu .dropdown-item:active {
  outline: none;
  box-shadow: none;
}

.navbar-nav .dropdown-menu .dropdown-item:hover,
.navbar-nav .dropdown-menu .dropdown-item:focus {
  background: rgba(249, 236, 49, 0.3);
  color: #000;
}

@media (max-width: 1199.98px) {
  .navbar-nav .nav-link::before {
    display: none;
  }
  
  .navbar-nav .nav-link {
    padding: 1rem 1.5rem;
    font-weight: 500;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus,
  .navbar-nav .nav-link:active {
    background: rgba(0, 0, 0, 0.03);
  }
  
  .navbar-nav .nav-link.dropdown-toggle::after {
    float: right;
    margin-top: 0.4em;
  }
  
  .navbar-nav .dropdown-menu {
    border: none;
    box-shadow: none;
    background: transparent;
    margin-left: 1.5rem;
    margin-top: 0.25rem;
    padding: 0;
  }
  
  .navbar-nav .dropdown-menu .dropdown-item {
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .navbar-nav .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

header.navbar-light {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-sticky {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fill-primary {
  fill: #f9ec31 !important;
}