/* Theme & Language Switcher Styles */

/* Switcher Container in Header (Mobile) */
.header-switchers {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Desktop Switchers */
.desktop-switchers {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-start;
}

/* Desktop Auth Buttons */
.desktop-auth-buttons {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.desktop-auth-buttons .btn {
  font-size: 11px;
  padding: 5px 10px;
  white-space: nowrap;
}

/* Desktop User Actions (logged in) */
.desktop-user-actions {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.desktop-user-actions .btn {
  font-size: 11px;
  padding: 5px 10px;
  white-space: nowrap;
}

/* Theme Toggle Button */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.theme-toggle i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

/* Light mode toggle styles */
body.light-mode .theme-toggle {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

body.light-mode .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Hide/show icons based on mode */
.theme-toggle .fa-sun {
  display: none;
}

body.light-mode .theme-toggle .fa-moon {
  display: none;
}

body.light-mode .theme-toggle .fa-sun {
  display: inline;
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  overflow: hidden;
}

.lang-switcher:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  text-decoration: none;
  color: #fff;
}

.lang-switcher img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-flag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

body.light-mode .lang-switcher {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

body.light-mode .lang-switcher:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* Mobile Topbar Switchers - beside hamburger menu */
.mobile-topbar .header-switchers {
  position: static;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 8px;
}

.mobile-topbar .theme-toggle,
.mobile-topbar .lang-switcher {
  width: 32px;
  height: 32px;
}

.mobile-topbar .theme-toggle i {
  font-size: 14px;
}

.mobile-topbar .lang-switcher img {
  width: 18px;
  height: 18px;
}

.mobile-topbar .theme-toggle,
.mobile-topbar .lang-switcher {
  background: transparent;
}

.mobile-topbar .theme-toggle:hover,
.mobile-topbar .lang-switcher:hover {
  background: transparent;
  transform: none;
}

body.light-mode .mobile-topbar {
  background: rgba(13, 139, 109, 0.14);
  border-bottom: 1px solid rgba(13, 139, 109, 0.18);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.light-mode .mobile-topbar__btn,
body.light-mode .mobile-topbar__balance,
body.light-mode .mobile-topbar .theme-toggle,
body.light-mode .mobile-topbar .lang-switcher {
  color: #0a4f3e;
}

/* Desktop Header Switchers - left side for RTL */
.logo .header-switchers {
  display: none;
}

@media (min-width: 992px) {
  .logo .header-switchers {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

/* Transition for theme change */
body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

body:not(.light-mode) {
  background: var(--auth-bg-1, #071f19) !important;
}

/* Light mode body styles */
body.light-mode {
  background: #f8f9fa !important;
}

body.light-mode .logo,
body.light-mode header {
  background: linear-gradient(135deg, #0d8b6d, #0a7a5f);
}

body.light-mode .navbar-dark .navbar-nav .nav-link {
  color: #fff;
}

body.light-mode hr {
  border-color: rgba(0, 0, 0, 0.1);
}

/* Light mode - Mobile Drawer (Hamburger Menu) */
body.light-mode .mobile-drawer {
  background: #ffffff;
}

body.light-mode .mobile-drawer__header {
  background: linear-gradient(135deg, #0d8b6d, #0a7a5f);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-mode .mobile-drawer__close {
  color: #fff;
}

body.light-mode .mobile-drawer__content {
  background: #ffffff;
}

body.light-mode .mobile-drawer__list a {
  color: #1a1a2e;
}

body.light-mode .mobile-drawer__list a:hover,
body.light-mode .mobile-drawer__list a.is-active {
  background: rgba(13, 139, 109, 0.1);
  color: #0d8b6d;
}

body.light-mode .mobile-drawer__section-title {
  color: #6c757d;
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .mobile-drawer__divider {
  background: rgba(0, 0, 0, 0.08);
}

body.light-mode .mobile-drawer-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* Light mode - Mobile Bottom Nav */
body.light-mode .mobile-bottom-nav {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

body.light-mode .mobile-bottom-nav__item {
  color: #6c757d;
}

body.light-mode .mobile-bottom-nav__item.is-active,
body.light-mode .mobile-bottom-nav__item:hover {
  color: #0d8b6d;
}

body.light-mode .mobile-bottom-nav__item.is-active::before {
  background: #0d8b6d;
}

body:not(.light-mode) .slider {
  background: var(--auth-bg-1) !important;
}

body:not(.light-mode) .slider .swiper-slide {
  background: transparent;
}

body.light-mode .slider {
  background: #f0f4f8 !important;
}

body.light-mode .slider .swiper-slide {
  background: transparent;
}

.slider {
  position: relative;
  z-index: 1;
}

.static-page {
  padding: 18px 0 28px;
}

.static-page__container {
  max-width: 980px;
}

.static-page__card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
}

body.light-mode .static-page__card {
  border-color: rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.static-page__header {
  padding: 16px 18px;
  background: linear-gradient(135deg, #0d8b6d, #0b9c7b);
  color: #ffffff;
}

.static-page__title {
  margin: 0;
  font-weight: 900;
  font-size: 20px;
}

.static-page__body {
  padding: 18px;
  color: rgba(255, 255, 255, 0.92);
}

body.light-mode .static-page__body {
  color: #1a1a2e;
}

.static-page__body a {
  color: var(--auth-gold, #e6edf5);
}

body.light-mode .static-page__body a {
  color: #0d8b6d;
}

.static-page__body hr {
  border-color: rgba(255, 255, 255, 0.14);
}

body.light-mode .static-page__body hr {
  border-color: rgba(0, 0, 0, 0.08);
}

.static-page__body > .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.support-page {
  padding: 0 0 34px;
}

.support-hero {
  position: relative;
  padding: 44px 0 36px;
  overflow: hidden;
  background: radial-gradient(1200px 500px at 50% 0%, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, #0d8b6d, #0b9c7b);
}

.support-hero__container {
  max-width: 980px;
  text-align: center;
}

.support-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.98);
  font-weight: 800;
  font-size: 12px;
}

.support-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 25px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}

.support-back-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  text-decoration: none;
}

.support-back-btn i {
  font-size: 12px;
}

.support-hero__title {
  margin: 12px 0 6px;
  font-weight: 900;
  font-size: 36px;
  color: #ffffff;
}

.support-hero__subtitle {
  margin: 0 auto;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.support-search {
  margin-top: 18px;
}

.support-search__field {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.support-search__input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
}

.support-search__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.support-search__btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.support-page__container {
  max-width: 1100px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.support-quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.support-quick-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 31, 25, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.98);
}

.support-quick-card__chev {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.support-quick-card__main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.support-quick-card__title {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.2;
}

.support-quick-card__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.3;
}

.support-quick-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 auto;
}

.support-quick-card--blue .support-quick-card__icon {
  background: rgba(82, 160, 255, 0.2);
  color: #b9dbff;
}

.support-quick-card--purple .support-quick-card__icon {
  background: rgba(174, 118, 255, 0.2);
  color: #e2c7ff;
}

.support-quick-card--green .support-quick-card__icon {
  background: rgba(22, 196, 146, 0.22);
  color: #bff6e2;
}

.support-section {
  margin-top: 18px;
}

.support-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0 12px;
}

.support-section__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-weight: 900;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.98);
}

.support-section__link {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 31, 25, 0.82);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
}

.support-section__link--back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.support-section__link--back i {
  font-size: 14px;
}

.support-section__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.support-section__link[type="button"] {
  cursor: pointer;
}

.support-section__link.hide {
  display: none;
}

.support-ticket-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-ticket-meta {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.support-ticket-meta--head {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  font-weight: 900;
  font-size: 12px;
}

.support-ticket-meta__cell {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  min-width: 0;
}

.support-ticket-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding: 12px;
}

.support-ticket-card__title {
  font-weight: 900;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.98);
  font-size: 15px;
}

.support-ticket-meta__label {
  display: none;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.support-filter {
  margin-bottom: 14px;
}

.support-filter .list-head {
  margin: 0;
  padding: 0;
}

.support-filter .list-inline-item {
  margin: 0 0 8px;
}

.support-filter .list-inline-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 800;
  font-size: 12px;
}

.support-filter .list-inline-item.active-color a {
  background: rgba(13, 139, 109, 0.18);
  border-color: rgba(13, 139, 109, 0.35);
  color: rgba(255, 255, 255, 0.96);
}

.support-orders-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-orders-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr) minmax(0, 110px);
  gap: 10px;
  align-items: center;
}

.support-orders-meta--head {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  font-weight: 900;
  font-size: 12px;
}

.support-orders-meta__cell {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  min-width: 0;
}

.support-orders-meta__label {
  display: none;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.support-orders-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding: 12px;
}

.support-orders-details-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  font-weight: 900;
}

.support-orders-details-link i {
  font-size: 14px;
}

.support-orders-details-text {
  font-size: 12px;
}

.support-alert-message {
  margin: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.support-empty-message {
  margin: 0;
  padding: 14px;
  text-align: center;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.support-order-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-order-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.support-order-summary__row:last-child {
  border-bottom: 0;
}

.support-order-summary__label {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
}

.support-order-summary__value {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

.support-order-block {
  margin-bottom: 14px;
}

.support-order-block__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.92);
}

.support-order-links {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.support-order-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 800;
}

.support-order-links a:hover {
  text-decoration: underline;
}

.support-order-notes__title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.support-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.support-money-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-money-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}

.support-money-meta--head {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  font-weight: 900;
  font-size: 12px;
}

.support-money-meta__cell {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.86);
  min-width: 0;
}

.support-money-meta__label {
  display: none;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.support-money-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding: 12px;
}

.support-money-details-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  font-weight: 900;
  font-size: 12px;
  cursor: pointer;
}

.support-money-details-link i {
  font-size: 14px;
}

.desc-MonOper {
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.support-ticket-card__title a {
  color: inherit;
  text-decoration: none;
}

.support-ticket-card.closed_ticket {
  opacity: 0.85;
}

.support-reply-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-reply-card {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  padding: 14px;
}

.support-reply-card--support {
  background: rgba(13, 139, 109, 0.12);
  border-color: rgba(13, 139, 109, 0.25);
}

.support-reply-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.support-reply-card__author {
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

.support-reply-card__date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.support-reply-card__content {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.support-reply-card.admin-bg {
  border-right: 3px solid #0d8b6d;
}

.support-reply-card.user-bg {
  border-right: 3px solid #52a0ff;
}

.support-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.support-kb-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-article-list__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(13, 139, 109, 0.15);
  color: #0d8b6d;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.support-kb-content {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.support-list-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 31, 25, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.25);
  padding: 14px;
}

body:not(.light-mode) .support-list-card label,
body:not(.light-mode) .support-list-card p {
  color: rgba(255, 255, 255, 0.9);
}

body:not(.light-mode) .support-list-card .form-control,
body:not(.light-mode) .support-list-card select.form-control,
body:not(.light-mode) .support-list-card textarea.form-control {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

body:not(.light-mode) .support-list-card .form-control::placeholder,
body:not(.light-mode) .support-list-card textarea.form-control::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

body:not(.light-mode) .support-list-card .form-control:focus,
body:not(.light-mode) .support-list-card select.form-control:focus,
body:not(.light-mode) .support-list-card textarea.form-control:focus {
  border-color: rgba(22, 196, 146, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(22, 196, 146, 0.18);
}

body:not(.light-mode) .support-list-card select.btn-secondary,
body:not(.light-mode) .support-list-card select.form-control.btn-secondary {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

body:not(.light-mode) .support-list-card input[type="file"] {
  width: 100%;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  padding: 8px 10px;
  border-radius: 12px;
}

body:not(.light-mode) .support-list-card input[type="file"]::file-selector-button {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  padding: 6px 10px;
  margin-left: 10px;
  cursor: pointer;
}

.support-list-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.support-list-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 18px;
}

.support-list-card__icon--gold {
  background: rgba(255, 193, 7, 0.18);
  color: #ffe7a3;
}

.support-list-card__icon--blue {
  background: rgba(82, 160, 255, 0.2);
  color: #b9dbff;
}

.support-list-card__titles {
  flex: 1;
}

.support-list-card__title {
  margin: 0;
  font-weight: 900;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.98);
}

.support-list-card__subtitle {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.support-article-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.support-article-list li {
  position: relative;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-article-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

body.light-mode .support-hero {
  background: radial-gradient(1200px 500px at 50% 0%, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, #0d8b6d, #0b9c7b);
}

body.light-mode .support-hero__pill {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(255, 255, 255, 0.8);
  color: #0a4f3e;
}

body.light-mode .support-hero__subtitle {
  color: rgba(255, 255, 255, 0.96);
}

body.light-mode .support-search__field {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

body.light-mode .support-search__input {
  color: #1a1a2e;
}

body.light-mode .support-search__input::placeholder {
  color: rgba(26, 26, 46, 0.6);
}

body.light-mode .support-search__btn {
  background: rgba(13, 139, 109, 0.12);
  color: #0d8b6d;
}

body.light-mode .support-quick-card,
body.light-mode .support-list-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
  color: #1a1a2e;
}

body.light-mode .support-list-card label,
body.light-mode .support-list-card p {
  color: rgba(26, 26, 46, 0.9);
}

body.light-mode .support-list-card .form-control,
body.light-mode .support-list-card select.form-control,
body.light-mode .support-list-card textarea.form-control {
  background: rgba(240, 244, 248, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(26, 26, 46, 0.92);
}

body.light-mode .support-list-card .form-control::placeholder,
body.light-mode .support-list-card textarea.form-control::placeholder {
  color: rgba(26, 26, 46, 0.55);
}

body.light-mode .support-list-card .form-control:focus,
body.light-mode .support-list-card select.form-control:focus,
body.light-mode .support-list-card textarea.form-control:focus {
  border-color: rgba(13, 139, 109, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(13, 139, 109, 0.16);
}

body.light-mode .support-list-card select.btn-secondary,
body.light-mode .support-list-card select.form-control.btn-secondary {
  background: rgba(240, 244, 248, 0.9);
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(26, 26, 46, 0.92);
}

body.light-mode .support-list-card input[type="file"] {
  background: rgba(240, 244, 248, 0.9);
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(26, 26, 46, 0.9);
}

body.light-mode .support-list-card input[type="file"]::file-selector-button {
  background: rgba(13, 139, 109, 0.12);
  border-color: rgba(13, 139, 109, 0.18);
  color: #0d8b6d;
}

body.light-mode .support-quick-card__chev {
  background: rgba(13, 139, 109, 0.12);
  color: #0d8b6d;
}

body.light-mode .support-quick-card--blue .support-quick-card__icon {
  background: rgba(82, 160, 255, 0.16);
  color: #2a6fdd;
}

body.light-mode .support-quick-card--purple .support-quick-card__icon {
  background: rgba(174, 118, 255, 0.16);
  color: #7b3ff1;
}

body.light-mode .support-quick-card--green .support-quick-card__icon {
  background: rgba(22, 196, 146, 0.16);
  color: #0d8b6d;
}

body.light-mode .support-quick-card__desc,
body.light-mode .support-list-card__subtitle {
  color: rgba(26, 26, 46, 0.7);
}

body.light-mode .support-list-card__title {
  color: #1a1a2e;
}

body.light-mode .support-list-card__icon--gold {
  background: rgba(255, 193, 7, 0.18);
  color: #b57b00;
}

body.light-mode .support-list-card__icon--blue {
  background: rgba(82, 160, 255, 0.16);
  color: #2a6fdd;
}

body.light-mode .support-section__title {
  color: #1a1a2e;
}

body.light-mode .support-section__link {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(13, 139, 109, 0.08);
  color: #0d8b6d;
}

body.light-mode .support-ticket-meta--head,
body.light-mode .support-ticket-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(240, 244, 248, 0.9);
}

body.light-mode .support-ticket-meta__cell,
body.light-mode .support-ticket-card__title {
  color: rgba(26, 26, 46, 0.9);
}

body.light-mode .support-ticket-card__title {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .support-ticket-meta__label {
  color: rgba(26, 26, 46, 0.6);
}

body.light-mode .support-filter .list-inline-item a {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(240, 244, 248, 0.9);
  color: rgba(26, 26, 46, 0.9);
}

body.light-mode .support-filter .list-inline-item.active-color a {
  background: rgba(13, 139, 109, 0.1);
  border-color: rgba(13, 139, 109, 0.22);
  color: #0d8b6d;
}

body.light-mode .support-orders-meta--head,
body.light-mode .support-orders-card,
body.light-mode .support-money-meta--head,
body.light-mode .support-money-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(240, 244, 248, 0.9);
}

body.light-mode .support-orders-meta__cell,
body.light-mode .support-money-meta__cell,
body.light-mode .support-alert-message,
body.light-mode .support-order-summary__value,
body.light-mode .support-order-links {
  color: rgba(26, 26, 46, 0.9);
}

body.light-mode .support-orders-meta__label,
body.light-mode .support-money-meta__label,
body.light-mode .support-order-summary__label {
  color: rgba(26, 26, 46, 0.6);
}

body.light-mode .support-order-summary__row {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .support-empty-message {
  color: rgba(26, 26, 46, 0.7);
}

body.light-mode .desc-MonOper {
  border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .support-reply-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(240, 244, 248, 0.9);
}

body.light-mode .support-reply-card--support {
  background: rgba(13, 139, 109, 0.08);
  border-color: rgba(13, 139, 109, 0.2);
}

body.light-mode .support-reply-card__header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .support-reply-card__author {
  color: rgba(26, 26, 46, 0.95);
}

body.light-mode .support-reply-card__date {
  color: rgba(26, 26, 46, 0.6);
}

body.light-mode .support-reply-card__content {
  color: rgba(26, 26, 46, 0.88);
}

body.light-mode .support-kb-content {
  border-top-color: rgba(0, 0, 0, 0.08);
  color: rgba(26, 26, 46, 0.88);
}

body.light-mode .support-article-list__num {
  background: rgba(13, 139, 109, 0.12);
  color: #0d8b6d;
}

body.light-mode .support-article-list a {
  background: rgba(240, 244, 248, 0.9);
  color: #1a1a2e;
}

@media (max-width: 991.98px) {
  .support-hero {
    padding: 36px 0 30px;
  }

  .support-hero__title {
    font-size: 28px;
  }

  .support-ticket-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }

  .support-ticket-meta--head {
    display: none;
  }

  .support-ticket-meta__label {
    display: inline;
  }

  .support-ticket-meta__cell {
    padding: 4px 0;
  }

  .support-orders-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }

  .support-orders-meta--head {
    display: none;
  }

  .support-orders-meta__label {
    display: inline;
  }

  .support-money-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }

  .support-money-meta--head {
    display: none;
  }

  .support-money-meta__label {
    display: inline;
  }

  .support-orders-details-text {
    display: none;
  }

  .support-order-summary__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .support-ticket-card {
    padding: 14px;
  }

  .support-ticket-card__title {
    font-size: 14px;
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .support-page__container {
    margin-top: -12px;
  }

  .support-quick {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .support-lists {
    grid-template-columns: 1fr;
  }

  .support-kb-grid {
    grid-template-columns: 1fr;
  }

  .support-section__link--back {
    padding: 8px;
  }

  .support-section__link--back .support-section__link-text {
    display: none;
  }
}

/* ========================================
  DARK MODE STYLES (Default)
  ======================================== */

/* Dark mode - Mobile Drawer (Hamburger Menu) */
.mobile-drawer {
  background: linear-gradient(180deg, #0b3a2e, #071f19);
}

.mobile-drawer__header {
  background: linear-gradient(135deg, #0d8b6d, #0a7a5f);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer__close {
  color: #fff;
}

.mobile-drawer__content {
  background: transparent;
}

.mobile-drawer__list a {
  color: #ffffff;
}

.mobile-drawer__list a:hover,
.mobile-drawer__list a.is-active {
  background: rgba(13, 139, 109, 0.2);
  color: #0d8b6d;
}

.mobile-drawer__section-title {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.mobile-drawer__divider {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-drawer-overlay {
  background: rgba(0, 0, 0, 0.6);
}

@media (min-width: 992px) {
  header {
    min-height: auto;
    position: relative;
    z-index: 2000;
  }

  header .logo {
    padding: 12px 0;
  }

  .desktop-header__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
  }

  body:not(.light-mode) .desktop-header__inner {
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(7, 31, 25, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.light-mode .desktop-header__inner {
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
  }

  .desktop-header__logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }

  .desktop-header__logo img {
    height: 40px;
    width: auto;
  }

  .desktop-header__nav {
    flex: 1;
    padding: 0;
  }

  .desktop-header__nav .navbar {
    padding: 0;
  }

  .desktop-header__nav .navbar-nav {
    width: 100%;
    gap: 6px;
    justify-content: flex-start;
  }

  .desktop-header__actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }

  body:not(.light-mode) header {
    background: rgba(11, 58, 46, 0.88) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  body:not(.light-mode) header .logo {
    background: transparent !important;
  }

  body.light-mode header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }

  .desktop-header__nav .navbar-nav .nav-link {
    padding: 6px 8px;
    border-radius: 10px;
    font-size: 14px;
    margin: 0 !important;
  }

  header .dropdown-menu {
    z-index: 2100;
  }

  body:not(.light-mode) .desktop-header__nav .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  body.light-mode .desktop-header__nav .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.18);
  }

  body:not(.light-mode) header .btn-secondary {
    background: rgba(0, 0, 0, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  body:not(.light-mode) header .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.28) !important;
  }
}

/* Dark mode - Mobile Bottom Nav */
.mobile-bottom-nav {
  background: linear-gradient(180deg, #0b3a2e, #071f19);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

/* Error Login Page */
.support-hero--compact {
  padding: 40px 0 30px;
}

.support-error-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  max-width: 500px;
  margin: 0 auto;
}

.support-error-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(13, 139, 109, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #0d8b6d;
}

.support-error-card__icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.support-error-card__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.support-error-card__desc {
  margin: 0 0 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.support-error-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.support-error-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.support-error-card__btn--primary {
  background: linear-gradient(135deg, #0d8b6d, #0b9c7b);
  color: #fff;
}

.support-error-card__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 139, 109, 0.3);
}

.support-error-card__btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

.support-error-card__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Light mode for error card */
body.light-mode .support-error-card {
  border-color: rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

body.light-mode .support-error-card__icon {
  background: rgba(13, 139, 109, 0.1);
}

body.light-mode .support-error-card__title {
  color: #1a1a2e;
}

body.light-mode .support-error-card__desc {
  color: rgba(26, 26, 46, 0.7);
}

body.light-mode .support-error-card__btn--secondary {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1a2e;
}

body.light-mode .support-error-card__btn--secondary:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* ========================================
   REFERRALS PAGE STYLES
   ======================================== */
.support-referral-card {
  padding: 0;
  overflow: hidden;
}

.support-referral-card__header {
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(13, 139, 109, 0.15), rgba(13, 139, 109, 0.08));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.support-referral-card__header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.support-referral-card__body {
  padding: 20px;
}

.support-referral-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.support-referral-link .form-control {
  flex: 1;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.btn-copy-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d8b6d, #0b9c7b);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-copy-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(13, 139, 109, 0.3);
}

.support-referral-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.support-referral-stats .stat-item {
  flex: 1;
  min-width: 140px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.support-referral-stats .stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.support-referral-stats .stat-value {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.support-referral-stats .stat-value.highlight {
  color: #0d8b6d;
}

.support-referral-card__notes {
  padding: 16px 20px;
  background: rgba(255, 193, 7, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.support-referral-card__notes h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ffc107;
  display: flex;
  align-items: center;
  gap: 8px;
}

.support-referral-card__notes ul {
  margin: 0;
  padding: 0 20px;
  list-style: disc;
}

.support-referral-card__notes li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.support-referral-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-banner-card {
  padding: 16px;
}

.support-banner-card__preview {
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

.support-banner-card__preview img {
  width: 100%;
  height: auto;
  display: block;
}

.support-banner-card__code label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.support-banner-card__code textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  font-family: monospace;
  resize: none;
}

/* ========================================
   PROFILE PAGE STYLES
   ======================================== */
.support-alert {
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
}

.support-alert--error {
  background: rgba(220, 53, 69, 0.12);
  border: 1px solid rgba(220, 53, 69, 0.25);
  color: #ff6b7a;
}

.support-alert--success {
  background: rgba(13, 139, 109, 0.12);
  border: 1px solid rgba(13, 139, 109, 0.25);
  color: #0d8b6d;
}

.support-alert p {
  margin: 0;
}

.support-profile-card {
  padding: 0;
  overflow: hidden;
}

.support-profile-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(13, 139, 109, 0.12), rgba(13, 139, 109, 0.05));
}

.support-profile-card__avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(13, 139, 109, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  color: #0d8b6d;
  flex-shrink: 0;
}

.support-profile-card__info h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.support-profile-card__info p {
  margin: 0 0 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.support-profile-card__hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.support-profile-card__hint a {
  color: #0d8b6d;
  text-decoration: none;
}

.support-form-card {
  padding: 20px;
}

.support-form-card__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 193, 7, 0.08);
  border: 1px solid rgba(255, 193, 7, 0.15);
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.support-form-card__note i {
  color: #ffc107;
  font-size: 16px;
  margin-top: 2px;
}

.support-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-form-group {
  display: flex;
  flex-direction: column;
}

.support-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.support-form-group label .required {
  color: #dc3545;
}

.support-form-group .form-control {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.support-form-group .form-control:focus {
  border-color: rgba(13, 139, 109, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(13, 139, 109, 0.15);
}

.support-form-group select.form-control {
  height: auto;
  min-height: 48px;
  padding: 12px 40px 12px 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  background-size: 12px;
  cursor: pointer;
}

.support-form-group select.form-control option {
  background: #0d8b6d;
  color: #fff;
  padding: 12px;
}

.support-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.support-checkbox input {
  display: none;
}

.support-checkbox__mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.support-checkbox input:checked + .support-checkbox__mark {
  background: #0d8b6d;
  border-color: #0d8b6d;
}

.support-checkbox input:checked + .support-checkbox__mark::after {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 12px;
  color: #fff;
}

.support-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.support-btn--primary {
  background: linear-gradient(135deg, #0d8b6d, #0b9c7b);
  color: #fff;
}

.support-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 139, 109, 0.3);
}

.support-btn--sm {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 10px;
}

/* ========================================
   DESIGN ORDERS LIST STYLES
   ======================================== */
.support-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 14px;
  transition: all 0.2s ease;
}

.support-hero__link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.support-empty-state {
  text-align: center;
  padding: 40px 20px;
}

.support-empty-state i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}

.support-empty-state p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   CHARGE OPERATIONS STYLES
   ======================================== */
.support-operations-header {
  background: rgba(13, 139, 109, 0.15);
  border-color: rgba(13, 139, 109, 0.25);
}

.support-operations-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: center;
}

.support-operations-col {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.support-operations-header .support-operations-col {
  font-weight: 600;
  color: #fff;
}

.support-operations-item {
  margin-top: 10px;
}

.support-operations-amount {
  font-weight: 700;
  color: #0d8b6d;
}

.support-operations-status {
  font-weight: 600;
}

/* Light Mode - Charge Operations */
body.light-mode .support-operations-header {
  background: rgba(13, 139, 109, 0.1);
  border-color: rgba(13, 139, 109, 0.2);
}

body.light-mode .support-operations-col {
  color: rgba(26, 26, 46, 0.88);
}

body.light-mode .support-operations-header .support-operations-col {
  color: #1a1a2e;
}

/* Responsive - Charge Operations */
@media (max-width: 767.98px) {
  .support-operations-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  
  .support-operations-col {
    text-align: right;
  }
  
  .support-operations-col::before {
    content: attr(data-label) ": ";
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
  }
  
  body.light-mode .support-operations-col::before {
    color: rgba(26, 26, 46, 0.6);
  }
}

/* Light Mode - Referrals */
body.light-mode .support-referral-card__header {
  background: linear-gradient(135deg, rgba(13, 139, 109, 0.1), rgba(13, 139, 109, 0.05));
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .support-referral-card__header h3 {
  color: #1a1a2e;
}

body.light-mode .support-referral-link .form-control {
  background: rgba(240, 244, 248, 0.9);
  border-color: rgba(0, 0, 0, 0.12);
  color: #1a1a2e;
}

body.light-mode .support-referral-stats .stat-item {
  background: rgba(240, 244, 248, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .support-referral-stats .stat-label {
  color: rgba(26, 26, 46, 0.6);
}

body.light-mode .support-referral-stats .stat-value {
  color: #1a1a2e;
}

body.light-mode .support-referral-card__notes {
  background: rgba(255, 193, 7, 0.08);
  border-top-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .support-referral-card__notes li {
  color: rgba(26, 26, 46, 0.8);
}

body.light-mode .support-banner-card__preview {
  background: rgba(240, 244, 248, 0.9);
}

body.light-mode .support-banner-card__code label {
  color: rgba(26, 26, 46, 0.6);
}

body.light-mode .support-banner-card__code textarea {
  background: rgba(240, 244, 248, 0.9);
  border-color: rgba(0, 0, 0, 0.12);
  color: #1a1a2e;
}

/* Light Mode - Profile */
body.light-mode .support-alert--error {
  background: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

body.light-mode .support-alert--success {
  background: rgba(13, 139, 109, 0.08);
  border-color: rgba(13, 139, 109, 0.2);
}

body.light-mode .support-profile-card__header {
  background: linear-gradient(135deg, rgba(13, 139, 109, 0.08), rgba(13, 139, 109, 0.03));
}

body.light-mode .support-profile-card__avatar {
  background: rgba(13, 139, 109, 0.1);
}

body.light-mode .support-profile-card__info h3 {
  color: #1a1a2e;
}

body.light-mode .support-profile-card__info p {
  color: rgba(26, 26, 46, 0.7);
}

body.light-mode .support-profile-card__hint {
  color: rgba(26, 26, 46, 0.6);
}

body.light-mode .support-form-card__note {
  background: rgba(255, 193, 7, 0.06);
  border-color: rgba(255, 193, 7, 0.12);
  color: rgba(26, 26, 46, 0.85);
}

body.light-mode .support-form-group label {
  color: rgba(26, 26, 46, 0.85);
}

body.light-mode .support-form-group .form-control {
  background: rgba(240, 244, 248, 0.9);
  border-color: rgba(0, 0, 0, 0.12);
  color: #1a1a2e;
}

body.light-mode .support-form-group select.form-control {
  background: rgba(240, 244, 248, 0.9) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a2e' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat left 14px center;
  background-size: 12px;
}

body.light-mode .support-form-group select.form-control option {
  background: #0d8b6d;
  color: #fff;
}

body.light-mode .support-checkbox {
  color: rgba(26, 26, 46, 0.88);
}

body.light-mode .support-checkbox__mark {
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(240, 244, 248, 0.9);
}

body.light-mode .support-empty-state i {
  color: rgba(26, 26, 46, 0.25);
}

body.light-mode .support-empty-state p {
  color: rgba(26, 26, 46, 0.6);
}

/* Responsive - Referrals & Profile */
@media (max-width: 991.98px) {
  .support-referral-banners {
    grid-template-columns: 1fr;
  }

  .support-form-grid {
    grid-template-columns: 1fr;
  }

  .support-form-submit {
    flex-direction: column;
    align-items: stretch;
  }

  .support-form-submit .g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
  }

  .support-profile-card__header {
    flex-direction: column;
    text-align: center;
  }
}

.mobile-bottom-nav__item {
  color: rgba(255, 255, 255, 0.7);
}

.mobile-bottom-nav__item.is-active,
.mobile-bottom-nav__item:hover {
  color: #0d8b6d;
}

.mobile-bottom-nav__item.is-active::before {
  background: #0d8b6d;
}

/* ========================================
   PACKAGES PAGE STYLES
   ======================================== */
.packages-page {
  min-height: 100vh;
}

/* Category Tabs */
.packages-tabs {
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.packages-tabs__wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: center;
}

.packages-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.packages-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  text-decoration: none;
}

.packages-tab.active {
  background: #0d8b6d;
  border-color: #0d8b6d;
  color: #fff;
}

/* Hero Section */
.packages-hero {
  text-align: center;
  padding: 40px 0 30px;
  background: linear-gradient(135deg, rgba(13, 139, 109, 0.15), rgba(13, 139, 109, 0.05));
}

.packages-hero__title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.packages-hero__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 0 50px;
}

/* Package Card */
.package-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: rgba(13, 139, 109, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Card Header */
.package-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.package-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(13, 139, 109, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-card__icon i {
  font-size: 20px;
  color: #0d8b6d;
}

.package-card__title-wrap {
  flex: 1;
  min-width: 0;
}

.package-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.3;
}

.package-card__badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.package-card__badge--discount {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}

.package-card__badge--new {
  background: rgba(13, 139, 109, 0.15);
  color: #0d8b6d;
}

/* Features List */
.package-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.package-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}

.package-card__features li:last-child {
  margin-bottom: 0;
}

.package-card__features i {
  color: #0d8b6d;
  font-size: 12px;
}

/* Price Section */
.package-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.package-card__price-old {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.package-card__price-current {
  font-size: 28px;
  font-weight: 800;
  color: #0d8b6d;
}

.package-card__price-per {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.package-card__discount-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
  font-size: 11px;
  font-weight: 600;
}

/* Quantity Section */
.package-card__quantity {
  margin-bottom: 16px;
}

.package-card__quantity label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}

.package-card__range-info {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 8px;
}

.package-card__input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.package-card__input:focus {
  outline: none;
  border-color: rgba(13, 139, 109, 0.5);
}

.package-card__slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to left, #0d8b6d 0%, #0d8b6d 0%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
}

.package-card__slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: transparent;
}

.package-card__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0d8b6d;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  margin-top: -6px;
}

.package-card__slider::-moz-range-track {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: transparent;
}

.package-card__slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0d8b6d;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.package-card__slider::-moz-range-progress {
  background: #0d8b6d;
  height: 6px;
  border-radius: 3px;
}

.package-card__slider.disable {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Total Section */
.package-card__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 12px;
  background: rgba(13, 139, 109, 0.1);
  border-radius: 10px;
}

.package-card__total-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.package-card__total-value {
  font-size: 18px;
  font-weight: 700;
  color: #0d8b6d;
}

/* Order Button */
.package-card__btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d8b6d, #0b9c7b);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.package-card__btn:hover {
  background: linear-gradient(135deg, #0b9c7b, #0d8b6d);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 139, 109, 0.4);
}

/* Light Mode - Packages */
body.light-mode .packages-tabs {
  background: rgba(0, 0, 0, 0.04);
}

body.light-mode .packages-tab {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(26, 26, 46, 0.85);
}

body.light-mode .packages-tab:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #1a1a2e;
}

body.light-mode .packages-tab.active {
  background: #0d8b6d;
  border-color: #0d8b6d;
  color: #fff;
}

body.light-mode .packages-hero {
  background: linear-gradient(135deg, rgba(13, 139, 109, 0.1), rgba(13, 139, 109, 0.03));
}

body.light-mode .packages-hero__title {
  color: #1a1a2e;
}

body.light-mode .packages-hero__subtitle {
  color: rgba(26, 26, 46, 0.6);
}

body.light-mode .package-card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

body.light-mode .package-card:hover {
  border-color: rgba(13, 139, 109, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

body.light-mode .package-card__title {
  color: #1a1a2e;
}

body.light-mode .package-card__features li {
  color: rgba(26, 26, 46, 0.75);
}

body.light-mode .package-card__price {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .package-card__price-old {
  color: rgba(26, 26, 46, 0.5);
}

body.light-mode .package-card__price-per {
  color: rgba(26, 26, 46, 0.6);
}

body.light-mode .package-card__quantity label {
  color: rgba(26, 26, 46, 0.85);
}

body.light-mode .package-card__range-info {
  color: rgba(26, 26, 46, 0.5);
}

body.light-mode .package-card__input {
  background: rgba(240, 244, 248, 0.9);
  border-color: rgba(0, 0, 0, 0.12);
  color: #1a1a2e;
}

body.light-mode .package-card__slider {
  background: rgba(0, 0, 0, 0.1);
}

body.light-mode .package-card__total {
  background: rgba(13, 139, 109, 0.08);
}

body.light-mode .package-card__total-label {
  color: rgba(26, 26, 46, 0.7);
}

/* Responsive - Packages */
@media (max-width: 1199.98px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .packages-hero__title {
    font-size: 26px;
  }
}

@media (max-width: 767.98px) {
  .packages-tabs__wrapper {
    justify-content: flex-start;
    padding: 0 15px;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .packages-hero {
    padding: 30px 0 20px;
  }
  
  .packages-hero__title {
    font-size: 22px;
  }
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */
.home-page {
  min-height: 100vh;
}

/* Home Hero Section */
.home-hero {
  text-align: center;
  padding: 50px 0 40px;
  background: linear-gradient(135deg, rgba(13, 139, 109, 0.2), rgba(13, 139, 109, 0.05));
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(13, 139, 109, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.home-hero__title {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  position: relative;
}

.home-hero__subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* Featured Package (Super Extra) */
.home-featured {
  padding: 30px 0;
}

.home-featured__title {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.home-featured__title::before,
.home-featured__title::after {
  content: '';
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0d8b6d);
}

.home-featured__title::after {
  background: linear-gradient(90deg, #0d8b6d, transparent);
}

.home-featured__card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(13, 139, 109, 0.15), rgba(13, 139, 109, 0.05));
  border: 2px solid rgba(13, 139, 109, 0.3);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.home-featured__card::before {
  content: '⭐';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 24px;
}

.home-featured__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.home-featured__card-timer {
  text-align: center;
  padding: 12px;
  background: rgba(220, 53, 69, 0.15);
  border-radius: 10px;
  margin-bottom: 20px;
}

.home-featured__card-timer-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.home-featured__card-timer-value {
  font-size: 18px;
  font-weight: 700;
  color: #dc3545;
}

.home-featured__card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.home-featured__card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.home-featured__card-feature i {
  color: #0d8b6d;
}

/* Home Category Tabs */
.home-tabs {
  background: rgba(0, 0, 0, 0.25);
  padding: 16px 0;
  margin-bottom: 30px;
  border-radius: 16px;
}

.home-tabs__wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 15px;
}

.home-tab {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s ease;
  cursor: pointer;
}

.home-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.home-tab.active {
  background: linear-gradient(135deg, #0d8b6d, #0b9c7b);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(13, 139, 109, 0.4);
}

/* Home Packages Grid */
.home-packages {
  padding: 0 0 40px;
}

.home-packages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Home Package Card */
.home-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.home-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(13, 139, 109, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.home-card:hover {
  border-color: rgba(13, 139, 109, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.home-card__header {
  text-align: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.4;
}

.home-card__timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(220, 53, 69, 0.15);
  border-radius: 20px;
  font-size: 12px;
  color: #dc3545;
  font-weight: 600;
}

.home-card__timer i {
  font-size: 11px;
}

/* Card Features */
.home-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}

.home-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.home-card__features li:last-child {
  margin-bottom: 0;
}

.home-card__features i {
  color: #0d8b6d;
  font-size: 12px;
  width: 16px;
  text-align: center;
}

/* Card Price */
.home-card__price {
  text-align: center;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(13, 139, 109, 0.08);
  border-radius: 12px;
}

.home-card__price-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.home-card__price-old {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  margin-left: 8px;
}

.home-card__price-current {
  font-size: 32px;
  font-weight: 800;
  color: #0d8b6d;
}

.home-card__price-currency {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

/* Card Quantity */
.home-card__quantity {
  margin-bottom: 16px;
}

.home-card__quantity-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.home-card__quantity-range {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.home-card__input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 15px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.home-card__input:focus {
  outline: none;
  border-color: rgba(13, 139, 109, 0.5);
  background: rgba(0, 0, 0, 0.35);
}

.home-card__input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.home-card__slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to left, #0d8b6d 0%, rgba(255, 255, 255, 0.15) 0%);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
}

.home-card__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0d8b6d;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.home-card__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0d8b6d;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.home-card__slider.disable {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Card Button */
.home-card__btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d8b6d, #0b9c7b);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-card__btn:hover {
  background: linear-gradient(135deg, #0b9c7b, #0aa88a);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 139, 109, 0.4);
}

.home-card__btn i {
  font-size: 14px;
}

/* Reviews Section - Slider Design */
.home-reviews-section {
  padding: 50px 0;
  margin-top: 40px;
}

.home-reviews-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

.home-reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.home-reviews-slider__container {
  flex: 1;
  overflow: hidden;
}

.home-reviews-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.home-reviews-slider__card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
}

.home-reviews-slider__nav {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  color: #333;
}

.home-reviews-slider__nav:hover {
  background: #0d8b6d;
  color: #fff;
  transform: scale(1.1);
}

.home-reviews-slider__nav i {
  font-size: 16px;
}

.home-reviews-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.home-reviews-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-reviews-slider__dot.active {
  background: #0d8b6d;
  width: 30px;
  border-radius: 5px;
}

/* Review Card */
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.home-reviews-slider__card .review-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  flex: initial;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d8b6d, #0b9c7b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.review-card__meta {
  flex: 1;
  text-align: right;
}

.review-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}

.review-card__date {
  font-size: 12px;
  color: #999;
}

.review-card__stars {
  margin-bottom: 12px;
  text-align: right;
}

.review-card__stars .star {
  font-size: 16px;
  color: #ddd;
}

.review-card__stars .star.filled {
  color: #ffc107;
}

.review-card__text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
  flex-grow: 1;
  text-align: right;
}

.review-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.review-card__verified {
  font-size: 12px;
  color: #0d8b6d;
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-card__helpful {
  padding: 6px 14px;
  border-radius: 20px;
  background: #f5f5f5;
  border: none;
  color: #666;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-card__helpful:hover {
  background: rgba(13, 139, 109, 0.1);
  color: #0d8b6d;
}

.home-reviews-section__add {
  text-align: center;
  margin-top: 30px;
}

.home-reviews-section__add-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 30px;
  background: #0d8b6d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.home-reviews-section__add-btn:hover {
  background: #0a7a5f;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 139, 109, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
  .home-reviews-slider__card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}

@media (max-width: 767px) {
  .home-reviews-slider__card {
    flex: 0 0 100%;
    min-width: 100%;
  }
  .home-reviews-slider__nav {
    width: 35px;
    height: 35px;
  }
  .home-reviews-slider__nav i {
    font-size: 14px;
  }
}

/* Light Mode - Home Page */
body.light-mode .home-hero {
  background: linear-gradient(135deg, rgba(13, 139, 109, 0.12), rgba(13, 139, 109, 0.03));
}

body.light-mode .home-hero__title {
  color: #1a1a2e;
}

body.light-mode .home-hero__subtitle {
  color: rgba(26, 26, 46, 0.7);
}

body.light-mode .home-featured__title {
  color: #1a1a2e;
}

body.light-mode .home-featured__card {
  background: linear-gradient(135deg, rgba(13, 139, 109, 0.08), rgba(13, 139, 109, 0.02));
  border-color: rgba(13, 139, 109, 0.2);
}

body.light-mode .home-featured__card-title {
  color: #1a1a2e;
}

body.light-mode .home-featured__card-feature {
  color: rgba(26, 26, 46, 0.85);
}

body.light-mode .home-tabs {
  background: rgba(0, 0, 0, 0.04);
}

body.light-mode .home-tab {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(26, 26, 46, 0.8);
}

body.light-mode .home-tab:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #1a1a2e;
}

body.light-mode .home-tab.active {
  background: linear-gradient(135deg, #0d8b6d, #0b9c7b);
  color: #fff;
}

body.light-mode .home-card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

body.light-mode .home-card:hover {
  border-color: rgba(13, 139, 109, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

body.light-mode .home-card__header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .home-card__title {
  color: #1a1a2e;
}

body.light-mode .home-card__features li {
  color: rgba(26, 26, 46, 0.75);
  background: rgba(0, 0, 0, 0.03);
}

body.light-mode .home-card__price {
  background: rgba(13, 139, 109, 0.06);
}

body.light-mode .home-card__price-label {
  color: rgba(26, 26, 46, 0.6);
}

body.light-mode .home-card__price-old {
  color: rgba(26, 26, 46, 0.5);
}

body.light-mode .home-card__price-currency {
  color: rgba(26, 26, 46, 0.7);
}

body.light-mode .home-card__quantity-label {
  color: rgba(26, 26, 46, 0.85);
}

body.light-mode .home-card__quantity-range {
  color: rgba(26, 26, 46, 0.5);
}

body.light-mode .home-card__input {
  background: rgba(240, 244, 248, 0.9);
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1a2e;
}

body.light-mode .home-card__input:focus {
  background: #fff;
}

body.light-mode .home-card__slider {
  background: rgba(0, 0, 0, 0.1);
}

body.light-mode .home-reviews-section__title {
  color: #1a1a2e;
}

body.light-mode .home-reviews-slider__dot {
  background: rgba(0, 0, 0, 0.2);
}

body.light-mode .home-reviews-slider__dot.active {
  background: #0d8b6d;
}

/* ============================================
   Charge Pages - Modern Design
   ============================================ */

/* Charge Page Container */
.charge-page {
  padding: 30px 0 60px;
}

.charge-page .page-header {
  text-align: center;
  margin-bottom: 40px;
}

.charge-page .page-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.charge-page .page-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

/* Charge Form Card */
.charge-form-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.charge-form-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.charge-form-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.charge-form-card__logo {
  max-height: 50px;
  max-width: 120px;
  object-fit: contain;
}

/* Form Elements */
.charge-form-group {
  margin-bottom: 20px;
}

.charge-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.charge-form-group .form-control,
.charge-form-group select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: #fff;
  font-size: 15px;
  width: 100%;
  transition: all 0.3s ease;
}

.charge-form-group .form-control:focus,
.charge-form-group select:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: #0d8b6d;
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 139, 109, 0.15);
}

.charge-form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.charge-form-group .hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

/* Checkbox */
.charge-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}

.charge-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0d8b6d;
  cursor: pointer;
}

.charge-checkbox label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

/* Submit Button */
.charge-submit-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d8b6d, #0b9c7b);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.charge-submit-btn:hover {
  background: linear-gradient(135deg, #0b9c7b, #0aa88a);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 139, 109, 0.35);
}

.charge-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Error Message */
.charge-error {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: #ff6b6b;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: center;
}

/* Light Mode - Charge Pages */
body.light-mode .charge-page .page-title {
  color: #1a1a2e;
}

body.light-mode .charge-page .page-subtitle {
  color: rgba(26, 26, 46, 0.6);
}

body.light-mode .charge-form-card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.light-mode .charge-form-card__header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

body.light-mode .charge-form-card__title {
  color: #1a1a2e;
}

body.light-mode .charge-form-group label {
  color: #1a1a2e;
}

body.light-mode .charge-form-group .form-control,
body.light-mode .charge-form-group select {
  background: #f8f9fa;
  border-color: rgba(0, 0, 0, 0.1);
  color: #1a1a2e;
}

body.light-mode .charge-form-group .form-control:focus,
body.light-mode .charge-form-group select:focus {
  background: #fff;
  border-color: #0d8b6d;
}

body.light-mode .charge-form-group .form-control::placeholder {
  color: rgba(26, 26, 46, 0.4);
}

body.light-mode .charge-form-group .hint {
  color: rgba(26, 26, 46, 0.5);
}

body.light-mode .charge-checkbox label {
  color: rgba(26, 26, 46, 0.8);
}

/* Light Mode - Select/Dropdown Fix */
body.light-mode .charge-form-group select,
body.light-mode .charge-page select,
body.light-mode select.form-control {
  background: #fff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #1a1a2e !important;
}

body.light-mode .charge-form-group select option,
body.light-mode select.form-control option {
  background: #fff;
  color: #1a1a2e;
}

/* Responsive - Home Page */
@media (max-width: 1199.98px) {
  .home-packages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991.98px) {
  .home-packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home-reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home-hero__title {
    font-size: 30px;
  }
  
  .home-featured__card-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .home-tabs__wrapper {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .home-tabs__wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .home-packages__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .home-reviews__grid {
    grid-template-columns: 1fr;
  }
  
  .home-hero {
    padding: 35px 0 30px;
  }
  
  .home-hero__title {
    font-size: 24px;
  }
  
  .home-hero__subtitle {
    font-size: 14px;
  }
  
  .home-reviews {
    padding: 35px 15px;
    margin-top: 20px;
  }
  
  .home-reviews__title {
    font-size: 22px;
  }
}
