/* 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 .3s;
  -o-transition: all .3s;
  transition: all .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: 375px;
  padding: 25px;
  color: #1E2337;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999999;
  transition: all .5s;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 18px rgb(0 0 0 / 20%);
  border-radius: 20px;
}

.cookies-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

.cookies-card__title {
  font-size: inherit;

}

.cookies-card__close {
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  color: #797878;
  transition: all 0.2s;
}

.cookies-card__close:hover {
  color: #000;

}

.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;
  font-size: 13px;
  margin-bottom: 24px;
}

.cookies-card__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.cookies-card__btn-outline {
  text-decoration: none;
  padding: 12px 20px;
  color: #001E00;

}

.cookies-card__btn {
  color: #fff !important;
  text-decoration: none;
  padding: 8px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
  background-color: hsl(var(--base));
  transition: all 0.2s;
}

.cookies-card__btn:hover {
  background-color: hsl(var(--base)/0.8);
}




@media (max-width: 767px) {
  .cookies-card {
      width: calc(100% - 20px);
      left: 10px;
      bottom: 0;
      font-size: 14px;
      padding: 15px;
  }
}


.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  transform: translateX(-50%);
  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-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ced4da !important;
  padding: 10px 20px;
}

.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: .3s;
}

.select2-container--default .select2-selection--single {
  border-color: #ced4da !important;
  border-width: 2px !important;
  border-radius: .375rem !important;
  padding: .375rem .75rem !important;
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !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: rgb(var(--main)) !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: hsl(var(--base)) !important;
  border-radius: .375rem !important;
}


.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: rgb(var(--main));
  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: rgb(var(--main));
  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: rgb(var(--main));
  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 #fff;
  border-top-color: var(--border-color);
  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 rgb(var(--main));
}

.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 rgb(var(--main));
  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;
}



/* change select 2 style */

/* select 2 */
.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-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ced4da !important;
  padding: 10px 20px;
}

.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: 3px;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: .3s;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 35px !important;
}

.select2-container--default .select2-selection--single {
  border-color: rgba(0, 0, 0, 0.08) !important;
  border-width: 1px !important;
  border-radius: .375rem !important;
  padding: .375rem .75rem !important;
  height: 50px !important;
}

.select2-container--open .select2-selection.select2-selection--single,
.select2-container--open .select2-selection.select2-selection--multiple {
  border-color: rgb(var(--r), var(--g), var(--b)) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  transform: unset !important;
  content: "\f106";
}

.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: rgb(var(--main)) !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--default .select2-selection--multiple {
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.button-loader .spinner-border {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Responsive spacing adjustments */
@media (max-width: 767px) {
  .hero-section {
    padding-top: 100px !important; /* Reduce top padding on mobile */
  }
  
  .banner-content__title {
    margin-bottom: 1.5rem !important;
  }
  
  .banner-content__subtitle {
    margin-bottom: 2rem !important;
    max-width: 90% !important;
  }
  
  .banner-content__buttons {
    margin-bottom: 2rem !important;
  }
  
  .trust-indicators {
    margin-bottom: 1rem !important;
  }
}

@media (max-height: 800px) {
  .hero-section {
    min-height: 100vh;
    height: auto;
    padding: 2rem 0;
  }
}

@media (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
    height: auto;
    padding: 1rem 0;
  }
  
  .banner-content__title {
    margin-bottom: 1rem !important;
  }
  
  .banner-content__subtitle {
    margin-bottom: 1.5rem !important;
  }
  
  .banner-content__buttons {
    margin-bottom: 1.5rem !important;
  }
  
  .trust-number {
    margin-bottom: 0.25rem !important;
  }
}

/* Extra small screens - prevent overlapping */
@media (max-width: 480px) {
  .banner-content__title {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
  }
  
  .banner-content__subtitle {
    font-size: 0.875rem !important;
    margin-bottom: 1.5rem !important;
  }
  
  .banner-content__buttons {
    margin-bottom: 1.5rem !important;
  }
  
  .trust-number {
    font-size: 1.5rem !important;
    margin-bottom: 0.25rem !important;
  }
  
  .trust-label {
    font-size: 0.75rem !important;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Font Classes */
.font-switzer {
  font-family: 'Switzer', sans-serif;
}

.font-ranade {
  font-family: 'Ranade', sans-serif;
}

.banner-content__title {
  font-family: 'Switzer', sans-serif;
}

.banner-content__subtitle {
  font-family: 'Ranade', sans-serif;
  line-height: 1.3 !important; /* Reduce line spacing */
  font-size: 1rem; /* Mobile base size */
}

@media (min-width: 480px) {
  .banner-content__subtitle {
    font-size: 1.125rem; /* Small tablets */
  }
}

@media (min-width: 640px) {
  .banner-content__subtitle {
    font-size: 1.25rem; /* Medium tablets */
  }
}

@media (min-width: 768px) {
  .banner-content__subtitle {
    font-size: 1.375rem; /* Large tablets */
  }
}

@media (min-width: 1024px) {
  .banner-content__subtitle {
    font-size: 1.5rem; /* Small desktops */
  }
}

@media (min-width: 1200px) {
  .banner-content__subtitle {
    font-size: 1.5rem; /* Large desktops */
  }
}

/* Responsive Hero Typography - Responsive sizes */
.banner-content__title {
  font-size: 3rem; /* Mobile base size */
  padding-top: 0 !important;
}

@media (max-width: 767px) {
  .banner-content__title {
    margin-top: 2rem !important;
  }
}

@media (min-width: 480px) {
  .banner-content__title {
    font-size: 3.5rem; /* Small tablets */
  }
}

@media (min-width: 640px) {
  .banner-content__title {
    font-size: 4rem; /* Medium tablets */
  }
}

@media (min-width: 768px) {
  .banner-content__title {
    font-size: 4.5rem; /* Large tablets */
  }
}

@media (min-width: 1024px) {
  .banner-content__title {
    font-size: 5rem; /* Small desktops */
  }
}

@media (min-width: 1200px) {
  .banner-content__title {
    font-size: 6rem; /* Large desktops */
  }
}


/* Trust Indicators Typography - More responsive to prevent overlapping */
.trust-number {
  font-size: 0.75rem; /* Reduced by 1rem */
  font-weight: 900;
  color: white;
  margin-bottom: 0.5rem;
}

@media (min-width: 480px) {
  .trust-number {
    font-size: 1rem; /* xs - reduced by 1rem */
  }
}

@media (min-width: 640px) {
  .trust-number {
    font-size: 1.5rem; /* sm - reduced by 1rem */
  }
}

@media (min-width: 768px) {
  .trust-number {
    font-size: 2rem; /* md - reduced by 1rem */
    margin-bottom: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .trust-number {
    font-size: 2.5rem; /* lg - reduced by 1rem */
  }
}

@media (min-width: 1200px) {
  .trust-number {
    font-size: 3rem; /* xl - reduced by 1rem */
  }
}

.trust-label {
  font-size: 0.75rem; /* Half of the increase */
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

@media (min-width: 480px) {
  .trust-label {
    font-size: 0.8125rem; /* xs - half of increase */
  }
}

@media (min-width: 640px) {
  .trust-label {
    font-size: 0.875rem; /* sm - half of increase */
  }
}

@media (min-width: 768px) {
  .trust-label {
    font-size: 0.9375rem; /* md - half of increase */
  }
}

@media (min-width: 1024px) {
  .trust-label {
    font-size: 1rem; /* lg - half of increase */
  }
}

@media (min-width: 1200px) {
  .trust-label {
    font-size: 1.0625rem; /* xl - half of increase */
  }
}

/* Responsive Button Styles */
.banner-content__buttons .btn {
  font-size: 0.875rem !important; /* Mobile base size */
  padding: 0.625rem 0.875rem !important; /* Mobile padding */
  min-width: 240px !important; /* Mobile width */
}

@media (min-width: 480px) {
  .banner-content__buttons .btn {
    font-size: 0.9375rem !important; /* Small tablets */
    padding: 0.6875rem 0.9375rem !important;
    min-width: 260px !important;
  }
}

@media (min-width: 640px) {
  .banner-content__buttons .btn {
    font-size: 1rem !important; /* Medium tablets */
    padding: 0.75rem 1rem !important;
    min-width: 280px !important;
  }
}

@media (min-width: 768px) {
  .banner-content__buttons .btn {
    font-size: 1rem !important; /* Large tablets */
    padding: 0.75rem 1rem !important;
    min-width: 280px !important;
  }
}

@media (min-width: 1024px) {
  .banner-content__buttons .btn {
    font-size: 1rem !important; /* Small desktops */
    padding: 0.75rem 1rem !important;
    min-width: 280px !important;
  }
}

@media (min-width: 1200px) {
  .banner-content__buttons .btn {
    font-size: 1rem !important; /* Large desktops */
    padding: 0.75rem 1rem !important;
    min-width: 280px !important;
  }
}

/* ================================
   DRIIBO HEADER STYLES (EXACT TEMPLATE MATCH)
   ================================ */

.driibo-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 50;
}

.driibo-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.driibo-logo {
  display: flex;
  align-items: center;
}

.driibo-logo a {
  display: inline-block;
  line-height: 0;
}

.driibo-logo img {
  height: 36px;
  width: auto;
  display: block;
}

/* Desktop Navigation */
.driibo-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .driibo-nav {
    display: flex;
  }
}

.driibo-nav-item {
  font-size: 1rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.driibo-nav-item:hover {
  color: #111827;
}

.driibo-nav-item-bold {
  font-weight: 700;
  color: #9ca3af;
}

.driibo-nav-item-bold:hover {
  color: #6b7280;
}

/* Desktop Actions */
.driibo-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .driibo-actions {
    display: flex;
  }
}

/* Language Dropdown */
.driibo-lang {
  position: relative;
}

.driibo-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: #4b5563;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
}

.driibo-lang-btn:hover {
  color: #111827;
}

.driibo-lang-btn .fa-globe {
  font-size: 16px;
}

.driibo-lang-btn .fa-chevron-down {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.driibo-lang.active .fa-chevron-down {
  transform: rotate(180deg);
}

.driibo-lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 0.25rem 0;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}

.driibo-lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.driibo-lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: #374151;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: 100%;
}

.driibo-lang-option:hover {
  background-color: #f9fafb;
  color: #374151;
}

/* CTA Button */
.driibo-cta {
  background-color: #000000;
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  line-height: 1.5;
}

.driibo-cta:hover {
  background-color: #1f2937;
  color: white !important;
}

/* Mobile Menu Button */
.driibo-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #374151;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

@media (min-width: 768px) {
  .driibo-menu-btn {
    display: none;
  }
}

.driibo-menu-btn:hover {
  color: #000000;
}

.driibo-menu-btn i {
  font-size: 20px;
}

/* Mobile Menu */
.driibo-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease, border 0.3s ease;
  border-top: 1px solid transparent;
}

.driibo-mobile-menu.active {
  max-height: 600px;
  border-top-color: #f3f4f6;
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .driibo-mobile-menu {
    display: none !important;
  }
}

.driibo-mobile-item {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  transition: color 0.2s ease;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}

.driibo-mobile-item:hover {
  color: #111827;
}

.driibo-mobile-item-bold {
  font-weight: 700;
  color: #9ca3af;
}

.driibo-mobile-item-bold:hover {
  color: #6b7280;
}

/* Mobile Language */
.driibo-mobile-lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  color: #4b5563;
  font-size: 0.875rem;
  font-weight: 500;
}

.driibo-mobile-lang .fa-globe {
  font-size: 16px;
}

.driibo-mobile-lang select {
  font-size: 0.875rem;
  background: transparent;
  border: none;
  outline: none;
  color: #4b5563;
  cursor: pointer;
  padding: 0;
  margin-left: 0.25rem;
}

.driibo-mobile-lang select:focus {
  outline: none;
}

/* Mobile CTA */
.driibo-mobile-cta {
  display: block;
  background-color: #000000;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease;
  margin: 0.5rem;
  border: none;
  cursor: pointer;
}

.driibo-mobile-cta:hover {
  background-color: #1f2937;
  color: white !important;
}

/* ================================
   DRIIBO FOOTER STYLES (EXACT TEMPLATE MATCH)
   ================================ */

.driibo-footer {
  background-color: #00061F;
  color: white;
}

.driibo-footer-main {
  padding: 4rem 0;
}

/* Brand Section */
.driibo-footer-logo img {
  height: 6rem;
  width: auto;
}

.driibo-footer-desc {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 28rem;
}

/* App Buttons */
.driibo-footer-apps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .driibo-footer-apps {
    flex-direction: row;
  }
}

.driibo-app-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background-color: white;
  color: black;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.driibo-app-btn:hover {
  background-color: #f3f4f6;
  color: black;
}

.driibo-app-btn i {
  font-size: 1.5rem;
}

.driibo-app-btn-label {
  font-size: 0.75rem;
  color: black;
}

.driibo-app-btn-store {
  font-weight: 600;
  color: black;
  font-size: 1rem;
}

/* Footer Links */
.driibo-footer-title {
  font-weight: 600;
  font-size: 1.125rem;
  color: white;
  margin-bottom: 1.5rem;
}

.driibo-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.driibo-footer-menu a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.driibo-footer-menu a:hover {
  color: white;
}

/* Footer Bottom */
.driibo-footer-bottom {
  border-top: 1px solid #374151;
  padding: 2rem 0;
}

.driibo-footer-bottom-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .driibo-footer-bottom-content {
    flex-direction: row;
  }
}

.driibo-footer-copy {
  color: #d1d5db;
  font-size: 0.875rem;
}

/* Social Links */
.driibo-footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.driibo-social-link {
  color: #d1d5db;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.driibo-social-link:hover {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
}

.driibo-social-link svg,
.driibo-social-link i {
  height: 1.25rem;
  width: 1.25rem;
  font-size: 1.25rem;
}

/* ================================
   DRIIBO HERO/BANNER STYLES
   ================================ */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-content {
  position: relative;
  z-index: 10;
}

/* Hero — eyebrow y location note */
.hero-eyebrow {
  font-size: clamp(1.1rem, 2.5vw, 3rem);
  color: rgb(160, 163, 171);
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  padding: 0 1rem;
}

@keyframes hero-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.3; transform: scale(0.75); }
}

.hero-live-dot {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  background: #22c55e;
  border-radius: 50%;
  margin-right: 0.45em;
  vertical-align: middle;
  position: relative;
  top: -0.05em;
  animation: hero-dot-pulse 1.6s ease-in-out infinite;
}

.hero-location-note {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgb(140, 143, 155);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

/* Hero — CTA WhatsApp */
.driibo-hero-wa-cta.btn--base {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #fff !important;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 1.1rem 4rem;
  min-width: min(100%, 620px);
  min-height: 4rem;
  border: none !important;
  border-radius: 14px;
  background: linear-gradient(160deg, hsl(var(--base-l-100)) 0%, hsl(var(--base)) 60%, hsl(var(--base-d-200)) 100%) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 8px 28px hsl(var(--base) / 0.40),
    0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.driibo-hero-wa-cta.btn--base:hover,
.driibo-hero-wa-cta.btn--base:focus,
.driibo-hero-wa-cta.btn--base:focus-visible {
  color: #fff !important;
  border: none !important;
  background: linear-gradient(160deg, hsl(var(--base-l-100)) 0%, hsl(var(--base)) 60%, hsl(var(--base-d-200)) 100%) !important;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.15) inset,
    0 0 0 2px hsl(var(--base) / 0.30),
    0 14px 38px hsl(var(--base) / 0.50),
    0 4px 12px rgba(0, 0, 0, 0.22);
}

.driibo-hero-wa-cta.btn--base:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.driibo-hero-wa-cta__icon {
  font-size: clamp(1.4rem, 3vw, 1.7rem);
}

/* Trust Indicators */
.trust-indicators {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .trust-indicators {
    margin-bottom: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

@media (min-width: 768px) {
  .trust-indicators {
    margin-bottom: 0 !important;
    padding-bottom: 3rem !important;
  }
}

.trust-number {
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .trust-number {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .trust-number {
    font-size: 3rem;
  }
}

.trust-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

@media (min-width: 768px) {
  .trust-label {
    font-size: 1.125rem;
  }
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media (min-width: 768px) {
  .hero-scroll-indicator {
    bottom: 2rem;
  }
}

.hero-scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  animation: bounce 2s infinite;
}

.hero-scroll-wheel {
  width: 4px;
  height: 12px;
  background: #0066FF;
  border-radius: 2px;
  margin-top: 8px;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Button Hover Effects */
.btn--base:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4) !important;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2) !important;
}

/* Animation for scroll indicator */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ================================
   DRIIBO FEATURE SECTIONS STYLES
   ================================ */

/* Driibo Brand Colors */
:root {
  --driibo-primary: #0066FF;
  --driibo-secondary: #00061F;
  --driibo-info: #0099FF;
  --driibo-deep: #000F4C;
  --driibo-success: #22c55e;
  --driibo-accent: #E6E6E6;
}

/* Font Classes */
.font-switzer {
  font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.font-ranade {
  font-family: 'Ranade', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ================================
   SECTION 1: ¿CÓMO FUNCIONA DRIIBO?
   ================================ */

.how-it-works-section {
  background-color: #f9fafb;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

/* Geometric Shapes */
.geometric-shape {
  position: absolute;
  border-radius: 1rem;
}

.shape-1 {
  top: 8rem;
  left: 2rem;
  width: 4rem;
  height: 4rem;
  background-color: rgba(0, 102, 255, 0.08);
  transform: rotate(45deg);
  border-radius: 0.75rem;
}

.shape-2 {
  top: 4rem;
  right: 4rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 153, 255, 0.1);
  border-radius: 50%;
}

.shape-3 {
  bottom: 10rem;
  left: 4rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(230, 230, 230, 0.6);
  transform: rotate(-12deg);
  border-radius: 1.5rem;
}

.shape-4 {
  bottom: 5rem;
  right: 6rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(0, 102, 255, 0.06);
  transform: rotate(12deg);
}

.shape-5 {
  top: 50%;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 153, 255, 0.08);
  transform: rotate(45deg);
  border-radius: 0.5rem;
}

.shape-6 {
  top: 33%;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  background-color: rgba(0, 102, 255, 0.12);
  border-radius: 50%;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #00061F;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(0, 15, 76, 0.8);
  max-width: 48rem;
  line-height: 1.75;
}

/* Phone Container */
.phone-container {
  background-color: #f9fafb;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Phone Background Shapes */
.phone-bg-shape {
  position: absolute;
}

.phone-shape-1 {
  top: 3rem;
  right: 4rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(0, 102, 255, 0.1);
  border-radius: 1.5rem;
  transform: rotate(12deg);
}

.phone-shape-2 {
  top: 8rem;
  left: 3rem;
  width: 4rem;
  height: 4rem;
  background-color: rgba(0, 153, 255, 0.15);
  border-radius: 50%;
}

.phone-shape-3 {
  bottom: 6rem;
  right: 3rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 102, 255, 0.08);
  transform: rotate(45deg);
}

.phone-shape-4 {
  bottom: 4rem;
  left: 4rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(230, 230, 230, 0.5);
  border-radius: 0.75rem;
  transform: rotate(6deg);
}

.phone-shape-5 {
  top: 5rem;
  left: 33%;
  width: 2rem;
  height: 2rem;
  background-color: rgba(0, 153, 255, 0.12);
  border-radius: 50%;
}

.phone-shape-6 {
  bottom: 8rem;
  right: 33%;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(0, 102, 255, 0.06);
  border-radius: 0.5rem;
  transform: rotate(-12deg);
}

/* Phone Image */
.phone-image {
  width: 20rem;
  height: auto;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

@media (min-width: 1024px) {
  .phone-image {
    width: 24rem;
  }
}

/* Phone Badges */
.phone-badge {
  position: absolute;
  background-color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 20;
}

.phone-badge-1 {
  top: 0.25rem;
  left: -2rem;
}

.phone-badge-2 {
  bottom: 0.25rem;
  right: -2rem;
}

.phone-badge-title {
  font-weight: 500;
  color: #00061F;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.phone-badge-subtitle {
  color: #6b7280;
  font-size: 0.75rem;
  margin: 0;
}

/* Vertical Steps */
.step-item-vertical {
  position: relative;
}

.step-number-vertical {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #0066FF 0%, #0099FF 100%);
  color: white;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.25);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.step-item-vertical:hover .step-number-vertical {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 102, 255, 0.35);
}

.step-number-bg {
  position: absolute;
  inset: -0.25rem;
  background-color: rgba(0, 102, 255, 0.2);
  border-radius: 1rem;
  z-index: -1;
  transition: all 0.3s ease;
}

.step-item-vertical:hover .step-number-bg {
  background-color: rgba(0, 102, 255, 0.3);
}

.step-connector-line {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0.125rem;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(0, 102, 255, 0.4) 0%, transparent 100%);
}

.step-title-vertical {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00061F;
  transition: color 0.3s ease;
}

.step-item-vertical:hover .step-title-vertical {
  color: #0066FF;
}

.step-description-vertical {
  color: rgba(0, 15, 76, 0.8);
  line-height: 1.75;
  font-size: 1.125rem;
  margin: 0;
}

/* ================================
   SECTION 2: ¿POR QUÉ ELEGIR DRIIBO?
   ================================ */

.benefits-section {
  background-color: white;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

/* Benefits Geometric Shapes */
.benefits-shape-1 {
  top: 5rem;
  left: 2rem;
  width: 5rem;
  height: 5rem;
  background-color: rgba(0, 102, 255, 0.05);
  border-radius: 1.5rem;
  transform: rotate(12deg);
}

.benefits-shape-2 {
  top: 8rem;
  right: 4rem;
  width: 4rem;
  height: 4rem;
  background-color: rgba(0, 153, 255, 0.08);
  border-radius: 50%;
}

.benefits-shape-3 {
  bottom: 10rem;
  left: 5rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(230, 230, 230, 0.4);
  border-radius: 0.75rem;
  transform: rotate(-6deg);
}

.benefits-shape-4 {
  bottom: 5rem;
  right: 6rem;
  width: 3rem;
  height: 3rem;
  background-color: rgba(0, 102, 255, 0.06);
  transform: rotate(45deg);
}

.benefits-shape-5 {
  top: 50%;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(0, 153, 255, 0.1);
  border-radius: 0.5rem;
  transform: rotate(-12deg);
}

.benefits-shape-6 {
  top: 33%;
  left: 4rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(0, 102, 255, 0.08);
  border-radius: 50%;
}

/* Benefit Cards */
.benefit-card-driibo {
  background-color: rgba(249, 250, 251, 0.5);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.benefit-card-driibo:hover {
  background-color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px) scale(1.02);
}

.benefit-icon-wrapper {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);
  color: #0066FF;
  padding: 1.5rem;
  border-radius: 1rem;
  width: fit-content;
  margin: 0 auto 2rem;
  transition: all 0.5s ease;
}

.benefit-card-driibo:hover .benefit-icon-wrapper {
  background: linear-gradient(135deg, #0066FF 0%, #0099FF 100%);
  color: white;
  transform: scale(1.1);
}

.benefit-icon-wrapper i {
  font-size: 3rem;
}

.benefit-decoration {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1rem;
  height: 1rem;
  background-color: rgba(0, 153, 255, 0.2);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.benefit-card-driibo:hover .benefit-decoration {
  background-color: rgba(0, 153, 255, 0.4);
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00061F;
  transition: color 0.3s ease;
}

.benefit-card-driibo:hover .benefit-title {
  color: #0066FF;
}

.benefit-description {
  color: rgba(0, 15, 76, 0.8);
  line-height: 1.75;
  font-size: 1.125rem;
  margin: 0;
}

/* ================================
   SECTION 3: DRIVER SECTION
   ================================ */

.driver-section {
  background: linear-gradient(135deg, #00061F 0%, #000F4C 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.driver-section-title {
  font-size: 2rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .driver-section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .driver-section-title {
    font-size: 3rem;
  }
}

.driver-section-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
}

/* Driver Benefit Cards */
.driver-benefit-card-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.driver-benefit-card-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.driver-benefit-icon-small {
  background-color: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  padding: 0.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
}

.driver-benefit-icon-small i {
  font-size: 1.25rem;
}

.driver-benefit-title-small {
  font-weight: 600;
  color: white;
  font-size: 1rem;
}

.driver-benefit-desc-small {
  font-size: 0.875rem;
  color: #d1d5db;
}

/* Earning Potential Card */
.earning-potential-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.earning-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.earning-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 0.5rem;
}

.earning-label {
  font-size: 0.875rem;
  color: #d1d5db;
}

/* Requirements Card */
.driver-requirements-card {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.requirements-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.requirement-item i {
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.driver-process-note {
  padding: 1rem;
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0.75rem;
  color: #d1d5db;
  font-size: 0.875rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .phone-image {
    width: 16rem;
  }

  .phone-badge-1,
  .phone-badge-2 {
    position: static;
    margin: 1rem auto;
    width: fit-content;
  }

  .driver-requirements-card {
    margin-top: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* ================================= Modern Preloader Css Start =========================== */
.preloader {
    position: fixed;
    z-index: 999999;
    background: linear-gradient(135deg, #00061F 0%, #000F4C 100%);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    animation: fadeInScale 0.8s ease-out;
}

.preloader-logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 102, 255, 0.3));
}

.preloader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #0066FF;
    border-radius: 50%;
    animation: spinRing 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    border-top-color: #0099FF;
    animation-delay: 0.2s;
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
}

.spinner-ring:nth-child(3) {
    border-top-color: #00CCFF;
    animation-delay: 0.4s;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fade out animation when preloader is removed */
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Responsive preloader */
@media (max-width: 767px) {
    .preloader-logo img {
        max-width: 140px;
    }

    .preloader-spinner {
        width: 60px;
        height: 60px;
    }
}
/* ================================= Modern Preloader Css End =========================== */

/* ================================= WhatsApp Floating Button Start =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
  }
}
/* ================================= WhatsApp Floating Button End =========================== */
