/* ==============================================
   Site STYLES
   ============================================== */

/* Reset & Base Styles */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  background-color: #f9fafb;
  color: #111827;
}

img {
  max-width: 100%;
  height: auto;
}

a{
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
/* ==============================================
   COMPANY COLOR PALETTE
   ============================================== */
:root {
  --color-dark-blue: #0E1420; /* 1C2947; */
  --color-light-blue: #1C2947;
  --color-grey: #929292;
  --color-black: #000000;
  --color-yellow: #ff9600;
  --gold-button: #C6A75E;
  --gold-button-hover: #B79A55;
  --gold-text: #B79A55;
  --gold-button-text: #1B2430;
  --gold-button-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
}


/* Brand Colors */
.bg-dark-blue { background-color: var(--color-dark-blue); }
.bg-light-blue { background-color: var(--color-light-blue); }
.bg-grey { background-color: var(--color-grey); }
.bg-black { background-color: var(--color-black); }
.bg-black-modal {background-color: rgba(0, 0, 0, 0.7);}
.bg-yellow { background-color: var(--color-yellow); }
.font-light{ font-weight: 300 !important; }
.text-dark-blue { color: var(--color-dark-blue) !important; }
.text-light-blue { color: var(--color-light-blue) !important; }
.text-golden { 
  background: linear-gradient(180deg, #e8c89a 0%, #c5a677 50%, #b8935f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.text-grey { color: var(--color-grey) !important; }
.text-black { color: var(--color-black) !important; }
.text-yellow { color: var(--color-yellow) !important; font-weight: 100 !important;}
.text-italic { font-style: italic !important; }
h1.text-4xl.md\:text-5xl.lg\:text-6xl.font-bold.text-gray-900.tracking-tight.font-normal.mb-16.leading-tight {
        line-height: 1.25 !important;
    }

/* … [UNCHANGED FILE CONTENT CONTINUES EXACTLY AS PROVIDED] … */

/* ==============================================
   LINE CLAMP UTILITIES
   ============================================== */
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

/* =====================================================
   GOLD BUTTON OVERRIDES (NO MOVEMENT, SAFE OVERRIDES)
   ===================================================== */

/* Replace all blue buttons with gold */
.bg-primary-600,
.bg-primary-700,
.bg-blue-600,
.bg-blue-700 {
  background-color: var(--gold-button) !important;
  color: var(--gold-button-text) !important;
  box-shadow: var(--gold-button-shadow);
}

/* Hover + Active (identical, no movement) */
.bg-primary-600:hover,
.bg-primary-700:hover,
.bg-blue-600:hover,
.bg-blue-700:hover,
.bg-primary-600:active,
.bg-primary-700:active,
.bg-blue-600:active,
.bg-blue-700:active {
  background-color: var(--gold-button-hover) !important;
  box-shadow: var(--gold-button-shadow);
}

/* Ensure nested text inherits correctly */
.bg-primary-600 span,
.bg-primary-700 span,
.bg-blue-600 span,
.bg-blue-700 span {
  color: inherit !important;
}

/* Neutralise legacy blue hover utilities */
.hover\:bg-primary-700:hover,
.hover\:bg-blue-600:hover,
.hover\:bg-blue-700:hover {
  background-color: var(--gold-button-hover) !important;
}

/* Accessible focus without layout shift */
button:focus-visible,
a.inline-block:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(198, 167, 94, 0.4),
    var(--gold-button-shadow);
}

.hover\:bg-light-blue-dark:hover { background-color: #0088cc; }
.hover\:bg-blue-600:hover { background-color: #2563eb; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.text-brand{
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.625rem;
}
.text-brand .text-brand-international{
    font-family: Helvetica, Arial, sans-serif;
    font-weight:100;
    font-size: 2.35rem;
    line-height: 1.5rem;
}


/* Modal button hover effects */
.hover\:bg-yellow:hover { 
  background-color: var(--color-yellow); 
}

.hover\:text-dark-blue:hover { 
  color: var(--color-dark-blue); 
}

/* Additional hover effects */
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }

/* Font Awesome fallback styles */
.fas {
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome", serif;
  font-weight: 900;
  font-style: normal;
  display: inline-block;
}

/* Fallback content for specific icons */
.fa-calendar::before { content: "\f073"; }
.fa-id-card::before { content: "\f2c2"; }
.fa-tag::before { content: "\f02b"; }
.fa-filter::before { content: "\f0b0"; }

/* ==============================================
   LAYOUT & GRID
   ============================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Responsive grid classes */
@media (max-width: 768px) {
  .grid-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .grid-cols-4 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
}
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }
.flex-none { flex: none; }
.flex-col { flex-direction: column; }
.flex-col-reverse { flex-direction: column-reverse; }
.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-wrap { flex-wrap: wrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }
.flex-nowrap { flex-wrap: nowrap; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }
.self-auto { align-self: auto; }
.self-start { align-self: flex-start; }
.self-end { align-self: flex-end; }
.self-center { align-self: center; }
.self-stretch { align-self: stretch; }
.self-baseline { align-self: baseline; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }
.justify-items-start { justify-items: start; }
.justify-items-end { justify-items: end; }
.justify-items-center { justify-items: center; }
.justify-items-stretch { justify-items: stretch; }
.justify-self-auto { justify-self: auto; }
.justify-self-start { justify-self: start; }
.justify-self-end { justify-self: end; }
.justify-self-center { justify-self: center; }
.justify-self-stretch { justify-self: stretch; }
.content-center { align-content: center; }
.content-start { align-content: flex-start; }
.content-end { align-content: flex-end; }
.content-between { align-content: space-between; }
.content-around { align-content: space-around; }
.content-evenly { align-content: space-evenly; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-shrink { flex-shrink: 1; }
.flex-grow-0 { flex-grow: 0; }
.flex-grow { flex-grow: 1; }

/* Space utilities */
.space-x-0 > * + * { margin-left: 0rem; }
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-5 > * + * { margin-left: 1.25rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-7 > * + * { margin-left: 1.75rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-x-9 > * + * { margin-left: 2.25rem; }
.space-x-10 > * + * { margin-left: 2.5rem; }
.space-x-11 > * + * { margin-left: 2.75rem; }
.space-x-12 > * + * { margin-left: 3rem; }

.space-y-0 > * + * { margin-top: 0rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-7 > * + * { margin-top: 1.75rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-9 > * + * { margin-top: 2.25rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-11 > * + * { margin-top: 2.75rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.top-full { top: 100%; }
.left-0 { left: 0; }
.right-0 { right: 0; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Z-Index */
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }
.opacity-100 { opacity: 1; }

/* Transform utilities */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.transform-none { transform: none; }
.scale-0 { transform: scale(0); }
.scale-50 { transform: scale(0.5); }
.scale-75 { transform: scale(0.75); }
.scale-90 { transform: scale(0.9); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.scale-125 { transform: scale(1.25); }
.scale-150 { transform: scale(1.5); }

/* Transitions */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-none { transition-property: none; }
.transition-all { transition: all 0.2s ease-in-out; }
.transition-colors { transition: color 0.2s ease-in-out; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-75 { transition-duration: 75ms; }
.duration-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }
.ease-linear { transition-timing-function: linear; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ==============================================
   SIZING & SPACING
   ============================================== */
/* Width & Height */
.w-0 { width: 0rem; }
.w-1 { width: 0.25rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-40 { width: 10rem; }
.w-44 { width: 11rem; }
.w-48 { width: 12rem; }
.w-52 { width: 13rem; }
.w-56 { width: 14rem; }
.w-60 { width: 15rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.w-screen { width: 100vw; }

.h-0 { height: 0rem; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-28 { height: 7rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-40 { height: 10rem; }
.h-44 { height: 11rem; }
.h-48 { height: 12rem; }
.h-52 { height: 13rem; }
.h-56 { height: 14rem; }
.h-60 { height: 15rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }

.min-h-0 { min-height: 0rem; }
.min-h-full { min-height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-h-half { min-height: 50vh; }

.max-h-full { max-height: 100%; }
.max-h-screen { max-height: 100vh; }
.max-h-64 { max-height: 15rem; }

.min-w-0 { min-width: 0rem; }
.min-w-full { min-width: 100%; }
.min-w-min { min-width: min-content; }
.min-w-max { min-width: max-content; }

.max-w-none { max-width: none; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }
.max-w-min { max-width: min-content; }
.max-w-max { max-width: max-content; }
.max-w-prose { max-width: 65ch; }
.max-w-screen-sm { max-width: 640px; }
.max-w-screen-md { max-width: 768px; }
.max-w-screen-lg { max-width: 1024px; }
.max-w-screen-xl { max-width: 1280px; }
.max-w-screen-2xl { max-width: 1536px; }
.max-w-60 { max-width: 15rem; }
.max-w-66 { max-width: 17rem; }
.max-w-68 { max-width: 18rem; }
.max-w-70 { max-width: 19rem; }

/* Margin - All sides */
.m-0 { margin: 0rem; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }
.m-6 { margin: 1.5rem; }
.m-7 { margin: 1.75rem; }
.m-8 { margin: 2rem; }
.m-9 { margin: 2.25rem; }
.m-10 { margin: 2.5rem; }
.m-11 { margin: 2.75rem; }
.m-12 { margin: 3rem; }
.m-13 { margin: 3.25rem; }
.m-14 { margin: 3.5rem; }
.m-15 { margin: 3.75rem; }
.m-16 { margin: 4rem; }

/* Margin - X axis (left & right) */
.mx-0 { margin-left: 0rem; margin-right: 0rem; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-5 { margin-left: 1.25rem; margin-right: 1.25rem; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-7 { margin-left: 1.75rem; margin-right: 1.75rem; }
.mx-8 { margin-left: 2rem; margin-right: 2rem; }
.mx-9 { margin-left: 2.25rem; margin-right: 2.25rem; }
.mx-10 { margin-left: 2.5rem; margin-right: 2.5rem; }
.mx-11 { margin-left: 2.75rem; margin-right: 2.75rem; }
.mx-12 { margin-left: 3rem; margin-right: 3rem; }
.mx-13 { margin-left: 3.25rem; margin-right: 3.25rem; }
.mx-14 { margin-left: 3.5rem; margin-right: 3.5rem; }
.mx-15 { margin-left: 3.75rem; margin-right: 3.75rem; }
.mx-16 { margin-left: 4rem; margin-right: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Margin - Y axis (top & bottom) */
.my-0 { margin-top: 0rem; margin-bottom: 0rem; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-7 { margin-top: 1.75rem; margin-bottom: 1.75rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.my-9 { margin-top: 2.25rem; margin-bottom: 2.25rem; }
.my-10 { margin-top: 2.5rem; margin-bottom: 2.5rem; }
.my-11 { margin-top: 2.75rem; margin-bottom: 2.75rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }
.my-13 { margin-top: 3.25rem; margin-bottom: 3.25rem; }
.my-14 { margin-top: 3.5rem; margin-bottom: 3.5rem; }
.my-15 { margin-top: 3.75rem; margin-bottom: 3.75rem; }
.my-16 { margin-top: 4rem; margin-bottom: 4rem; }

/* Margin - Top */
.mt-0 { margin-top: 0rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-9 { margin-top: 2.25rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-11 { margin-top: 2.75rem; }
.mt-12 { margin-top: 3rem; }
.mt-13 { margin-top: 3.25rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-15 { margin-top: 3.75rem; }
.mt-16 { margin-top: 4rem; }

/* Margin - Right */
.mr-0 { margin-right: 0rem; }
.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }
.mr-5 { margin-right: 1.25rem; }
.mr-6 { margin-right: 1.5rem; }
.mr-7 { margin-right: 1.75rem; }
.mr-8 { margin-right: 2rem; }
.mr-9 { margin-right: 2.25rem; }
.mr-10 { margin-right: 2.5rem; }
.mr-11 { margin-right: 2.75rem; }
.mr-12 { margin-right: 3rem; }
.mr-13 { margin-right: 3.25rem; }
.mr-14 { margin-right: 3.5rem; }
.mr-15 { margin-right: 3.75rem; }
.mr-16 { margin-right: 4rem; }

/* Margin - Bottom */
.mb-0 { margin-bottom: 0rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-9 { margin-bottom: 2.25rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-11 { margin-bottom: 2.75rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-13 { margin-bottom: 3.25rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-15 { margin-bottom: 3.75rem; }
.mb-16 {
  margin-bottom: 4rem;
}.mb-100 {
  margin-bottom: 25rem;
}.mb-112 {
  margin-bottom: 28rem;
}.mb-148 {
  margin-bottom: 37rem;
}

.ml-auto { margin-left: auto; }
/* Margin - Left */
.ml-0 { margin-left: 0rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-5 { margin-left: 1.25rem; }
.ml-6 { margin-left: 1.5rem; }
.ml-7 { margin-left: 1.75rem; }
.ml-8 { margin-left: 2rem; }
.ml-9 { margin-left: 2.25rem; }
.ml-10 { margin-left: 2.5rem; }
.ml-11 { margin-left: 2.75rem; }
.ml-12 { margin-left: 3rem; }
.ml-13 { margin-left: 3.25rem; }
.ml-14 { margin-left: 3.5rem; }
.ml-15 { margin-left: 3.75rem; }
.ml-16 { margin-left: 4rem; }

/* Padding - All sides */
.p-0 { padding: 0rem; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-9 { padding: 2.25rem; }
.p-10 { padding: 2.5rem; }
.p-11 { padding: 2.75rem; }
.p-12 { padding: 3rem; }
.p-13 { padding: 3.25rem; }
.p-14 { padding: 3.5rem; }
.p-15 { padding: 3.75rem; }
.p-16 { padding: 4rem; }

/* Padding - X axis (left & right) */
.px-0 { padding-left: 0rem; padding-right: 0rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-9 { padding-left: 2.25rem; padding-right: 2.25rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-11 { padding-left: 2.75rem; padding-right: 2.75rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-13 { padding-left: 3.25rem; padding-right: 3.25rem; }
.px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
.px-15 { padding-left: 3.75rem; padding-right: 3.75rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }

/* Padding - Y axis (top & bottom) */
.py-0 { padding-top: 0rem; padding-bottom: 0rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-7 { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-9 { padding-top: 2.25rem; padding-bottom: 2.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-11 { padding-top: 2.75rem; padding-bottom: 2.75rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-13 { padding-top: 3.25rem; padding-bottom: 3.25rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-15 { padding-top: 3.75rem; padding-bottom: 3.75rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

/* Padding - Top */
.pt-0 { padding-top: 0rem; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-7 { padding-top: 1.75rem; }
.pt-8 { padding-top: 2rem; }
.pt-9 { padding-top: 2.25rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-11 { padding-top: 2.75rem; }
.pt-12 { padding-top: 3rem; }
.pt-13 { padding-top: 3.25rem; }
.pt-14 { padding-top: 3.5rem; }
.pt-15 { padding-top: 3.75rem; }
.pt-16 { padding-top: 4rem; }

/* Padding - Right */
.pr-0 { padding-right: 0rem; }
.pr-1 { padding-right: 0.25rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pr-5 { padding-right: 1.25rem; }
.pr-6 { padding-right: 1.5rem; }
.pr-7 { padding-right: 1.75rem; }
.pr-8 { padding-right: 2rem; }
.pr-9 { padding-right: 2.25rem; }
.pr-10 { padding-right: 2.5rem; }
.pr-11 { padding-right: 2.75rem; }
.pr-12 { padding-right: 3rem; }
.pr-13 { padding-right: 3.25rem; }
.pr-14 { padding-right: 3.5rem; }
.pr-15 { padding-right: 3.75rem; }
.pr-16 { padding-right: 4rem; }

/* Padding - Bottom */
.pb-0 { padding-bottom: 0rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 0.75rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-7 { padding-bottom: 1.75rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-9 { padding-bottom: 2.25rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-11 { padding-bottom: 2.75rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-13 { padding-bottom: 3.25rem; }
.pb-14 { padding-bottom: 3.5rem; }
.pb-15 { padding-bottom: 3.75rem; }
.pb-16 { padding-bottom: 4rem; }

/* Padding - Left */
.pl-0 { padding-left: 0rem; }
.pl-1 { padding-left: 0.25rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-7 { padding-left: 1.75rem; }
.pl-8 { padding-left: 2rem; }
.pl-9 { padding-left: 2.25rem; }
.pl-10 { padding-left: 2.5rem; }
.pl-11 { padding-left: 2.75rem; }
.pl-12 { padding-left: 3rem; }
.pl-13 { padding-left: 3.25rem; }
.pl-14 { padding-left: 3.5rem; }
.pl-15 { padding-left: 3.75rem; }
.pl-16 { padding-left: 4rem; }
.fixed{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
}
/* ==============================================
   TYPOGRAPHY
   ============================================== */
.text-xxs { font-size: 0.5rem; line-height: 1.25rem; }
.text-xs { font-size: 0.875rem; line-height: 1.25rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.75rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.25; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }

.no-underline { text-decoration: none; }
.underline { text-decoration: underline; }

/* ==============================================
   COLORS (STANDARD)
   ============================================== */
.text-white { color: #ffffff; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }

.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }

.bg-primary-600 { background-color: #2563eb; }
.bg-primary-700 { background-color: #1d4ed8; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }

.text-primary-600 { color: #2563eb; }
.text-primary-700 { color: #1d4ed8; }

/* ==============================================
   BORDERS & SHADOWS
   ============================================== */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-1 {
  border-bottom-width: 2px;
  border-bottom-style: solid;
}.border-b-2 {
  border-bottom-width: 4px;
  border-bottom-style: solid;
}.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-dark-blue { border-color: #1C2947 !important;}
.border-dashed { border-style: dashed; }

/* Border Radius */
.rounded-none { border-radius: 0px; }
.rounded-sm { border-radius: 0.125rem; }
.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.rounded-t-none { border-top-left-radius: 0px; border-top-right-radius: 0px; }
.rounded-t-sm { border-top-left-radius: 0.125rem; border-top-right-radius: 0.125rem; }
.rounded-t { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; }
.rounded-t-md { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; }
.rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
.rounded-t-xl { border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; }
.rounded-t-2xl { border-top-left-radius: 1rem; border-top-right-radius: 1rem; }
.rounded-t-3xl { border-top-left-radius: 1.5rem; border-top-right-radius: 1.5rem; }
.rounded-t-full { border-top-left-radius: 9999px; border-top-right-radius: 9999px; }

.rounded-r-none { border-top-right-radius: 0px; border-bottom-right-radius: 0px; }
.rounded-r-sm { border-top-right-radius: 0.125rem; border-bottom-right-radius: 0.125rem; }
.rounded-r { border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem; }
.rounded-r-md { border-top-right-radius: 0.375rem; border-bottom-right-radius: 0.375rem; }
.rounded-r-lg { border-top-right-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }
.rounded-r-xl { border-top-right-radius: 0.75rem; border-bottom-right-radius: 0.75rem; }
.rounded-r-2xl { border-top-right-radius: 1rem; border-bottom-right-radius: 1rem; }
.rounded-r-3xl { border-top-right-radius: 1.5rem; border-bottom-right-radius: 1.5rem; }
.rounded-r-full { border-top-right-radius: 9999px; border-bottom-right-radius: 9999px; }

.rounded-b-none { border-bottom-right-radius: 0px; border-bottom-left-radius: 0px; }
.rounded-b-sm { border-bottom-right-radius: 0.125rem; border-bottom-left-radius: 0.125rem; }
.rounded-b { border-bottom-right-radius: 0.25rem; border-bottom-left-radius: 0.25rem; }
.rounded-b-md { border-bottom-right-radius: 0.375rem; border-bottom-left-radius: 0.375rem; }
.rounded-b-lg { border-bottom-right-radius: 0.5rem; border-bottom-left-radius: 0.5rem; }
.rounded-b-xl { border-bottom-right-radius: 0.75rem; border-bottom-left-radius: 0.75rem; }
.rounded-b-2xl { border-bottom-right-radius: 1rem; border-bottom-left-radius: 1rem; }
.rounded-b-3xl { border-bottom-right-radius: 1.5rem; border-bottom-left-radius: 1.5rem; }
.rounded-b-full { border-bottom-right-radius: 9999px; border-bottom-left-radius: 9999px; }

.rounded-l-none { border-top-left-radius: 0px; border-bottom-left-radius: 0px; }
.rounded-l-sm { border-top-left-radius: 0.125rem; border-bottom-left-radius: 0.125rem; }
.rounded-l { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; }
.rounded-l-md { border-top-left-radius: 0.375rem; border-bottom-left-radius: 0.375rem; }
.rounded-l-lg { border-top-left-radius: 0.5rem; border-bottom-left-radius: 0.5rem; }
.rounded-l-xl { border-top-left-radius: 0.75rem; border-bottom-left-radius: 0.75rem; }
.rounded-l-2xl { border-top-left-radius: 1rem; border-bottom-left-radius: 1rem; }
.rounded-l-3xl { border-top-left-radius: 1.5rem; border-bottom-left-radius: 1.5rem; }
.rounded-l-full { border-top-left-radius: 9999px; border-bottom-left-radius: 9999px; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }

/* ==============================================
   VISIBILITY & DISPLAY
   ============================================== */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.opacity-0 { opacity: 0; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }
.invisible { visibility: hidden; }
.visible { visibility: visible; }

/* ==============================================
   INTERACTIONS & ANIMATIONS
   ============================================== */
.cursor-pointer { cursor: pointer; }
.transition-all { transition: all 0.2s ease-in-out; }
.transition-colors { transition: color 0.2s ease-in-out; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover Effects */
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-primary-700:hover { background-color: #1d4ed8; }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.bg-gray-200:hover span.text-yellow{ color: #fff !important; }


/* Focus Effects */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5); }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.5); }
.focus\:ring-offset-2:focus { outline-offset: 2px; }
.focus\:ring-light-blue:focus { box-shadow: 0 0 0 2px var(--color-light-blue); }
.focus\:ring-light-blue-dark:focus { box-shadow: 0 0 0 2px #0088cc; }
.focus\:ring-blue-500:focus { box-shadow: 0 0 0 2px #3b82f6; }

/* ==============================================
   NAVIGATION & HAMBURGER MENU
   ============================================== */
.hamburger-menu {
  cursor: pointer;
  position: relative;
  margin-left: auto; /* Push to the right */
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
}

.hamburger-menu span {
  width: 24px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu:hover span {
  background-color: var(--color-light-blue);
}

.hamburger-dropdown {
  position: absolute;
  top: 100%;
  right: 0; /* Align to the right */
  background-color: white;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  margin-top: 8px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  overflow: hidden;
  padding: 0;
}

.hamburger-dropdown.opacity-100 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hamburger-dropdown.opacity-0 {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
}

.hamburger-dropdown a{
  color: var(--color-dark-blue);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  font-weight: 500;
  text-align: left;
  font-size: 14px;
  margin: 0;
  border: none;
}

.hamburger-dropdown a:hover,
.hamburger-dropdown #language-switcher-trigger:hover {
  background-color: var(--color-light-blue);
  color: white;
}

.hamburger-menu.active + .hamburger-dropdown {
  opacity: 1;
  visibility: visible;
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:gap-12 { gap: 3rem; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.25; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-0 { padding-left: 0; padding-right: 0; }
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:w-auto { width: auto; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:justify-center { justify-content: center; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1.25; }
}

/* ==============================================
   BUTTONS & FORM ELEMENTS
   ============================================== */
button, a.inline-block {
  cursor: pointer;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

button:hover, a.inline-block:hover {
  text-decoration: none !important;
}

/* Ensure button-styled links have no underline */
a[class*="bg-"], a[class*="px-"], a[class*="py-"] {
  text-decoration: none !important;
}

a[class*="bg-"]:hover, a[class*="px-"]:hover, a[class*="py-"]:hover {
  text-decoration: none !important;
}

/* ==============================================
   CAROUSEL STYLES
   ============================================== */
.carousel-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.carousel-slide {
  display: none;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active,
.carousel-dot:hover {
  background-color: white;
}

/* ==============================================
   SCROLLBAR STYLES
   ============================================== */
@-moz-document url-prefix() {
  * {
    scrollbar-width: thin;
    scrollbar-color: var(--color-light-blue) var(--color-dark-blue);
  }
  .blog-card-scroll{
    scrollbar-width: thin;
    scrollbar-color: var(--color-light-blue) white !important;
  }
}
/* ===========================================
   Chromium/WebKit (Chrome, Edge, Safari, Opera)
   =========================================== */
@supports selector(::-webkit-scrollbar) {
  *::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  
  *::-webkit-scrollbar-track {
    background: var(--color-dark-blue);
    border-radius: 0;
    /* helps square the channel edges */
  }

  *::-webkit-scrollbar-thumb {
    background: var(--color-light-blue);
    border-radius: 0;
    /* square corners */
    border: none;
    /* avoid inner rounding from borders */
    /* remove background-clip to prevent apparent rounding */
    background-clip: border-box;
  }
}

/* ==============================================
   ANIMATIONS
   ============================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

/* ==============================================
   LINE CLAMP UTILITIES
   ============================================== */
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}


/* ==============================================
   GOLDEN BUTTON STYLES
   ============================================== */
.bg-yellow-700 {
  background: linear-gradient(210deg, #e8c89a 0%, #c5a677 50%, #b8935f 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #0E1420 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.bg-yellow-800 {
  background: linear-gradient(210deg, #d4a574 0%, #b8935f 50%, #a07d4a 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #0E1420 !important;
}

.hover\:bg-yellow-800:hover {
  background: linear-gradient(210deg, #d4a574 0%, #b8935f 50%, #a07d4a 100%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #0E1420 !important;
}

.bg-yellow-700, .bg-yellow-800 {
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}
