/****************************** MODERN UTILITY CLASSES ******************************/

/* Typography Scale - Dramatic */
.heading-xl {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.heading-lg {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 20px;
}

.heading-md {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}

.heading-sm {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
}

.text-lg {
  font-size: 18px;
  line-height: 1.7;
}

.text-premium {
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* Smooth transitions */
.smooth-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.smooth-transition-fast {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.smooth-transition-slow {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern card styles - DRAMATIC */
.card-modern {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card-modern:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px) scale(1.01);
}

.card {
  background-color: white;
  border-radius: var(--border-radius-lg);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-flat {
  background-color: var(--body);
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px;
}

/* Shadow utilities - DRAMATIC */
.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.shadow {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.shadow-md {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18), 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Hover effects - DRAMATIC */
.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-scale-sm:hover {
  transform: scale(1.02);
}

.hover-opacity:hover {
  opacity: 0.85;
}

.hover-primary:hover {
  color: var(--primary);
}

.hover-bg-primary:hover {
  background-color: rgba(9, 106, 46, 0.08);
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(9, 106, 46, 0.3);
}

/* Border radius utilities - LARGER */
.rounded-sm {
  border-radius: 8px;
}

.rounded {
  border-radius: var(--border-radius);
}

.rounded-lg {
  border-radius: var(--border-radius-lg);
}

.rounded-xl {
  border-radius: var(--border-radius-xl);
}

.rounded-2xl {
  border-radius: 32px;
}

.rounded-full {
  border-radius: 9999px;
}

/* Spacing utilities - GENEROUS */
.spacing-comfortable {
  padding: var(--spacing-lg);
  gap: var(--spacing-unit);
}

.spacing-relaxed {
  padding: var(--spacing-xl);
  gap: var(--spacing-lg);
}

.gap-sm {
  gap: 8px;
}

.gap {
  gap: var(--spacing-unit);
}

.gap-lg {
  gap: var(--spacing-lg);
}

.gap-xl {
  gap: var(--spacing-xl);
}

/* Modern button base */
.btn-modern {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--border-radius);
  min-height: 48px;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0a7d35 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(9, 106, 46, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(9, 106, 46, 0.35);
}

/* Responsive utilities */
.hide-mobile {
  display: block;
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }

  .heading-xl {
    font-size: 36px;
  }

  .heading-lg {
    font-size: 28px;
  }
}

.show-mobile {
  display: none;
}

@media (max-width: 768px) {
  .show-mobile {
    display: block !important;
  }
}


.align-end {
  align-items: end;
}

.just-end {
  justify-content: flex-end;
}

.trans100x {
  transform: translateX(100%);
}

.trans-100x {
  transform: translateX(-100%);
}

.w-fit {
  width: fit-content;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.h-56 {
  height: 56px;
}


.abs {
  position: absolute;
}

.align-center {
  align-items: center;
}

.b-0 {
  bottom: 0px;
}

.b-64 {
  bottom: 64px;
}

.bc-lg {
  background-color: var(--light-grey);
}

.bg-body {
  background-color: var(--searchbar);
}

.bg-violet {
  background-color: blueviolet;
}

.bg-secondary {
  background-color: var(--accent);
}

.block {
  display: block;
}

.bord-50 {
  border-radius: 50%;
}

.col {
  flex-direction: column;
}

.c-primary {
  color: var(--primary)
}

.c-blue {
  color: rgb(12, 12, 54);
}

.c-w {
  color: white;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #eeeeee,
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.wb-all {
  word-break: break-all;
  width: 600px;
}

.fnt-bld {
  font-weight: bold;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-24 {
  font-size: 24px;
}

.fs-32 {
  font-size: 32px;
}

.fs-100 {
  font-size: 50px;
}

.just-bet {
  justify-content: space-between;
}

.just-center {
  justify-content: center;
}

.just-start {
  justify-content: flex-start;
}

.align-start {
  align-items: flex-start;
}

.max-w1920 {
  max-width: 1920px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.no-caret {
  user-select: none;
}

.pad-h-64 {
  padding: 0 64px;
}

.pointer {
  cursor: pointer;
}

.ez01 {
  transition: all 0.1s ease-in-out;
}

.ez02 {
  transition: all 0.2s ease-in-out;
}

.ez03 {
  transition: all 0.3s ease-in-out;
}

.rel {
  position: relative;
}

.h100 {
  height: 100%;
}

.w30 {
  width: 30%;
}

.w-fit {
  width: fit-content;
}

.h-fit {
  height: fit-content;
}

.h-64 {
  height: 64px;
}

.max {
  max-width: 1920px;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.mt32 {
  margin-top: 32px;
}

.mb-15 {
  margin-bottom: 15px;
}

.header-shadow {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 4px 8px rgba(0, 0, 0, 0.4);
}

.navbar-shadow {
  box-shadow: 1px 0 4px rgba(0, 0, 0, 0.3);
}

.just-sb {
  justify-content: space-between;
}


.h-72 {
  height: 72px;
}


.visible {
  visibility: visible;
}

.hidden {
  visibility: hidden;
}

.none {
  display: none;
}


.w-50 {
  width: 50%;
}

.fill {
  flex: 1 0 auto;
}

.pt-none {
  padding-top: 0px;
}

.mt-none {
  margin-top: 0px;
}

.mr-16 {
  margin-right: 16px;
}

.mt-8 {
  margin-top: 8px;
}


.rel {
  position: relative;
}






/*****************************************************************************/