/* Copy Animation */

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

  --base-h: 160;
  --base-s: 84%;
  --base-l: 39%;
  --base: var(--base-h) var(--base-s) var(--base-l);

  --base-two-h: 215;
  --base-two-s: 28%;
  --base-two-l: 17%;
  --base-two: var(--base-two-h) var(--base-two-s) var(--base-two-l);

  --white-h: 0;
  --white-s: 0%;
  --white-l: 100%;
  --white: var(--white-h) var(--white-s) var(--white-l);
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

.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;
  text-align: left;
}
.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: 28px;
  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;
  }
}

/* user review page  */

.rating .rating-form-group {
  position: relative;
  height: 24px;
  line-height: 24px;
  font-size: 24px;
  cursor: pointer;
}

.rating .rating-form-group .star-label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  cursor: pointer;
}

.rating .rating-form-group .star-label:last-child {
  position: static;
}

.rating .rating-form-group .star-label:nth-child(1) {
  z-index: 5;
}

.rating .rating-form-group .star-label:nth-child(2) {
  z-index: 4;
}

.rating .rating-form-group .star-label:nth-child(3) {
  z-index: 3;
}

.rating .rating-form-group .star-label:nth-child(4) {
  z-index: 2;
}

.rating .rating-form-group .star-label:nth-child(5) {
  z-index: 1;
}

.rating .rating-form-group .star-label input {
  display: none;
}

.rating .rating-form-group .star-label .icon {
  float: left;
  color: transparent;
}

.rating .rating-form-group .star-label:last-child .icon {
  color: #999;
}

.rating .rating-form-group:not(:hover) label input:checked ~ .icon,
.rating .rating-form-group:hover label:hover input ~ .icon {
  color: #ffc363;
}

.rating .rating-form-group label input:focus:not(:checked) ~ .icon:last-child {
  color: #e5e5e5;
  text-shadow: 0 0 5px #ffc363;
}

.review-input {
  background: #f8f8f8;
}

.review-input:focus {
  border-color: #0068e1;
}

.review-label {
  color: #000 !important;
  text-transform: capitalize;
}

/* share modal */

.copy-link input {
  width: 100%;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  transition: all 0.3s;
  padding-right: 75px;
}

.copy-link span {
  text-align: center;
  position: absolute;
  top: 9px;
  right: 10px;
  cursor: pointer;
  padding-left: 20px;
  font-size: 14px;
  font-weight: normal;
}

.custom-modal__form.share .share-link {
  width: 35px;
  height: 35px;
  color: hsl(var(--white));
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  margin-bottom: 15px;
}

.custom-modal__form.share .share-link:last-of-type {
  margin-right: 0;
}

.custom-modal__form.share .share-link.facebook {
  background: #1877f2;
}

.custom-modal__form.share .share-link.pinterest {
  background: #e60023;
}

.custom-modal__form.share .share-link.linkedin {
  background: #0077b5;
}

.custom-modal__form.share .share-link.twitter {
  background: #1da1f2;
}

.copy-link span {
  top: 13px;
}

.accordion-button:not(.collapsed) {
  color: hsl(var(--base));
}

.empty-slip-message {
  display: grid;
  place-content: center;
  color: #cfcfcf;
  font-size: 0.8754rem;
  font-family: inherit;
  height: 160px;
}

.empty-slip-message img {
  height: 90px;
}

/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 10px !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: hsl(var(--base)) !important;
  padding: 10px 20px;
  background: transparent !important;
  color: hsl(var(--black)) !important;
  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: 50%;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: .3s;
  transform: translateY(-50%);
  color: hsl(var(--black)) !important;
}

.selection {
  width: 100%;
}
.select2-selection.select2-selection--single {
  background: hsl(var(--white));
  border-color: hsl(var(--black)/.2) !important;
  color: hsl(var(--black)) !important;
  padding: 10px !important;
  line-height: 1.2;
  height: 46px !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px !important;
}
.select2-container--default .select2-selection--single {
  border-radius: 10px !important;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  content: "\f106";
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: hsl(var(--black));
  line-height: 23px !important;
}
.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 {
  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 {
  background-color: hsl(var(--white)) !important;
}
.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: 10px !important;
}
.select2-results__option.select2-results__option--selected, .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--black)/.1) !important;
  color: hsl(var(--black)) !important;
}
.select2-results__option.select2-results__option--selected, .select2-results__option--selectable, .select2-container--default .select2-results__option--disabled {
border: 1px solid hsl(var(--white)/.1) !important;
}


.gateway-card {
  padding: 15px;
}
.payment-item__btn-text {
  color: #fff;
}

.payment-item__btn__icon {
  color: #fff;
}

.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: rgb(var(--main));
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding: 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: hsl(var(--base));
  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;
  transition: all 0.3s;
}

.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 hsl(var(--base));
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.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 hsl(var(--base)/.5);
  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: 0px 6px;
  }

}

.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: hsl(var(--base));
  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;
}

/* Language */

.dropdown-lang {
  margin-left:30px !important;
}
@media (max-width: 1199px) {
  .dropdown-lang {
    margin-left:0px !important;
  }
}
.dropdown-lang .language-btn .flag {
  width: 20px;
  height: 15px;
  border-radius: 2px;
}

.dropdown-lang .language-btn::after {
  color: hsl(var(--body-color));
}

.dropdown-lang .language-text {
  color: hsl(var(--body-color));
  font-size: 16px;
}

.dropdown-lang .dropdown-menu {
  width: 112px !important;
  border: 1px solid hsl(var(--border));
  border-radius: 8px;
  padding: 10px !important;
  max-height: 370px;
  overflow-y: auto;
  background-color: #fff;
  z-index: 999;
  box-shadow: var(--box-shadow);
  transform: inherit;
  min-width: 130px !important;
  margin-top: 20px;

}

.dropdown-lang .dropdown-menu.show {
  opacity: 1 !important;
  visibility: visible !important;
}

.dropdown-lang .dropdown-menu a {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000 !important;
  transition: 0.3s;
  padding-bottom: 6px;
  border-bottom: 1px solid #f3f3f3;
}
.dropdown-lang .dropdown-menu a:hover {
  color: hsl(var(--base));
}
.dropdown-lang .dropdown-menu li:last-child a {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.dropdown-lang .dropdown-menu a .flag {
  width: 20px;
  margin-right: 10px;
  height: 15px;
}

.dropdown-lang .dropdown-menu li:last-child a {
  margin-bottom: 0px;
}

.dropdown-lang .a{
  color: #fff !important;
}

.card-empty {
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 1.391rem + 1.268vw, 2.5rem)
    clamp(1.5rem, 0.283rem + 2.536vw, 2.5rem);
}

.card-empty img {
  height: 100px;
}

.card-empty .empty-thumb {
  text-align: center;
  margin-bottom: 10px;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  background-color: hsl(var(--base)) !important;
}

/* ============ MakazEdu Design Overhaul ============ */

/* ---- Banner Section Redesign ---- */
/* ---- Hero Section (Dark Layout) ---- */
.banner.hero-dark {
  background: #1a1a2e;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
}

.banner.hero-dark::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: hsl(var(--base) / 0.08);
  z-index: 0;
}

.banner.hero-dark::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: hsl(var(--base) / 0.06);
  z-index: 0;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  color: #ffffff !important;
  font-weight: 800 !important;
  font-size: 2.4rem !important;
  line-height: 1.2 !important;
  letter-spacing: -0.5px;
}

.hero-title .dynamicColor,
.hero-title span {
  color: hsl(var(--base)) !important;
}

.hero-subtitle {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}

.hero-btn {
  background: hsl(var(--base)) !important;
  border-radius: 50px !important;
  padding: 14px 32px !important;
  font-weight: 600 !important;
  box-shadow: 0 6px 24px hsl(var(--base) / 0.4);
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px hsl(var(--base) / 0.5);
}

.hero-stats {
  margin-top: 10px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat-images img {
  border-radius: 30px;
  height: 36px;
}

.hero-stat-text {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 500;
}

/* Hero Center - Image */
.hero-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 320px;
  height: 380px;
  border-radius: 180px 180px 30px 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border: 3px solid hsl(var(--base) / 0.3);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Right - Service Cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-service-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.hero-service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: hsl(var(--base) / 0.3);
  transform: translateX(-4px);
}

.hero-service-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(var(--base) / 0.12);
  border-radius: 10px;
  color: hsl(var(--base));
  font-size: 20px;
}

.hero-service-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.hero-service-desc {
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-service-price {
  color: hsl(var(--base));
  font-weight: 600;
}

.hero-service-lessons {
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.hero-service-card--highlight {
  border-color: hsl(var(--base) / 0.3);
  background: hsl(var(--base) / 0.06);
  position: relative;
}

.hero-service-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Hero Tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-tag-link {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #cbd5e1 !important;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-tag-link:hover {
  background: hsl(var(--base)) !important;
  color: #fff !important;
  border-color: hsl(var(--base)) !important;
  transform: translateY(-2px);
}

/* Hero Responsive */
@media (max-width: 1199px) {
  .hero-layout {
    grid-template-columns: 1fr 280px 1fr;
    gap: 24px;
  }
  .hero-image-wrapper {
    width: 260px;
    height: 320px;
  }
  .hero-title {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 991px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .hero-left {
    align-items: center;
    order: 1;
  }
  .hero-center {
    order: 0;
  }
  .hero-right {
    order: 2;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-service-card {
    flex: 1 1 250px;
    max-width: 300px;
  }
  .hero-image-wrapper {
    width: 220px;
    height: 270px;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-stat-item {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 1.5rem !important;
  }
  .hero-image-wrapper {
    width: 180px;
    height: 220px;
  }
  .hero-service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .banner.hero-dark {
    border-radius: 0 0 20px 20px;
  }
}

/* ---- Section Headings ---- */
.section-heading__title {
  font-weight: 700 !important;
  color: hsl(var(--base-two)) !important;
  letter-spacing: -0.3px;
}

.section-heading__desc {
  color: #64748b !important;
  max-width: 600px;
  margin-inline: auto;
}

/* ---- Category Section ---- */
.category-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #eef2f6;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.category-card:hover {
  border-color: hsl(var(--base) / 0.4);
  background: #fff;
  transform: translateY(-8px);
  box-shadow: 0 16px 40px hsl(var(--base) / 0.12);
}

.category-card .category-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: linear-gradient(135deg, hsl(var(--base) / 0.12), hsl(var(--base) / 0.04));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.35s ease;
  font-size: 26px;
  color: hsl(var(--base));
}

.category-card:hover .category-card__icon {
  background: hsl(var(--base));
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 20px hsl(var(--base) / 0.3);
}

.category-card .category-card__title {
  font-weight: 600;
  color: #1e293b;
  margin-top: 8px;
}

/* ---- Course Cards ---- */
.course-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef2f6;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: transparent;
}

.course-card .course-card__thumb {
  overflow: hidden;
}

.course-card .course-card__thumb img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.course-card:hover .course-card__thumb img {
  transform: scale(1.08);
}

.course-card__content {
  padding: 22px 20px;
}

.course-card__title {
  font-weight: 600 !important;
  font-size: 1rem !important;
  color: #1e293b !important;
  line-height: 1.4;
}

.course-card__price {
  font-weight: 700 !important;
  color: hsl(var(--base)) !important;
  font-size: 1.125rem;
}

.course-card__rating i {
  color: #fbbf24;
}

/* ---- Choose Us Section ---- */
.choose-us-card,
.choose-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 28px;
  border: 1px solid #eef2f6;
  transition: all 0.35s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.choose-us-card::before,
.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, hsl(var(--base)), hsl(var(--base) / 0.5));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.choose-us-card:hover::before,
.choose-card:hover::before {
  transform: scaleX(1);
}

.choose-us-card:hover,
.choose-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  transform: translateY(-6px);
}

.choose-us-card .choose-us-card__icon,
.choose-card .choose-card__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, hsl(var(--base) / 0.12), hsl(var(--base) / 0.04));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 30px;
  color: hsl(var(--base));
  transition: all 0.35s ease;
}

.choose-us-card:hover .choose-us-card__icon,
.choose-card:hover .choose-card__icon {
  background: hsl(var(--base));
  color: #fff;
  box-shadow: 0 10px 25px hsl(var(--base) / 0.3);
}

/* ---- Course Info / Stats Section ---- */
.course-info-card,
.counter-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.course-info-card:hover,
.counter-card:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* ---- Subscribe / CTA Section ---- */
.subscribe-section,
.cta-section,
.subscribe {
  background: linear-gradient(135deg, hsl(var(--base-two)) 0%, hsl(var(--base-two-h), var(--base-two-s), 12%) 100%) !important;
  border-radius: 24px;
  padding: 70px 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.subscribe-section::before,
.subscribe::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: hsl(var(--base) / 0.08);
}

.subscribe .subscribe-form .btn {
  border-radius: 0 12px 12px 0 !important;
}

.subscribe .subscribe-form .form--control {
  border-radius: 12px 0 0 12px !important;
  border: none;
  padding: 16px 24px;
}

/* ---- Testimonial Section ---- */
.testimonial-card,
.testimonial-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.testimonial-card:hover,
.testimonial-item:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

/* ---- Footer ---- */
.footer {
  background: hsl(var(--base-two)) !important;
  color: #94a3b8;
}

.footer::before {
  background: linear-gradient(90deg, hsl(var(--base)) 0%, hsl(var(--base-h), var(--base-s), 50%) 100%) !important;
}

.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo img {
  filter: brightness(0) invert(1);
}

.footer-menu-link {
  color: #cbd5e1 !important;
  font-weight: 500 !important;
}

.footer-menu-link:hover {
  color: hsl(var(--base)) !important;
}

.footer-menu-link::before {
  background-color: #64748b !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  margin-top: 30px !important;
  padding-top: 24px !important;
}

.footer-rights-text {
  color: #94a3b8 !important;
}

.footer-rights-text a {
  color: hsl(var(--base)) !important;
}

.footer-links a {
  color: #94a3b8 !important;
}

.footer-links a:hover {
  color: hsl(var(--base)) !important;
}

.footer-social-link i {
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  transition: all 0.3s ease;
}

.footer-social-link i:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.footer .dropdown-lang .language-btn {
  color: #cbd5e1 !important;
}

.footer .dropdown-lang .language-text {
  color: #cbd5e1 !important;
}

.footer .dropdown-lang .language-btn::after {
  color: #cbd5e1 !important;
}

/* ---- Auth Pages ---- */
.account {
  background: linear-gradient(160deg, #ecfdf5 0%, #f8fafc 50%, #eff6ff 100%);
  padding: 40px 0 80px !important;
}

@media (max-width: 767px) {
  .account {
    padding: 30px 0 80px !important;
  }
}

.custom-header {
  background: #fff;
  padding: 12px 20px !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border-bottom: 1px solid #eef2f6;
}

main, .main-wrapper {
  margin: 0 !important;
  padding: 0 !important;
}

.custom-header .site-logo img {
  max-height: 38px;
}

.custom-header .account-alt a {
  color: hsl(var(--base)) !important;
  font-weight: 600;
}

.account .section-heading__title {
  font-weight: 700 !important;
  color: hsl(var(--base-two)) !important;
}

.account .section-heading__desc {
  color: #64748b !important;
}

.account .account-form {
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 40px 36px !important;
  box-shadow: 0 16px 50px rgba(0,0,0,0.06) !important;
  border: 1px solid #eef2f6 !important;
}

.account .account-form .form--control {
  border-radius: 12px !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 14px 18px !important;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #f8fafc !important;
  width: 100%;
}

.account .account-form .form--control:focus {
  border-color: hsl(var(--base)) !important;
  box-shadow: 0 0 0 4px hsl(var(--base) / 0.08) !important;
  background: #fff !important;
}

.account .account-form .form-label {
  font-weight: 500;
  color: #374151;
  font-size: 14px;
  margin-bottom: 6px;
}

.account .account-form .btn--base {
  padding: 14px 24px !important;
  border-radius: 12px !important;
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
}

.account .account-form .alt-signup__btn {
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-weight: 500;
  border: 1.5px solid #e2e8f0 !important;
  color: #374151 !important;
  transition: all 0.3s ease;
}

.account .account-form .alt-signup__btn:hover {
  border-color: hsl(var(--base)) !important;
  background: hsl(var(--base) / 0.04) !important;
}

.account .account-form .forgot-pass {
  display: block;
  text-align: center;
  color: hsl(var(--base)) !important;
  font-weight: 500;
  font-size: 14px;
  margin-top: 16px;
}

.account .account-form .form--check {
  margin-bottom: 8px;
}

.account .account-form hr {
  border-color: #eef2f6 !important;
}

/* ---- Buttons Global ---- */
.btn--base {
  background: hsl(var(--base)) !important;
  border-color: hsl(var(--base)) !important;
  color: #fff !important;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 4px 14px hsl(var(--base) / 0.25);
  transition: all 0.3s ease;
}

.btn--base:hover {
  background: hsl(var(--base-h), var(--base-s), 34%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsl(var(--base) / 0.35);
}

.btn--rounded {
  border-radius: 50px !important;
}

/* ---- Form Controls Global ---- */
.form--control {
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.form--control:focus {
  border-color: hsl(var(--base));
  box-shadow: 0 0 0 4px hsl(var(--base) / 0.08);
}

/* ---- Breadcrumb / Inner Hero ---- */
.inner-hero,
.breadcrumb-area {
  background: linear-gradient(135deg, hsl(var(--base-two)), hsl(var(--base-two-h), var(--base-two-s), 12%)) !important;
  padding: 60px 0 !important;
}

/* ---- Course Details ---- */
.course-detail-page {
  background: #f8fafb;
}

.course-sidebar-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* ---- Contact Page ---- */
.contact-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  border: 1px solid #eef2f6;
}

/* ---- Category Section (courses bg) ---- */
.courses {
  background: #f8fafb !important;
  background-image: none !important;
}

.courses-title {
  font-weight: 700 !important;
  color: hsl(var(--base-two)) !important;
}

.courses-description {
  color: #64748b !important;
  margin-bottom: 50px !important;
}

.courses-card {
  border-radius: 16px !important;
  overflow: hidden;
  border: 1px solid #eef2f6;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.courses-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.courses-card-header {
  padding: 28px !important;
}

.courses-card-icon {
  width: 80px !important;
  height: 80px !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, hsl(var(--base) / 0.08), hsl(var(--base) / 0.02)) !important;
}

.courses-card-title {
  font-weight: 600 !important;
  color: #1e293b !important;
}

.courses-card-meta-item .text {
  color: #64748b !important;
}

/* ---- Why Join / Choose Us ---- */
.why-join {
  background: #f8fafb;
}

.why-join-title {
  font-weight: 700 !important;
  color: hsl(var(--base-two)) !important;
}

.why-join-reason {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.why-join-reason:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  transform: translateY(-3px);
  border-color: hsl(var(--base) / 0.2);
}

.why-join-reason-icon {
  width: 48px !important;
  height: 48px !important;
  max-width: 48px !important;
  max-height: 48px !important;
  background: hsl(var(--base) / 0.1);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-join-reason-title {
  color: #1e293b !important;
}

/* ---- Subscribe Now ---- */
.subscribe-now {
  background: linear-gradient(160deg, #ecfdf5 0%, #f8fafc 100%);
}

.subscribe-now-row {
  background: linear-gradient(135deg, hsl(var(--base-two)), hsl(var(--base-two-h), var(--base-two-s), 12%)) !important;
  border-radius: 24px !important;
  padding: 50px 40px !important;
  position: relative;
  overflow: hidden;
}

.subscribe-now-row::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: hsl(var(--base) / 0.1);
}

.subscribe-now-title {
  color: #fff !important;
  font-weight: 700 !important;
}

.subscribe-now-description {
  color: rgba(255,255,255,0.8) !important;
}

.subscribe-now-form-input {
  border-radius: 14px 0 0 14px !important;
  border: none !important;
  padding: 16px 24px !important;
  font-size: 15px;
}

.subscribe-now-form-btn {
  border-radius: 0 14px 14px 0 !important;
  padding: 16px 28px !important;
  font-weight: 600;
}

/* ---- Testimonial / Review Cards ---- */
.student-reviews {
  background: #f8fafb;
}

.student-reviews-title {
  font-weight: 700 !important;
  color: hsl(var(--base-two)) !important;
}

.review-card {
  background: #ffffff !important;
  border-radius: 18px !important;
  padding: 32px 28px !important;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
  height: 100%;
}

.review-card:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.review-card-ratings i {
  color: #fbbf24 !important;
}

.review-card-student-avatar {
  border-radius: 12px !important;
}

/* ---- Course Info / Live Course ---- */
.live-course-info {
  background: #ffffff;
}

.live-course-info-title {
  font-weight: 700 !important;
  color: hsl(var(--base-two)) !important;
}

.live-course-info-lightbox {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.live-course-info-lightbox img {
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.live-course-info-lightbox:hover img {
  transform: scale(1.03);
}

.live-course-info-keypoints-item {
  background: #f8fafb;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.live-course-info-keypoints-item:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-color: hsl(var(--base) / 0.15);
}

.live-course-info-keypoints-icon {
  width: 50px;
  height: 50px;
  background: hsl(var(--base) / 0.1);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Sponsor / Partners ---- */
.sponsor-item img {
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.sponsor-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ---- Courses Page Banner ---- */
.courses-page .banner {
  background: linear-gradient(
    136deg, hsl(159.88deg 80.48% 14.5%), hsl(159.88deg 83.92% 39.02%)) !important;
  position: relative;
  overflow: hidden;
}

.courses-page .banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: hsl(var(--base) / 0.06);
  z-index: 0;
}

.courses-page .banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: hsl(var(--base) / 0.04);
  z-index: 0;
}

.courses-page .banner .custom--container {
  position: relative;
  z-index: 1;
}

.courses-page .banner__title {
  font-weight: 700 !important;
  font-size: 2rem;
}

.courses-page .banner__subtitle {
  opacity: 0.85;
}

.live-video__frame {
  border-radius: 14px !important;
  border: 2px solid rgba(255,255,255,0.15) !important;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.live-video__frame video {
  border-radius: 12px !important;
}

/* ---- Courses Type Title ---- */
.courses-type-title {
  font-weight: 700 !important;
  color: hsl(var(--base-two)) !important;
  font-size: 1.5rem !important;
  margin-bottom: 28px !important;
  padding-bottom: 14px;
  border-bottom: 2px solid #eef2f6;
  position: relative;
}

.courses-type-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: hsl(var(--base));
}

/* ---- Course Card (listing page) ---- */
a.card.course-card {
  border-radius: 16px !important;
  border: 1px solid #eef2f6 !important;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  text-decoration: none;
}

a.card.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  border-color: transparent !important;
}

a.card.course-card .card-header {
  border: none;
  padding: 0;
  overflow: hidden;
}

a.card.course-card .card-header img {
  transition: transform 0.5s ease;
  width: 100%;
}

a.card.course-card:hover .card-header img {
  transform: scale(1.06);
}

.course-card-badge {
  border-radius: 8px !important;
  font-weight: 600;
  font-size: 12px;
}

.course-card-title {
  font-weight: 600 !important;
  color: #1e293b !important;
  line-height: 1.4 !important;
}

.course-card-price {
  font-weight: 700 !important;
  color: hsl(var(--base)) !important;
}

.course-card-btn-enroll {
  border-radius: 10px !important;
  font-weight: 600;
  font-size: 13px;
}

a.card.course-card .card-body {
  padding: 18px 20px !important;
}

a.card.course-card .card-footer {
  background: #f8fafb !important;
  border-top: 1px solid #eef2f6 !important;
  padding: 16px 20px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.course-card-duration {
  color: #64748b !important;
  font-size: 13px !important;
}

.course-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: hsl(var(--base)) !important;
  color: #fff !important;
  padding: 5px 12px !important;
  border-radius: 8px !important;
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 10px hsl(var(--base) / 0.3);
}

.course-card-btn-enroll {
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  gap: 6px;
  display: inline-flex;
  align-items: center;
}

.course-card-price.purchased {
  color: hsl(var(--base)) !important;
  font-weight: 600;
}

/* Course Card Image Container */
a.card.course-card .card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-bottom: none !important;
  padding: 0 !important;
}

.course-card-thumb {
  height: 100% !important;
  object-fit: cover;
  width: 100%;
}

/* Empty State */
.empty-slip-message {
  padding: 60px 20px !important;
  text-align: center;
}

.empty-slip-message img {
  height: 120px !important;
  opacity: 0.7;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .subscribe-section, .subscribe, .cta-section {
    padding: 50px 30px;
    border-radius: 18px;
  }
  .subscribe-now-row {
    padding: 36px 24px !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 767px) {
  .course-card {
    border-radius: 14px;
  }
  .category-card {
    padding: 22px 16px;
    border-radius: 14px;
  }
  .subscribe-section, .subscribe, .cta-section {
    padding: 40px 20px;
    border-radius: 14px;
  }
  .account-form {
    padding: 28px 20px;
    border-radius: 16px;
  }
  .choose-us-card, .choose-card {
    padding: 28px 20px;
    border-radius: 14px;
  }
}

@media (max-width: 575px) {
  .category-card {
    padding: 18px 14px;
    border-radius: 12px;
  }
  .footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .subscribe-now-row {
    padding: 28px 18px !important;
    border-radius: 14px !important;
  }
  .review-card {
    padding: 24px 20px !important;
    border-radius: 14px !important;
  }
  .live-course-info-keypoints-item {
    padding: 16px;
    border-radius: 12px;
  }
  .why-join-reason {
    padding: 18px 16px;
    border-radius: 12px;
  }
  a.card.course-card {
    border-radius: 14px !important;
  }
}

/* ---- Social Login Buttons Override ---- */
.social-login-btn {
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 13px 16px !important;
  font-weight: 500 !important;
  color: #374151 !important;
  transition: all 0.3s ease !important;
  background: #fff !important;
}

.social-login-btn:hover {
  border-color: hsl(var(--base)) !important;
  background: hsl(var(--base) / 0.04) !important;
  color: hsl(var(--base-two)) !important;
  box-shadow: 0 4px 12px hsl(var(--base) / 0.1) !important;
}

.auth-devide {
  color: #94a3b8 !important;
  font-weight: 500;
}

.auth-devide::before,
.auth-devide::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: #e2e8f0;
}

.auth-devide::before {
  left: 0;
}

.auth-devide::after {
  right: 0;
}

/* ---- Password Toggle ---- */
.toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #94a3b8;
  z-index: 5;
}

/* ---- Preloader ---- */
.preloader {
  background: #fff !important;
}

.preloader .logo img {
  max-height: 50px;
}

/* ---- Scroll to top ---- */
.scroll-top {
  background: hsl(var(--base)) !important;
  border-radius: 14px !important;
  width: 44px;
  height: 44px;
  box-shadow: 0 6px 20px hsl(var(--base) / 0.3);
}

/* ---- Language Dropdown ---- */
.language-btn {
  border-radius: 8px !important;
}

/* ---- Breadcrumb Section ---- */
.breadcrumb-section {
  background: linear-gradient(135deg, hsl(var(--base-two)) 0%, hsl(var(--base-two-h), var(--base-two-s), 22%) 100%);
  padding: 50px 0;
}

.breadcrumb-section .breadcrumb-item,
.breadcrumb-section .breadcrumb-item a {
  color: #cbd5e1 !important;
}

.breadcrumb-section .breadcrumb-item.active {
  color: hsl(var(--base)) !important;
}

.breadcrumb-section .page-title {
  color: #fff !important;
  font-weight: 700;
}

/* ---- Contact Page ---- */
.contact-page .banner {
  background: linear-gradient(135deg, hsl(var(--base-two)) 0%, hsl(var(--base-two-h), var(--base-two-s), 22%) 100%) !important;
}

.contact-page .banner__title {
  color: #fff !important;
}

.contact-page .banner__subtitle {
  color: #cbd5e1 !important;
}

.contact-section {
  background: #f8fafb;
}

.contact-section__title {
  color: hsl(var(--base-two)) !important;
  font-weight: 700 !important;
  margin-bottom: 12px;
}

.contact-section__desc {
  color: #64748b;
}

.contact-form .form--control {
  border-radius: 12px !important;
  border: 1.5px solid #e2e8f0 !important;
  padding: 14px 18px !important;
  background: #fff !important;
  transition: all 0.3s ease;
}

.contact-form .form--control:focus {
  border-color: hsl(var(--base)) !important;
  box-shadow: 0 0 0 4px hsl(var(--base) / 0.08) !important;
}

.contact-form textarea.form--control {
  min-height: 140px;
  resize: vertical;
}

.address-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.address-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.address-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: hsl(var(--base) / 0.1) !important;
  color: hsl(var(--base)) !important;
  font-size: 22px;
}

.address-card__title {
  color: hsl(var(--base-two));
  font-weight: 600;
  margin-bottom: 6px;
}

.address-card__desc {
  color: #64748b;
  font-size: 14px;
}

.address-card__link {
  color: hsl(var(--base)) !important;
  font-weight: 500;
}

/* ---- General Form Styling ---- */
.form-group {
  margin-bottom: 16px;
}

/* ---- Pagination ---- */
.pagination .page-item .page-link {
  border-radius: 10px !important;
  border: 1.5px solid #e2e8f0;
  color: #475569;
  font-weight: 500;
  margin: 0 3px;
  transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
  background: hsl(var(--base)) !important;
  border-color: hsl(var(--base)) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px hsl(var(--base) / 0.3);
}

.pagination .page-item .page-link:hover {
  background: hsl(var(--base) / 0.08);
  border-color: hsl(var(--base));
  color: hsl(var(--base));
}

/* ---- Mobile Bottom Navigation ---- */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #ffffff;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  border-top: 1px solid #eef2f6;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #64748b;
  transition: all 0.25s ease;
  min-width: 60px;
}

.mobile-bottom-nav__item.active,
.mobile-bottom-nav__item:hover {
  color: hsl(var(--base));
}

.mobile-bottom-nav__item.active .mobile-bottom-nav__icon {
  background: hsl(var(--base) / 0.1);
  border-radius: 10px;
  padding: 4px 14px;
}

.mobile-bottom-nav__icon {
  font-size: 22px;
  line-height: 1;
  transition: all 0.25s ease;
}

.mobile-bottom-nav__text {
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .footer {
    padding-bottom: 80px !important;
  }
  body {
    padding-bottom: 70px;
  }
  .dashboard {
    padding-bottom: 70px;
  }
}