/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #ff7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1e2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 90%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05),
    6px 4px 19px rgb(115 103 240 / 20%);
}

.select2 .dropdown-wrapper {
  display: none;
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ced4da !important;
  padding: 7px 16px;
  border-radius: 4px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: 0.3s;
}

.select2-container--default .select2-selection--single {
  border-color: #ced4da !important;
  border-width: 2px !important;
  border-radius: 0.375rem !important;
  padding: 0.375rem 0.75rem !important;
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 12px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: #f77c5a !important;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: #F57C00 !important;
  border-radius: 4px !important;
}

.select2-container:has(.select2-selection--single) {
  width: 100% !important;
}

.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: #f77c5a;
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: #f77c5a;
  background-color: #fff;
  border-radius: 5px;
  height: 100%;
}

.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: #f77c5a;
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #f5f0fc;
  border-top-color: #fff;
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid #f77c5a;
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width));
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid #f77c5a;
  display: inline-block;
  border-radius: 100%;
}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}

.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }
}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;
}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: rgb(110, 101, 101) !important;
  outline: 0 !important;
}

.select2-container--default .select2-selection--single {
  border-color: rgb(110, 101, 101) !important;
  border-width: 1px !important;
  border-radius: 5px !important;
}

.search-inner-form {
  max-width: 500px;
  width: 100%;
  margin-left: auto;
}

.input-group .input-group-text {
  border: 0;
  border-radius: 3px;
}

label.required:after {
  content: "*";
  color: #dc3545 !important;
  margin-left: 2px;
}

/* ================================
   MODERN UI ENHANCEMENTS
   Safari Aesthetics & Glowy Effects
   ================================ */

/* Smooth Shine Effect for Buttons */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.btn:hover::before {
  left: 100%;
}

/* Solid Orange Buttons with Enhanced Animations */
.btn--base {
  background: #F57C00;
  border: 1px solid #F57C00;
  box-shadow:
    0 4px 12px rgba(245, 124, 0, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--base:hover {
  background: #E67300;
  border-color: #E67300;
  box-shadow:
    0 6px 20px rgba(245, 124, 0, 0.45),
    0 0 25px rgba(245, 124, 0, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px) scale(1.02);
}

.btn--base:active {
  background: #D66A00;
  box-shadow:
    0 2px 8px rgba(245, 124, 0, 0.3),
    inset 0 2px 4px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px) scale(1);
}

/* Glowy Orange Edge for Cards */
.trip-card,
.card,
.shadow--card {
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.08),
    0 0 20px rgba(255, 107, 53, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.trip-card:hover,
.card:hover,
.shadow--card:hover {
  border-color: rgba(255, 107, 53, 0.4);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.12),
    0 0 30px rgba(255, 107, 53, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

/* Safari Glass Effect for Containers */
.section {
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  pointer-events: none;
}

/* Smooth Form Transitions */
.form-control,
.form--control,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="number"],
input[type="tel"],
textarea,
select {
  border: 1px solid #ddd !important;
  background: #ffffff !important;
  backdrop-filter: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08) !important;
  color: #333 !important;
  font-size: 16px;
  border-radius: 8px;
}

.form-control:focus,
.form--control:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: #F57C00 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.1), 0 0 8px rgba(245, 124, 0, 0.25) !important;
  outline: none;
  color: #333 !important;
}

/* Ensure inputs remain white and visible when not focused */
.form-control:not(:focus),
.form--control:not(:focus),
input[type="text"]:not(:focus),
input[type="email"]:not(:focus),
input[type="password"]:not(:focus),
input[type="date"]:not(:focus),
input[type="number"]:not(:focus),
input[type="tel"]:not(:focus),
textarea:not(:focus),
select:not(:focus) {
  background: #ffffff !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
}

/* Remove number input spinners for cleaner look */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Intelligent Placeholder Styling */
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #757575 !important;
  opacity: 1 !important;
  font-size: 15px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #757575 !important;
  opacity: 1 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #757575 !important;
  opacity: 1 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #757575 !important;
  opacity: 1 !important;
}

/* Focused placeholder becomes lighter */
input:focus::placeholder,
textarea:focus::placeholder {
  color: #999 !important;
  opacity: 0.7 !important;
}

/* Ensure input text is always dark and readable */
input,
textarea,
select {
  color: #333 !important;
}

/* Improve select dropdown visibility */
select option {
  background: #ffffff;
  color: #333;
  padding: 8px;
}

/* Filter Buttons - Friendly & Modern */
.filter-btn,
.filter-tag,
.badge {
  position: relative;
  padding: 10px 20px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  color: #333;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover,
.filter-tag:hover,
.badge:hover {
  border-color: rgba(255, 107, 53, 0.6);
  background: rgba(255, 255, 255, 1);
  box-shadow:
    0 4px 20px rgba(255, 107, 53, 0.15),
    0 0 15px rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.filter-btn.active,
.filter-tag.active {
  background: linear-gradient(135deg, #ff6b35, #ff8f57);
  color: white;
  border-color: rgba(255, 107, 53, 0.8);
  box-shadow:
    0 4px 20px rgba(255, 107, 53, 0.3),
    0 0 20px rgba(255, 107, 53, 0.15);
}

/* Section Title Shine Effect */
.section-title {
  position: relative;
  background: linear-gradient(90deg, #1a1a1a, #333, #1a1a1a);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  font-weight: 700;
  letter-spacing: -0.5px;
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

/* Gradient Text Animation for Orange Headings */
.section-title-gradient {
  background: linear-gradient(90deg, #FF6B35, #FF8F57, #FF6B35);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s linear infinite;
  font-weight: 700;
  letter-spacing: -0.5px;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }

  50% {
    background-position: 100% center;
  }

  100% {
    background-position: 0% center;
  }
}

/* Smooth Hover Effect for Links */
a {
  position: relative;
  transition: color 0.3s ease;
}

a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, #ff8f57);
  transition: width 0.3s ease;
}

a:hover::after {
  width: 100%;
}

/* Glow effect for icons */
i,
.icon {
  transition: all 0.3s ease;
}

.btn:hover i,
.btn:hover .icon {
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* Badge with Glow */
.badge {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 143, 87, 0.1));
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: #ff6b35;
  font-weight: 600;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.1);
}

/* Smooth Loading Spinner */
.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Accessibility - Focus States */
*:focus-visible {
  outline: 2px solid rgba(255, 107, 53, 0.6);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {

  .form-control,
  .form--control,
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="date"],
  input[type="number"],
  input[type="tel"],
  textarea,
  select {
    background: #ffffff !important;
    color: #333 !important;
    border-color: #ddd !important;
    backdrop-filter: none !important;
  }

  .form-control:focus,
  .form--control:focus,
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus,
  input[type="date"]:focus,
  input[type="number"]:focus,
  input[type="tel"]:focus,
  textarea:focus,
  select:focus {
    background: #ffffff !important;
    border-color: #F57C00 !important;
  }
}

/* Smooth Transitions for All Elements */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

button,
.btn,
a,
input,
select,
textarea {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   RESPONSIVE PRELOADER SIZING
   ================================ */

.preloader-logo {
  max-width: 60px !important;
  max-height: 60px !important;
  transition: all 0.5s ease;
}

@media (min-width: 768px) {
  .preloader-logo {
    max-width: 90px !important;
    max-height: 90px !important;
  }
}

@media (min-width: 1024px) {
  .preloader-logo {
    max-width: 120px !important;
    max-height: 120px !important;
  }
}

@media (min-width: 1200px) {
  .preloader-logo {
    max-width: 150px !important;
    max-height: 150px !important;
  }
}

/* ================================
   ROAVIO-INSPIRED STYLING
   ================================ */

/* Enhanced Button Styling with Roavio effect */
.btn--base {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 14px 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Circular expansion hover effect (Roavio style) */
.btn--base::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.35s ease-out, height 0.35s ease-out;
  z-index: 0;
  pointer-events: none;
}

.btn--base:hover::after {
  width: 300px;
  height: 300px;
}

/* Card Border Radius Enhancement */
.trip-card,
.card,
.shadow--card {
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Heading Font Weight and Letter Spacing */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter Tight", sans-serif;
  letter-spacing: -0.5px;
  font-weight: 600;
}

h1 {
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  font-weight: 700;
  letter-spacing: -0.8px;
}

/* Section Title Styling (Roavio style) */
.section-title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ff8f57);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.section-title:hover::after {
  width: 100%;
}

/* Smooth Image Hover Transform */
img {
  transition: transform 0.4s ease-out;
}

.trip-card:hover img {
  transform: scale3d(1.08, 1.08, 1);
}

/* Body Font Consistency */
body,
p,
span,
a {
  font-family: "Inter Tight", sans-serif;
}

/* Button Text Styling */
.btn {
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
}

/* Enhanced Badge Styling */
.badge {
  font-family: "Inter Tight", sans-serif;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

/* ================================
   FILTER WIDGET ENHANCEMENTS
   ================================ */

/* Plain action-widget styling removed - using default from main.css */

/* Style filter widgets with proper spacing and rounded edges */
.action-sidebar .action-widget {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px !important;
  margin-bottom: 20px !important;
}

.action-sidebar .widget--shadow {
  box-shadow: none !important;
}

/* Simple checkbox styling with visible checkmark */
.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.form-check-input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  position: relative;
  flex-shrink: 0;
}

.form-check-input:checked {
  background-color: #F57C00 !important;
  border-color: #F57C00 !important;
}

.form-check-input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.form-check-input:focus {
  outline: 2px solid #F57C00;
  outline-offset: 2px;
  box-shadow: none !important;
}

.form-check-label {
  cursor: pointer;
  margin: 0;
  flex: 1;
}

/* Plain filter styling - minimal custom overrides */

/* Action Sidebar - Desktop: static, Mobile: modal */
.action-sidebar {
  position: static;
  width: 100%;
  height: auto;
  background: transparent;
  display: block;
}

.action-sidebar.active {
  display: block;
}

@media (max-width: 991px) {
  .action-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
  }
  
  .action-sidebar.active {
    display: block;
  }
}

/* Filter button - Mobile only */
.action-sidebar-open {
  display: none !important;
}

@media (max-width: 991px) {
  .action-sidebar-open {
    display: inline-flex !important;
    width: 100%;
    margin-bottom: 1rem;
  }
}

.action-sidebar-open i {
  margin-right: 8px;
}

.action-sidebar > * {
  background: white;
  padding: 0;
}

@media (max-width: 991px) {
  .action-sidebar > * {
    max-width: 400px;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
  }
}

.action-sidebar-close {
  display: none;
}

@media (max-width: 991px) {
  .action-sidebar-close {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 20px;
  }
}

/* Safari Journey steps hover glow */
.step-card .step-card__content {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border: 1px solid transparent;
}

.step-card:hover .step-card__content {
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.25), 0 0 20px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.25);
}

/* Testimonial Section - Enhanced Dark Scrollable Style */
.testimonial-section-enhanced {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.testimonial-section-enhanced::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(245, 124, 0, 0.08);
  pointer-events: none;
}

.testimonial-section-enhanced::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(245, 124, 0, 0.06);
  pointer-events: none;
}

.testimonial-section-enhanced .section-header {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.testimonial-scroll-container {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-scroll-wrapper {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 20px 30px;
  scrollbar-width: thin;
  scrollbar-color: #F57C00 rgba(255, 255, 255, 0.1);
  -webkit-overflow-scrolling: touch;
}

.testimonial-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}

.testimonial-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.testimonial-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #F57C00;
  border-radius: 10px;
}

.testimonial-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: #E67300;
}

.testimonial-card-enhanced {
  background: #0f0f0f;
  border-radius: 16px;
  padding: 35px 30px 30px;
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(245, 124, 0, 0.15);
  position: relative;
  animation: cardPulse 3s ease-in-out infinite;
}

@keyframes cardPulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  }

  50% {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 124, 0, 0.2);
  }
}

.testimonial-card-enhanced:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(245, 124, 0, 0.3);
  border-color: #F57C00;
  background: #141414;
  animation: none;
}

.testimonial-card-enhanced__quote-wrapper {
  position: absolute;
  top: -15px;
  left: 30px;
}

.testimonial-card-enhanced__quote-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #F57C00;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(245, 124, 0, 0.3);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
  animation: iconShine 4s ease-in-out infinite;
}

@keyframes iconShine {

  0%,
  100% {
    box-shadow: 0 8px 20px rgba(245, 124, 0, 0.3);
  }

  50% {
    box-shadow: 0 8px 25px rgba(245, 124, 0, 0.5);
  }
}

.testimonial-card-enhanced:hover .testimonial-card-enhanced__quote-icon {
  transform: rotate(0deg) scale(1.05);
}

.testimonial-card-enhanced__content {
  margin-top: 20px;
}

.testimonial-card-enhanced__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
  font-style: italic;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: -0.3px;
}

.testimonial-card-enhanced__footer {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 124, 0, 0.2);
}

.testimonial-card-enhanced__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #F57C00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.25);
  font-family: 'Inter Tight', sans-serif;
}

.testimonial-card-enhanced__client {
  flex: 1;
}

.testimonial-card-enhanced__name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px 0;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: -0.3px;
}

.testimonial-card-enhanced__ratings {
  display: flex;
  gap: 2px;
}

.testimonial-card-enhanced__ratings i {
  color: #ffa500;
  font-size: 14px;
}

/* Scroll hint */
.testimonial-scroll-hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-family: 'Inter Tight', sans-serif;
  animation: fadeInOut 2s infinite;
}

.testimonial-scroll-hint i {
  color: #F57C00;
}

@keyframes fadeInOut {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* Mobile responsive */
@media (max-width: 992px) {
  .testimonial-scroll-wrapper {
    padding: 20px 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-card-enhanced {
    padding: 30px 20px 25px;
    min-width: 320px;
    max-width: 320px;
  }

  .testimonial-scroll-wrapper {
    padding: 15px;
    gap: 15px;
  }

  .testimonial-card-enhanced__quote-wrapper {
    left: 20px;
  }

  .testimonial-card-enhanced__quote-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }

  .testimonial-card-enhanced__text {
    font-size: 14px;
  }

  .testimonial-card-enhanced__avatar {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .testimonial-card-enhanced__name {
    font-size: 15px;
  }

  .testimonial-scroll-hint {
    font-size: 12px;
  }
}

/* Explore Destinations slider arrows */
.locations-slider .locations-slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 53, 0.25);
  background: linear-gradient(135deg, #ff6b35, #ff8f57);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  z-index: 2;
}

.locations-slider .locations-slick-arrow i {
  font-size: 18px;
}

.locations-slider .locations-slick-prev {
  left: -12px;
}

.locations-slider .locations-slick-next {
  right: -12px;
}

.locations-slider .locations-slick-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.5);
}

.locations-slider .locations-slick-arrow.slick-disabled {
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 768px) {
  .locations-slider .locations-slick-arrow {
    width: 38px;
    height: 38px;
  }

  .locations-slider .locations-slick-prev {
    left: -6px;
  }

  .locations-slider .locations-slick-next {
    right: -6px;
  }
}

/* How It Works - Simplified Roavio Style */
.how-it-works-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(245, 124, 0, 0.08);
  border-radius: 50%;
  animation: floatBubble 8s ease-in-out infinite;
}

.how-it-works-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 350px;
  height: 350px;
  background: rgba(245, 124, 0, 0.06);
  border-radius: 50%;
  animation: floatBubble 10s ease-in-out infinite reverse;
}

@keyframes floatBubble {

  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }

  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

.how-it-works-card {
  position: relative;
  text-align: center;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #f0f0f0;
}

.how-it-works-card:hover {
  transform: translateY(-12px) scale(1.03);
  background: #ffffff;
  border-color: #F57C00;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 0 0 3px rgba(245, 124, 0, 0.1);
}

.how-it-works-card__step {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.how-it-works-card__step::before {
  content: '';
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(245, 124, 0, 0.1);
  animation: pulsateGlow 3s ease-in-out infinite;
}

@keyframes pulsateGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.step-number {
  font-size: 54px;
  font-weight: 700;
  color: #F57C00;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.how-it-works-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-it-works-card__icon {
  font-size: 50px;
  color: #F57C00;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  animation: floatIcon 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.how-it-works-card:hover .how-it-works-card__icon {
  transform: scale(1.15) rotate(5deg);
  color: #E67300;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.how-it-works-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1f1f1f;
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: 'Inter Tight', sans-serif;
}

.how-it-works-card__text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
}

.how-it-works-card__divider {
  position: absolute;
  top: 45px;
  right: -15%;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, #ff6b35, transparent);
  opacity: 0.3#F57C00
}

/* Mobile adjustments */
@media (max-width: 992px) {
  .how-it-works-card__step {
    width: 80px;
    height: 80px;
  }

  .step-number {
    font-size: 48px;
  }

  .how-it-works-card__divider {
    display: none;
  }
}

@media (max-width: 768px) {
  .how-it-works-card {
    margin-bottom: 30px;
  }

  .how-it-works-card__step {
    width: 70px;
    height: 70px;
  }

  .step-number {
    font-size: 42px;
  }

  .how-it-works-card__icon {
    font-size: 42px;
  }

  .how-it-works-card__title {
    font-size: 16px;
  }

  .how-it-works-card__text {
    font-size: 13px;
  }
}

/* Language Switcher Enhancement */
.custom--dropdown {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 35px 8px 12px !important;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.custom--dropdown:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.custom--dropdown:after {
  color: #fff !important;
  font-size: 14px;
  right: 12px !important;
}

.custom--dropdown>.custom--dropdown__selected {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.custom--dropdown>.custom--dropdown__selected .thumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom--dropdown>.custom--dropdown__selected .thumb img {
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 24px !important;
  height: 24px !important;
  object-fit: cover;
}

.custom--dropdown>.custom--dropdown__selected .text {
  font-weight: 600;
  font-size: 14px;
  color: #fff !important;
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: -0.3px;
}

.custom--dropdown>.dropdown-list {
  min-width: 180px;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  overflow: hidden;
  margin-top: 8px !important;
}

.dropdown-list>.dropdown-list__item {
  padding: 10px 12px !important;
  transition: all 0.25s ease;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-list>.dropdown-list__item:last-child {
  border-bottom: none;
}

.dropdown-list>.dropdown-list__item:hover {
  background: linear-gradient(135deg, #ff6b35, #ff8f57) !important;
  color: #fff !important;
}

.dropdown-list>.dropdown-list__item .thumb img {
  border: 2px solid transparent;
  width: 22px !important;
  height: 22px !important;
  transition: border-color 0.25s ease;
}

.dropdown-list>.dropdown-list__item:hover .thumb img {
  border-color: rgba(255, 255, 255, 0.6);
}

.dropdown-list>.dropdown-list__item .text {
  color: #333;
  font-weight: 500;
  font-size: 14px;
  font-family: 'Inter Tight', sans-serif;
}

.dropdown-list>.dropdown-list__item:hover .text {
  color: #fff !important;
}

/* Mobile Language Switcher */
@media (max-width: 991px) {
  .custom--dropdown {
    margin-bottom: 10px;
  }
}

/* Button Text Enhancement */
.btn--base {
  position: relative;
  z-index: 1;
}

.btn--base span,
.btn--base i {
  position: relative;
  z-index: 2;
}

/* Ripple effect on click */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* Focus state for accessibility */
.btn--base:focus {
  outline: 3px solid rgba(245, 124, 0, 0.4);
  outline-offset: 2px;
}

/* Disabled state */
.btn--base:disabled,
.btn--base.disabled {
  background: #ccc !important;
  border-color: #ccc !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: not-allowed;
  opacity: 0.6;
}

/* ================================
   UTILITY FAB - SPLIT BUTTONS
   ================================ */

.utility-fab-container {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.utility-fab-whatsapp,
.utility-fab-top {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
}

.utility-fab-whatsapp {
  background: #25D366;
  color: #fff;
}

.utility-fab-whatsapp:hover {
  background: #20ba58;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  transform: scale(1.1);
}

.utility-fab-whatsapp:active {
  transform: scale(0.95);
}

.utility-fab-top {
  background: #F57C00;
  color: #fff;
  display: none;
}

.utility-fab-top:hover {
  background: #E67300;
  box-shadow: 0 6px 25px rgba(245, 124, 0, 0.4);
  transform: scale(1.1);
}

.utility-fab-top:active {
  transform: scale(0.95);
}

.utility-fab-top.show {
  display: flex;
  animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .utility-fab-container {
    right: 20px;
    bottom: 20px;
    gap: 10px;
  }

  .utility-fab-whatsapp,
  .utility-fab-top {
    width: 50px;
    height: 50px;
    font-size: 22px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
  }
}

/* ================================
   FINAL POLISH & TOUCHES
   ================================ */

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Enhanced link hover transitions */
a {
  transition: all 0.25s ease;
}

/* Image loading optimization */
img {
  max-width: 100%;
  height: auto;
}

/* Honeypot field: visually hidden but present for bots */
.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* Selection color */
::selection {
  background: #F57C00;
  color: #fff;
}

::-moz-selection {
  background: #F57C00;
  color: #fff;
}

/* Scroll-top button styling removed (replaced by utility FAB). */

/* Enhanced card transitions */
.card,
.shadow--card,
.trip-card {
  will-change: transform;
}

/* Input focus styling */
.form-control:focus,
.form--control:focus,
.select2-container--focus {
  border-color: #F57C00;
  box-shadow: 0 0 0 0.2rem rgba(245, 124, 0, 0.15);
}

/* Link color consistency */
a:not(.btn):not(.dropdown-item):hover {
  color: #F57C00;
}

/* Active menu item */
.main-menu li a.active,
.nav-link.active {
  color: #F57C00 !important;
}

/* Star ratings consistency */
.ratings i,
.rating-stars i {
  color: #FFA500;
}

/* Badge enhancements */
.badge {
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
}

/* Loading spinner color */
.spinner-border,
.spinner-grow {
  color: #F57C00;
}

/* Toast/notification colors */
.toast,
.alert-success {
  border-left: 4px solid #F57C00;
}

/* Checkbox and radio custom styling */
.form-check-input:checked {
  background-color: #F57C00;
  border-color: #F57C00;
}

/* Progress bars */
.progress-bar {
  background-color: #F57C00;
}

/* Pagination active */
.pagination .page-item.active .page-link {
  background-color: #F57C00;
  border-color: #F57C00;
}

/* Table hover */
.table-hover tbody tr:hover {
  background-color: rgba(245, 124, 0, 0.05);
}

/* Dropdown active item */
.dropdown-item:active,
.dropdown-item.active {
  background-color: #F57C00;
}

/* ================================
   MICRO-INTERACTIONS & ANIMATIONS
   ================================ */

/* Hover lift for interactive cards */
.location-card,
.tour-card,
.blog-card {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.location-card:hover,
.tour-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  border-color: #F57C00;
}

/* Button press effect */
.btn:active {
  transform: scale(0.97);
}

/* Icon spin on hover */
.icon-hover-spin:hover i {
  animation: iconSpin 0.6s ease-in-out;
}

@keyframes iconSpin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Fade-in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth image hover zoom */
.image-wrapper {
  overflow: hidden;
  border-radius: 12px;
}

.image-wrapper img {
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.08);
}

/* Subtle pulse for important elements */
@keyframes subtlePulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

.pulse-hover:hover {
  animation: subtlePulse 1s ease-in-out infinite;
}

/* Enhanced box shadow on focus */
*:focus-visible {
  outline: 2px solid #F57C00;
  outline-offset: 3px;
  border-radius: 4px;
}

/* Gradient text for special headings (keep existing gradients) */
.gradient-text {
  background: linear-gradient(90deg, #FF6B35, #FF8F57, #FF6B35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Social media icon hover effects */
.social-icons a {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: #F57C00 !important;
}

/* Enhanced tooltip */
[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 12px;
  background: #333;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  z-index: 999;
  animation: fadeInUp 0.3s ease;
}

/* Loading skeleton */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Notification badge pulse */
.notification-badge {
  animation: subtlePulse 2s ease-in-out infinite;
}

/* ================================
   ACCESSIBILITY IMPROVEMENTS
   ================================ */

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn--base {
    border: 2px solid #000;
  }
}

/* ================================
   PERFORMANCE OPTIMIZATIONS
   ================================ */

/* GPU acceleration for animations */
.btn--base,
.whatsapp-float,
.scroll-top,
.card,
.trip-card,
.shadow--card {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Optimize image rendering */
img {
  image-rendering: -webkit-optimize-contrast;
}

/* Content visibility for performance */
.section {
  content-visibility: auto;
}

/* ================================
   FINAL TOUCHES
   ================================ */

/* Professional footer styling */
.footer-section {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
}

/* Enhanced card depth */
.card-depth {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 4px 8px rgba(0, 0, 0, 0.05),
    0 8px 16px rgba(0, 0, 0, 0.05);
}

/* Smooth page transitions */
.page-transition {
  animation: pageLoad 0.4s ease-out;
}

@keyframes pageLoad {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   ECHODRUMS SMOOTH SCROLL ANIMATIONS
   ======================================== */

/* Echo Pulse Effect - Subtle radiating glow */
@keyframes echoPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 124, 0, 0.3);
  }

  50% {
    box-shadow: 0 0 0 20px rgba(245, 124, 0, 0);
  }
}

/* Drum Beat Effect - Gentle bounce */
@keyframes drumBeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Smooth fade-in on scroll */
.fade-in-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Safari hover lift - Smooth elevation */
.safari-hover-lift {
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.safari-hover-lift:hover {
  transform: translateY(-8px);
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Print styles */
@media print {

  .whatsapp-float,
  .scroll-top,
  .header,
  .footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }
}

/* 
================================
   Ad Banners - Modern & Fitting
================================ 
*/

.ad-banner-728 {
  width: 100%;
  max-width: 728px;
  height: 90px;
  background: linear-gradient(135deg, #1e2a78, #ff2e63);
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  margin: 20px auto;
  color: white;
  box-shadow: 0 4px 15px rgba(30, 42, 120, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.ad-banner-728:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 42, 120, 0.25);
}

.ad-banner-728::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
  background-size: 20px 20px;
  opacity: 0.1;
  z-index: 0;
}

.ad-banner-728-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.ad-banner-728 h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  line-height: 1.2;
}

.ad-banner-728 p {
  font-size: 13px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.ad-banner-btn {
  background: #fff;
  color: #ff2e63;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
  white-space: nowrap;
  border: 2px solid transparent;
}

.ad-banner-btn:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* 970x250 Billboard Ad */
.ad-banner-970 {
  width: 100%;
  max-width: 970px;
  min-height: 250px;
  background: linear-gradient(135deg, #00b09b, #96c93d);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 40px auto;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 176, 155, 0.2);
  position: relative;
  overflow: hidden;
  padding: 20px;
  transition: transform 0.3s ease;
}

.ad-banner-970:hover {
  transform: scale(1.01);
}

.ad-banner-970::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -50px;
  left: -50px;
}

.ad-banner-970::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  right: -50px;
}

.ad-banner-970 h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: white;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ad-banner-970 p {
  font-size: 18px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
  z-index: 1;
  max-width: 600px;
  line-height: 1.5;
}

.ad-banner-large-btn {
  background: #fff;
  color: #00b09b;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.ad-banner-large-btn:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Response for smaller screens */
@media (max-width: 768px) {
  .ad-banner-728 {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
    gap: 15px;
  }

  .ad-banner-728-content {
    align-items: center;
  }

  .ad-banner-970 h2 {
    font-size: 24px;
  }

  .ad-banner-970 p {
    font-size: 15px;
  }
}

/* Contact page button styling */
.contact-form .btn--base {
  background: #F57C00;
  border-color: #F57C00;
  color: #fff;
}

.contact-form .btn--base:hover,
.contact-form .btn--base:focus {
  background: #E67300;
  border-color: #E67300;
  color: #fff;
}

/* Contact details containers + animations */
.contact-item {
  border-radius: 12px;
  border: 1px solid rgba(245, 124, 0, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  animation: contactCardFadeUp 0.6s ease both;
}

.contact-item:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 124, 0, 0.5);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.contact-item .icon {
  background: #F57C00;
}

.contact-item:nth-child(1) { animation-delay: 0.05s; }
.contact-item:nth-child(2) { animation-delay: 0.12s; }
.contact-item:nth-child(3) { animation-delay: 0.18s; }

@keyframes contactCardFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Tour/Seminar tab hover contrast fix */
.custom--nav-tabs .nav-item .nav-link {
  color: #2e3945;
}

.custom--nav-tabs .nav-item .nav-link:hover,
.custom--nav-tabs .nav-item .nav-link:focus {
  background: #fff;
  color: #F57C00;
  border: 1px solid rgba(245, 124, 0, 0.35);
}

.custom--nav-tabs .nav-item .nav-link.active {
  background-color: #D35F00 !important;
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(211, 95, 0, 0.3);
}

/* Share buttons update (WhatsApp) */
.blog-details-footer .share-post-links li a.whatsapp {
  background-color: #25D366;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Packages section - smooth scroll transitions */
.trip-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  will-change: transform, box-shadow;
}

.trip-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.trip-card__thumb {
  position: relative;
  transition: all 0.4s ease;
}

.trip-card__thumb a {
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.trip-card__thumb img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.trip-card:hover .trip-card__thumb img {
  transform: scale(1.1);
}

.trip-card__content {
  transition: all 0.3s ease;
}

.trip-card__title a {
  transition: color 0.3s ease;
}

.trip-card:hover .trip-card__title a {
  color: #F57C00;
}

/* Package price badge smooth transition */
.trip-card__price {
  position: absolute;
  bottom: -20px;
  right: 20px;
  z-index: 10;
  transition: all 0.3s ease;
}

.trip-card:hover .trip-card__price {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(245, 124, 0, 0.4);
}

/* Seminar/Location cards - smooth transitions */
.location-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.location-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.location-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-card:hover img {
  transform: scale(1.08);
}

.location-card .overlay-content {
  transition: all 0.3s ease;
}

.location-card:hover .overlay-content {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
}

/* ================================
   REVIEW EXPANSION STYLES
   ================================ */

.review-content .review-text {
  margin: 0;
  transition: all 0.3s ease;
  line-height: 1.6;
}

.review-content .review-text.expanded {
  max-height: none;
}

.review-content .btn-expand {
  transition: color 0.3s ease;
}

.review-content .btn-expand:hover {
  color: #E67300 !important;
}

.review-content .btn-collapse {
  background: none;
  border: none;
  color: #F57C00;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-left: 5px;
  font-size: 13px;
  transition: color 0.3s ease;
}

.review-content .btn-collapse:hover {
  color: #E67300;
}
