/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

:root {
  --main: hsl(var(--base));
}

.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: 520px;
  padding: 30px;
  color: #1E2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .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: 130%;
  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-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: hsl(var(--border-color)/.65) !important;
  border-width: 1px !important;
  border-radius: 4px !important;
  padding: .375rem .75rem !important;
  height: 49px !important;
}
.selection {
  width: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: hsl(var(--body-color));
  line-height: 2;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  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: 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: 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: 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: 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 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 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;
}

.adjust-height .payment-system-list.is-scrollable {
  max-height: 461px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ============================================
   MERGED MODERN DESIGN STYLES
   Combining DataLexing & Darel Zaytoon Designs
   ============================================ */

/* Modern Header Styles */
.modern-header {
  background: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.modern-header .navbar {
  padding: 0;
}

.modern-header .navbar-brand {
  padding: 0;
}

.modern-header .navbar-brand img {
  max-height: 50px;
  width: auto;
}

.modern-header .nav-link {
  color: #2d3748 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.modern-header .nav-link:hover {
  color: hsl(var(--base)) !important;
}

.modern-header .nav-link .icon {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.modern-header .header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.modern-header .btn-modern {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modern-header .btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Modern Hero Section */
.modern-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Darel Zaytoon Hero Section */
.darelzaytoon-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 200px 0 100px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 0;
}

.darelzaytoon-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

/* Hero Titles Section */
.hero-titles-section {
  margin-bottom: 3rem;
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

/* Modern Search Filter Bar */
.modern-search-filter-bar {
  background: #ffffff;
  border-radius: 15px;
  padding: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modern-filter-form {
  margin: 0;
}

.filter-input-group {
  display: flex;
  align-items: center;
  gap: 0;
  background: #ffffff;
}

.filter-field {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  position: relative;
}

.filter-icon {
  color: hsl(var(--base));
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.modern-filter-select {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  font-size: 1rem;
  color: #2d3748;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  flex: 1;
  outline: none;
}

.modern-filter-select:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.modern-filter-select option {
  padding: 0.5rem;
  color: #2d3748;
}

.filter-separator {
  width: 1px;
  height: 40px;
  background: hsl(var(--base));
  opacity: 0.3;
  flex-shrink: 0;
}

.btn-filter-search {
  background: hsl(var(--base));
  color: #ffffff !important;
  border: none;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border-radius: 0 15px 15px 0;
      margin: 3px;
}

.btn-filter-search:hover {
  background: hsl(var(--base) / 0.9);
  color: #ffffff !important;
  transform: scale(1.02);
}

.btn-filter-search i {
  font-size: 1.25rem;
}

/* Custom Select Styling for Modern Filter */
.filter-field::after {
  content: '\f107';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  pointer-events: none;
  font-size: 0.875rem;
}

.filter-field:has(.modern-filter-select:focus)::after {
  color: hsl(var(--base));
}

/* Responsive Design for Hero */
@media (max-width: 991px) {
  .darelzaytoon-hero {
    min-height: 700px;
    padding: 180px 0 80px;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .hero-titles-section {
    margin-bottom: 2.5rem;
  }

  .modern-search-filter-bar {
    border-radius: 12px;
  }

  .filter-field {
    padding: 1rem 1.25rem;
  }

  .btn-filter-search {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 767px) {
  .darelzaytoon-hero {
    min-height: 600px;
    padding: 150px 0 60px;
  }

  .hero-main-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
  }

  .hero-titles-section {
    margin-bottom: 2rem;
  }

  .modern-search-filter-bar {
    border-radius: 10px;
  }

  .filter-input-group {
    flex-direction: column;
  }

  .filter-field {
    width: 100%;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
  }

  .filter-field:last-of-type {
    border-bottom: none;
  }

  .filter-separator {
    display: none;
  }

  .btn-filter-search {
    width: 100%;
    border-radius: 0 0 10px 10px;
    padding: 1rem;
  }

  .filter-field::after {
    right: 1.25rem;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.modern-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.modern-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.modern-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-content__description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 90%;
}

.banner-content__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: hsl(var(--base));
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.btn-hero-secondary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transform: translateY(-3px);
}

/* Modern Search Card */
.banner-search-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.search-card-header {
  margin-bottom: 2rem;
}

.search-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  display: flex;
  align-items: center;
}

.modern-search-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.search-form-group .form-label {
  font-weight: 600;
  color: #4a5568;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-form-group .form-label i {
  color: hsl(var(--base));
}

.modern-select {
  padding: 0.875rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

.modern-select:focus {
  border-color: hsl(var(--base));
  box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.1);
  outline: none;
}

.btn-search-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Modern Footer Styles */
.modern-footer {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #e2e8f0;
}

.footer-main {
  background: transparent;
}

.modern-footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.modern-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: hsl(var(--base));
  border-radius: 2px;
}

.modern-footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modern-footer-menu .footer-menu__item {
  margin-bottom: 0.75rem;
}

.modern-footer-menu .footer-menu__link {
  color: #cbd5e0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.modern-footer-menu .footer-menu__link:hover {
  color: hsl(var(--base));
  padding-left: 0.5rem;
}

.modern-footer-menu .footer-menu__link i {
  font-size: 0.85rem;
  width: 20px;
}

.modern-social-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.modern-social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.modern-social-link:hover {
  background: hsl(var(--base));
  transform: translateY(-3px);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modern-subscribe-form {
  margin-top: 1.5rem;
}

.modern-input-group {
  display: flex;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.5rem;
  backdrop-filter: blur(10px);
}

.modern-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
}

.modern-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.modern-input:focus {
  outline: none;
  background: rgb(62 71 84);
  box-shadow: none;
}

.modern-subscribe-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: none;
  background: hsl(var(--base));
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.modern-subscribe-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.modern-bottom-footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
  color: hsl(var(--base));
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-policy-link {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0 0.5rem;
}

.footer-policy-link:not(:last-child)::after {
  content: '|';
  position: absolute;
  right: -0.5rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-policy-link:hover {
  color: hsl(var(--base));
}

/* Responsive Design */
@media (max-width: 991px) {
  .modern-title {
    font-size: 2.5rem;
  }

  .banner-content__description {
    font-size: 1rem;
  }

  .banner-search-card {
    margin-top: 2rem;
    padding: 2rem;
  }

  .banner-content__cta {
    flex-direction: column;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .modern-hero {
    min-height: 500px;
    padding: 60px 0;
  }

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

  .modern-subtitle {
    font-size: 0.9rem;
  }

  .banner-search-card {
    padding: 1.5rem;
  }

  .search-card-title {
    font-size: 1.4rem;
  }

  .modern-header .header-right {
    flex-direction: column;
    gap: 0.5rem;
  }

  .modern-footer-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {
  .modern-title {
    font-size: 1.75rem;
  }

  .banner-content__description {
    font-size: 0.95rem;
  }

  .banner-search-card {
    padding: 1.25rem;
  }
}

/* ============================================
   DAREL ZAYTOON HEADER STYLES
   ============================================ */

/* Header Top Bar - White Background Minimal */
.header-top-bar {
  background: #ffffff;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  z-index: 1;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo-only {
  display: flex;
  align-items: center;
}

.header-top-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

.site-logo {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

/* Language Selector */
.language-selector {
  display: flex;
  align-items: center;
}

.language-dropdown {
  position: relative;
}

.language-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  color: #2d3748;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.85rem;
  border-radius: 5px;
}

.language-btn:hover {
  background: #f7fafc;
  border-color: hsl(var(--base));
  color: hsl(var(--base));
}

.language-btn i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
  display: none;
}

.language-dropdown.show .language-btn i {
  transform: rotate(180deg);
}

.language-menu {
  min-width: 100px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.language-menu .dropdown-item {
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #2d3748;
  text-align: center;
  font-size: 0.85rem;
}

.language-menu .dropdown-item:hover {
  background: hsl(var(--base));
  color: #ffffff;
}

/* Social Icons Header */
.social-icons-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-icon-link {
  color: #718096;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.social-icon-link:hover {
  color: hsl(var(--base));
  background: #f7fafc;
  transform: translateY(-2px);
}

.social-icon-link i {
  font-size: 1.2rem;
}

/* Main Header - Transparent Overlay with Background */
.darelzaytoon-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 0;
}

.darelzaytoon-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.header-main {
  background: rgba(26, 32, 44, 0);
  backdrop-filter: blur(7px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

.darelzaytoon-header .navbar {
  padding: 0;
}

.darelzaytoon-header .navbar-toggler {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  padding: 0.5rem 0.75rem;
  background: transparent;
}

.darelzaytoon-header .navbar-toggler-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.darelzaytoon-header .navbar-toggler-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

/* Main Navigation - Centered White Text */
.main-nav {
  align-items: center;
  gap: 0;
  padding: 1rem 0;
}

.main-nav .nav-item {
  margin: 0 0.75rem;
}

.main-nav .nav-link {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.25rem !important;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  width: 80%;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: #ffffff !important;
}

/* Flatpickr Date Picker Styling */
.flatpickr-calendar {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: hsl(var(--base));
  border-color: hsl(var(--base));
}

.flatpickr-day.inRange {
  background: rgba(115, 103, 240, 0.1);
  border-color: rgba(115, 103, 240, 0.2);
}

/* Responsive Design */
@media (max-width: 991px) {
  .header-top-bar {
    padding: 0.75rem 0;
  }

  .logo-text {
    display: none;
  }

  .site-logo {
    max-height: 50px;
  }

  .header-top-right {
    gap: 1rem;
  }

  .main-nav {
    padding: 1rem 0;
    background: #1a202c;
  }

  .main-nav .nav-item {
    margin: 0.25rem 0;
  }

  .main-nav .nav-link {
    color: #ffffff !important;
    padding: 0.75rem 1rem !important;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav .nav-link::after {
    display: none;
  }

  .main-nav .nav-link:hover,
  .main-nav .nav-link.active {
    color: #ffffff !important;
    padding-left: 1.5rem !important;
    background: rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 767px) {
  .header-top-bar {
    padding: 0.5rem 0;
    font-size: 0.8rem;
  }

  .site-logo {
    max-height: 40px;
  }

  .header-top-left,
  .header-top-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .header-top-right {
    align-items: flex-end;
  }

  .social-icons-header {
    gap: 0.5rem;
  }

  .social-icon-link {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .language-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
  }

  .header-top-bar .container {
    padding: 0 1rem;
  }

  .header-top-bar .row {
    margin: 0;
    align-items: center;
    justify-content: center;
  }

  .header-top-bar .col-md-4 {
    flex: 0 0 auto;
    width: auto;
    padding: 0 0.5rem;
  }

  .header-top-left,
  .header-top-right {
    justify-content: center;
    gap: 0.5rem;
  }

  .header-logo-text {
    margin: 0;
  }

  .site-logo {
    max-height: 40px;
  }

  .site-name {
    font-size: 0.9rem;
    display: none;
  }

  .social-icons-header {
    gap: 0.5rem;
  }

  .social-icon-link {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .header-main {
    padding: 0.75rem 0;
  }
}
