@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
  /* Colors */
  --color-primary: #002C6C;       /* Lions Navy Blue */
  --color-primary-light: #0A3D8A;
  --color-secondary: #FFCC00;     /* Lions Gold */
  --color-secondary-hover: #E6B800;
  --color-accent-red: #D32F2F;    /* Terni Red */
  --color-accent-green: #2E7D32;  /* Terni Green */
  
  --color-bg-light: #F8FAFC;
  --color-bg-white: #FFFFFF;
  --color-text-dark: #0F172A;     /* Slate 900 */
  --color-text-muted: #475569;    /* Slate 600 */
  --color-text-light: #F1F5F9;    /* Slate 100 */
  --color-border: #E2E8F0;        /* Slate 200 */
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-shadow: 0 8px 32px 0 rgba(0, 44, 108, 0.08);
  
  /* Typography */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  
  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

/* ==========================================
   BASE & RESET
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ==========================================
   TYPOGRAPHY UTILITIES
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; }

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.text-uppercase { text-transform: uppercase; letter-spacing: 1px; }

/* ==========================================
   LAYOUT COMPONENTS
   ========================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 12px;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 50px auto;
}

/* Red/Green Accent Underline */
.accent-underline::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-red) 50%, var(--color-accent-green) 50%);
  border-radius: 2px;
}

/* Red/Green Accent Underline Left-aligned */
.accent-underline-left::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-red) 50%, var(--color-accent-green) 50%);
  border-radius: 2px;
}

/* Grid System */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  h1 { font-size: 2.25rem; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .section { padding: 50px 0; }
}

/* ==========================================
   NAVIGATION BAR (Glassmorphism)
   ========================================== */
.navbar {
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(0, 44, 108, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled .nav-link {
  color: var(--color-text-light);
}

.navbar.scrolled .logo-text span {
  color: var(--color-secondary);
}

.navbar.scrolled .logo-text {
  color: #fff;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 50px;
  width: auto;
  transition: var(--transition-smooth);
}

.navbar.scrolled .nav-logo {
  height: 45px;
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-primary);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: var(--color-secondary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  margin: 5px 0;
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.navbar.scrolled .menu-toggle span {
  background-color: #fff;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: var(--color-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px;
    gap: 25px;
    transition: var(--transition-smooth);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    color: #fff;
    font-size: 1.1rem;
    width: 100%;
  }
  
  .nav-link:hover, .nav-link.active {
    color: var(--color-secondary);
  }
  
  /* Menu Toggle Active Animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
  }
}

/* ==========================================
   BUTTONS & ACTIONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 44, 108, 0.3);
}

.btn-gold {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}

.btn-gold:hover {
  background-color: var(--color-secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(255, 204, 0, 0.3);
}

.btn-red {
  background-color: var(--color-accent-red);
  color: #fff;
}

.btn-red:hover {
  background-color: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(211, 47, 47, 0.3);
}

.btn-green {
  background-color: var(--color-accent-green);
  color: #fff;
}

.btn-green:hover {
  background-color: #1B5E20;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(46, 125, 50, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #fff !important;
  transform: translateY(-2px);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0px;
  width: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 1.2rem;
  font-weight: normal !important;
  line-height: 1 !important;
  vertical-align: middle;
}

.btn:hover .btn-icon,
.btn-outline:hover .btn-icon {
  width: 20px;
  margin-left: 8px;
  opacity: 1;
  transform: translateX(0);
}

/* Fallback for buttons without explicit HTML icon markup */
.btn:not(:has(.btn-icon))::after,
.btn-outline:not(:has(.btn-icon))::after {
  content: "\f133";
  font-family: "bootstrap-icons" !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0px;
  width: 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  font-size: 1.2rem;
  font-weight: normal !important;
  line-height: 1 !important;
  vertical-align: middle;
}

.btn:not(:has(.btn-icon)):hover::after,
.btn-outline:not(:has(.btn-icon)):hover::after {
  width: 20px;
  margin-left: 8px;
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================
   HERO BANNER
   ========================================== */
.hero {
  height: 90vh;
  min-height: 600px;
  background: linear-gradient(135deg, #001A44 0%, #002C6C 50%, #084FA0 100%);
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}

/* Obelisk Background Silhouette */
.hero-obelisk-bg {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: 85%;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
  opacity: 0.15;
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -100px;
}

.hero-shape-2 {
  width: 700px;
  height: 700px;
  bottom: -300px;
  right: -200px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 40px;
}

.hero-content {
  max-width: 650px;
}

.hero-tag {
  display: inline-block;
  background: rgba(255, 204, 0, 0.15);
  border: 1px solid rgba(255, 204, 0, 0.4);
  color: var(--color-secondary);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(90deg, var(--color-secondary) 0%, #FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  opacity: 0.85;
  margin-bottom: 35px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-frame {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-logo-frame img {
  width: 280px;
  height: auto;
  max-height: 320px;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
  .hero {
    height: auto;
    padding-top: 130px;
    padding-bottom: 80px;
  }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-obelisk-bg {
    display: none;
  }
  .hero-logo-frame {
    margin-top: 40px;
    max-width: 280px;
  }
}

/* ==========================================
   CARDS & GRID BLOCKS
   ========================================== */
.card {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  padding: 35px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 44, 108, 0.08), 0 10px 10px -5px rgba(0, 44, 108, 0.04);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(0, 44, 108, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin: 0 auto 24px auto;
  font-size: 1.5rem;
}

.card-title {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.card-description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Split-identity decorative borders */
.card-split-border::before {
  background: linear-gradient(90deg, var(--color-accent-red) 50%, var(--color-accent-green) 50%) !important;
}

/* ==========================================
   PRESIDENT CORNER (Profile layout)
   ========================================== */
.profile-block {
  background-color: var(--color-bg-white);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--glass-shadow);
  padding: 50px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
}

.profile-image-container {
  position: relative;
}

.profile-image-frame {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--border-radius-md);
  background-color: #E2E8F0;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  color: var(--color-primary);
}

.profile-image-container::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 60px;
  height: 60px;
  border-top: 4px solid var(--color-accent-red);
  border-left: 4px solid var(--color-accent-red);
  border-radius: 8px 0 0 0;
}

.profile-image-container::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60px;
  height: 60px;
  border-bottom: 4px solid var(--color-accent-green);
  border-right: 4px solid var(--color-accent-green);
  border-radius: 0 0 8px 0;
}

.profile-badge {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  font-family: var(--font-title);
  margin-bottom: 12px;
}

.profile-name {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.profile-title {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.profile-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-primary);
  border-left: 3px solid var(--color-secondary);
  padding-left: 16px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .profile-block {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
    text-align: center;
  }
  .profile-image-container {
    max-width: 250px;
    margin: 0 auto;
  }
  .profile-quote {
    text-align: left;
  }
}

/* ==========================================
   FOOTER (Detailed columns)
   ========================================== */
.footer {
  background-color: #0B132B; /* Deep Space Navy */
  color: var(--color-text-light);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--color-secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1.1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-column-title {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-secondary);
}

.footer-about p {
  opacity: 0.7;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition-smooth);
}

.footer-social-icon:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  opacity: 1;
  color: var(--color-secondary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-contact-item svg {
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 15px;
}

/* ==========================================
   ANIMATION CLASS (IntersectionObserver)
   ========================================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================
   BREADCRUMBS
   ========================================== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  justify-content: center;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--color-secondary);
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.breadcrumbs .current {
  color: #fff;
}

/* ==========================================
   FOOTER LEGAL LINKS
   ========================================== */
.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-link {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-legal-link:hover {
  color: var(--color-secondary);
}

/* ==========================================
   ALPHABET NAVIGATION
   ========================================== */
.alphabet-link:hover {
  background-color: var(--color-primary) !important;
  color: #fff !important;
  border-color: var(--color-primary) !important;
  box-shadow: 0 4px 10px rgba(0, 44, 108, 0.1);
}

/* ==========================================
   SUPPORT / 5 PER MILLE GRID
   ========================================== */
.support-banner-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 768px) {
  .support-banner-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .support-banner-grid > div:last-child {
    border-left: none !important;
    padding-left: 0 !important;
  }
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(15px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* ==========================================
   ACCORDION STYLES
   ========================================== */
.accordion-header.active {
  background-color: rgba(0, 44, 108, 0.02) !important;
}

.accordion-header.active i {
  transform: rotate(180deg);
  color: var(--color-secondary) !important;
}

.accordion-item.active {
  border-color: var(--color-secondary) !important;
  box-shadow: 0 8px 20px rgba(0, 44, 108, 0.05) !important;
}

/* ==========================================
   NEWSLETTER BAR (FULL-WIDTH)
   ========================================== */
.newsletter-bar {
  background: linear-gradient(135deg, #001A44 0%, #002C6C 100%);
  color: #fff;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.newsletter-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.newsletter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 700px;
}

.newsletter-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.newsletter-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 6px;
  color: #fff;
}

.newsletter-text {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0;
  line-height: 1.4;
}

.newsletter-action {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .newsletter-container {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-content {
    flex-direction: column;
    gap: 15px;
  }
  .newsletter-icon {
    font-size: 3rem;
  }
  .newsletter-action {
    width: 100%;
  }
  .newsletter-action a {
    width: 100%;
  }
}


/* ==========================================
   AUTO-GENERATED UTILITY & COMPONENT CLASSES
   ========================================== */

/* Semantic Component Classes */
.badge-btn-custom {
  color: var(--color-primary);
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}
.btn-padding-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}
.card-body-flex-40 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.card-desc-custom {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: justify;
}
.card-footer-flex {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.card-list-item {
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  padding: 15px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-dark);
  transition: var(--transition-smooth);
  text-align: left;
}
.card-meta-row {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-subtitle-custom {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 15px;
  line-height: 1.4;
}
.card-title-custom {
  color: var(--color-primary);
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.flex-col-h100 {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.flex-gap-start {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
  display: block;
}
.grid-fill-220 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 15px;
}
.label-accent-red {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-accent-red);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}
.scroll-mt-50-100 {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}
.section-header-center {
  text-align: center;
  margin-bottom: 50px;
}
.section-title-bordered {
  color: var(--color-primary);
  font-size: 1.5rem;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 8px;
  margin-bottom: 20px;
  font-family: var(--font-title);
}
.sub-hero-desc {
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 300;
}
.sub-hero-gradient {
  background: linear-gradient(135deg, #001A44 0%, #002C6C 100%);
  color: #fff;
  padding: 120px 0 60px 0;
  text-align: center;
}
.text-accent-green-icon {
  color: var(--color-accent-green);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.text-accent-red-icon {
  color: var(--color-accent-red);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 5px;
}
.text-muted-15 {
  font-size: 1.5rem;
  opacity: 0.7;
}
.text-muted-sm {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.text-primary-sm {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
}
.title-section-inline {
  font-size: 2.25rem;
  color: var(--color-primary);
  display: inline-block;
  position: relative;
}
.title-sub-hero {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* Utility Classes */
.align-center { align-items: center; }
.align-flex-start { align-items: flex-start; }
.align-self-flex-start { align-self: flex-start; }
.align-start { align-items: start; }
.align-stretch { align-items: stretch; }
.appearance-none { appearance: none; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-3-2 { aspect-ratio: 3/2; }
.backdrop-filter-blur-5px { backdrop-filter: blur(5px); }
.bg-000 { background-color: #000; }
.bg-1da1f2 { background-color: #1da1f2; }
.bg-25d366 { background-color: #25d366; }
.bg-3b5998 { background-color: #3b5998; }
.bg-accent-green { background-color: var(--color-accent-green); }
.bg-accent-red { background-color: var(--color-accent-red); }
.bg-border { background-color: var(--color-border); }
.bg-light { background-color: var(--color-bg-light); }
.bg-primary { background-color: var(--color-primary); }
.bg-raw-bg-light { background: var(--color-bg-light); }
.bg-raw-linear-gradient-135deg-000c40-0-607d8b-100 { background: linear-gradient(135deg, #000c40 0%, #607d8b 100%); }
.bg-raw-linear-gradient-135deg-001a44-0-002c6c-100 { background: linear-gradient(135deg, #001a44 0%, #002c6c 100%); }
.bg-raw-linear-gradient-135deg-0f2027-0-203a43-50-2c5364-100 { background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%); }
.bg-raw-linear-gradient-135deg-11998e-0-38ef7d-100 { background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); }
.bg-raw-linear-gradient-135deg-134e5e-0-71b280-100 { background: linear-gradient(135deg, #134e5e 0%, #71b280 100%); }
.bg-raw-linear-gradient-135deg-1e3c72-0-2a5298-100 { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); }
.bg-raw-linear-gradient-135deg-3a7bd5-0-3a6073-100 { background: linear-gradient(135deg, #3a7bd5 0%, #3a6073 100%); }
.bg-raw-linear-gradient-135deg-833ab4-0-fd1d1d-50-fcb045-100 { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); }
.bg-raw-linear-gradient-135deg-d32f2f-0-002c6c-100 { background: linear-gradient(135deg, #d32f2f 0%, #002c6c 100%); }
.bg-raw-linear-gradient-135deg-d3cbb8-0-686566-100 { background: linear-gradient(135deg, #d3cbb8 0%, #686566 100%); }
.bg-raw-linear-gradient-135deg-f57c00-0-ffb74d-100 { background: linear-gradient(135deg, #f57c00 0%, #ffb74d 100%); }
.bg-raw-linear-gradient-135deg-f5af19-0-f12711-100 { background: linear-gradient(135deg, #f5af19 0%, #f12711 100%); }
.bg-raw-linear-gradient-135deg-ff007f-0-ff7f00-100 { background: linear-gradient(135deg, #ff007f 0%, #ff7f00 100%); }
.bg-raw-linear-gradient-135deg-rgba-0-44-108-0-05-0-rgba-255-204-0-0-05-100 { background: linear-gradient(135deg, rgba(0, 44, 108, 0.05) 0%, rgba(255, 204, 0, 0.05) 100%); }
.bg-raw-linear-gradient-45deg-f09433-0-e6683c-25-dc2743-50-cc2366-75-bc1888-100 { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.bg-raw-none { background: none; }
.bg-raw-radial-gradient-circle-at-15-50-rgba-212-175-55-0-08-0-transparent-60 { background: radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%); }
.bg-raw-rgba-0-0-0-0-35 { background: rgba(0, 0, 0, 0.35); }
.bg-raw-rgba-0-0-0-0-45 { background: rgba(0, 0, 0, 0.45); }
.bg-raw-rgba-0-0-0-0-5 { background: rgba(0,0,0,0.5); }
.bg-raw-rgba-0-0-0-0-6 { background: rgba(0,0,0,0.6); }
.bg-raw-rgba-0-44-108-0-85 { background: rgba(0, 44, 108, 0.85); }
.bg-raw-rgba-211-47-47-0-2 { background: rgba(211, 47, 47, 0.2); }
.bg-raw-rgba-255-255-255-0-08 { background: rgba(255, 255, 255, 0.08); }
.bg-rgba-0-44-108-0-05 { background-color: rgba(0, 44, 108, 0.05); }
.bg-rgba-0-44-108-0-08 { background-color: rgba(0, 44, 108, 0.08); }
.bg-rgba-0-44-108-0-1 { background-color: rgba(0, 44, 108, 0.1); }
.bg-rgba-211-47-47-0-1 { background-color: rgba(211, 47, 47, 0.1); }
.bg-rgba-255-204-0-0-1 { background-color: rgba(255, 204, 0, 0.1); }
.bg-rgba-255-204-0-0-15 { background-color: rgba(255, 204, 0, 0.15); }
.bg-rgba-46-125-50-0-04 { background-color: rgba(46, 125, 50, 0.04); }
.bg-rgba-46-125-50-0-08 { background-color: rgba(46, 125, 50, 0.08); }
.bg-rgba-46-125-50-0-1 { background-color: rgba(46, 125, 50, 0.1); }
.bg-secondary { background-color: var(--color-secondary); }
.bg-white { background-color: var(--color-bg-white); }
.border-1px-dashed-border { border: 1px dashed var(--color-border); }
.border-1px-solid-border { border: 1px solid var(--color-border); }
.border-1px-solid-rgba-255-255-255-0-15 { border: 1px solid rgba(255,255,255,0.15); }
.border-1px-solid-rgba-255-255-255-0-2 { border: 1px solid rgba(255,255,255,0.2); }
.border-1px-solid-rgba-46-125-50-0-15 { border: 1px solid rgba(46, 125, 50, 0.15); }
.border-3px-solid-secondary { border: 3px solid var(--color-secondary); }
.border-4px-solid-bg-white { border: 4px solid var(--color-bg-white); }
.border-bottom-1px-solid-border { border-bottom: 1px solid var(--color-border); }
.border-bottom-2px-solid-rgba-255-255-255-0-2 { border-bottom: 2px solid rgba(255,255,255,0.2); }
.border-bottom-2px-solid-secondary { border-bottom: 2px solid var(--color-secondary); }
.border-color-accent-red { border-color: var(--color-accent-red); }
.border-color-fff { border-color: #fff; }
.border-color-rgba-255-255-255-0-1 { border-color: rgba(255,255,255,0.1); }
.border-left-1px-solid-rgba-255-255-255-0-1 { border-left: 1px solid rgba(255, 255, 255, 0.1); }
.border-left-3px-solid-border { border-left: 3px solid var(--color-border); }
.border-none { border: none; }
.border-top-1px-solid-border { border-top: 1px solid var(--color-border); }
.bottom-0 { bottom: 0; }
.bottom-15px { bottom: 15px; }
.color-primary { color: var(--color-primary); }
.cursor-pointer { cursor: pointer; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-inline-block { display: inline-block; }
.d-inline-flex { display: inline-flex; }
.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.flex-column { flex-direction: column; }
.flex-grow-1 { flex-grow: 1; }
.flex-wrap-wrap { flex-wrap: wrap; }
.font-body { font-family: var(--font-body); }
.font-style-italic { font-style: italic; }
.font-title { font-family: var(--font-title); }
.fs-0-65rem { font-size: 0.65rem; }
.fs-0-72rem { font-size: 0.72rem; }
.fs-0-75rem { font-size: 0.75rem; }
.fs-0-78rem { font-size: 0.78rem; }
.fs-0-7rem { font-size: 0.7rem; }
.fs-0-82rem { font-size: 0.82rem; }
.fs-0-85rem { font-size: 0.85rem; }
.fs-0-88rem { font-size: 0.88rem; }
.fs-0-8rem { font-size: 0.8rem; }
.fs-0-92rem { font-size: 0.92rem; }
.fs-0-95rem { font-size: 0.95rem; }
.fs-0-98rem { font-size: 0.98rem; }
.fs-0-9rem { font-size: 0.9rem; }
.fs-1-05rem { font-size: 1.05rem; }
.fs-1-15rem { font-size: 1.15rem; }
.fs-1-1rem { font-size: 1.1rem; }
.fs-1-25rem { font-size: 1.25rem; }
.fs-1-2rem { font-size: 1.2rem; }
.fs-1-35rem { font-size: 1.35rem; }
.fs-1-3rem { font-size: 1.3rem; }
.fs-1-5rem { font-size: 1.5rem; }
.fs-1-75rem { font-size: 1.75rem; }
.fs-1-8rem { font-size: 1.8rem; }
.fs-1rem { font-size: 1rem; }
.fs-2-25rem { font-size: 2.25rem; }
.fs-2-2rem { font-size: 2.2rem; }
.fs-2-5rem { font-size: 2.5rem; }
.fs-2rem { font-size: 2rem; }
.fs-3rem { font-size: 3rem; }
.fs-4-5rem { font-size: 4.5rem; }
.fs-4rem { font-size: 4rem; }
.fs-5rem { font-size: 5rem; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-bold { font-weight: bold; }
.gap-10px { gap: 10px; }
.gap-12px { gap: 12px; }
.gap-15px { gap: 15px; }
.gap-16px { gap: 16px; }
.gap-20px { gap: 20px; }
.gap-30px { gap: 30px; }
.gap-40px { gap: 40px; }
.gap-45px { gap: 45px; }
.gap-4px { gap: 4px; }
.gap-50px { gap: 50px; }
.gap-8px { gap: 8px; }
.grid-template-columns-1-2fr-0-8fr { grid-template-columns: 1.2fr 0.8fr; }
.grid-template-columns-repeat-2-1fr { grid-template-columns: repeat(2, 1fr); }
.grid-template-columns-repeat-3-1fr { grid-template-columns: repeat(3, 1fr); }
.h-100 { height: 100%; }
.h-100px { height: 100px; }
.h-12px { height: 12px; }
.h-20px { height: 20px; }
.h-280px { height: 280px; }
.h-380px { height: 380px; }
.h-40px { height: 40px; }
.h-42px { height: 42px; }
.h-45px { height: 45px; }
.h-70px { height: 70px; }
.h-80vh { height: 80vh; }
.inset-0 { inset: 0; }
.justify-center { justify-content: center; }
.justify-flex-end { justify-content: flex-end; }
.justify-space-between { justify-content: space-between; }
.left-0 { left: 0; }
.left-15px { left: 15px; }
.left-42px { left: -42px; }
.lh-1 { line-height: 1; }
.lh-1-2 { line-height: 1.2; }
.lh-1-4 { line-height: 1.4; }
.lh-1-5 { line-height: 1.5; }
.lh-1-6 { line-height: 1.6; }
.lh-1-7 { line-height: 1.7; }
.ls-0-5px { letter-spacing: 0.5px; }
.ls-1-5px { letter-spacing: 1.5px; }
.ls-1px { letter-spacing: 1px; }
.m-0 { margin: 0; }
.m-0-auto { margin: 0 auto; }
.m-0-auto-20px-auto { margin: 0 auto 20px auto; }
.m-0-auto-30px-auto { margin: 0 auto 30px auto; }
.m-0-auto-50px-auto { margin: 0 auto 50px auto; }
.m-15px-auto-0-auto { margin: 15px auto 0 auto; }
.max-height-0 { max-height: 0; }
.max-height-350px { max-height: 350px; }
.max-w-320px { max-width: 320px; }
.max-w-380px { max-width: 380px; }
.max-w-500px { max-width: 500px; }
.max-w-600px { max-width: 600px; }
.max-w-750px { max-width: 750px; }
.max-w-800px { max-width: 800px; }
.mb-0 { margin-bottom: 0; }
.mb-10px { margin-bottom: 10px; }
.mb-12px { margin-bottom: 12px; }
.mb-15px { margin-bottom: 15px; }
.mb-16px { margin-bottom: 16px; }
.mb-20px { margin-bottom: 20px; }
.mb-24px { margin-bottom: 24px; }
.mb-30px { margin-bottom: 30px; }
.mb-40px { margin-bottom: 40px; }
.mb-4px { margin-bottom: 4px; }
.mb-5px { margin-bottom: 5px; }
.mb-60px { margin-bottom: 60px; }
.mb-6px { margin-bottom: 6px; }
.mb-8px { margin-bottom: 8px; }
.min-width-180px { min-width: 180px; }
.min-width-200px { min-width: 200px; }
.min-width-250px { min-width: 250px; }
.min-width-280px { min-width: 280px; }
.ml-20px { margin-left: 20px; }
.ml-8px { margin-left: 8px; }
.ml-auto { margin-left: auto; }
.mr-4px { margin-right: 4px; }
.mr-8px { margin-right: 8px; }
.mr-auto { margin-right: auto; }
.mt-0 { margin-top: 0; }
.mt-12px { margin-top: 12px; }
.mt-15px { margin-top: 15px; }
.mt-20px { margin-top: 20px; }
.mt-25px { margin-top: 25px; }
.mt-2px { margin-top: 2px; }
.mt-30px { margin-top: 30px; }
.mt-40px { margin-top: 40px; }
.mt-50px { margin-top: 50px; }
.mt-5px { margin-top: 5px; }
.mt-60px { margin-top: 60px; }
.mt-8px { margin-top: 8px; }
.mt-auto { margin-top: auto; }
.object-fit-cover { object-fit: cover; }
.opacity-0 { opacity: 0; }
.opacity-0-6 { opacity: 0.6; }
.opacity-0-8 { opacity: 0.8; }
.opacity-0-85 { opacity: 0.85; }
.opacity-0-9 { opacity: 0.9; }
.opacity-1 { opacity: 1; }
.outline-none { outline: none; }
.overflow-hidden { overflow: hidden; }
.p-0-25px { padding: 0 25px; }
.p-10px { padding: 10px; }
.p-10px-0 { padding: 10px 0; }
.p-10px-20px { padding: 10px 20px; }
.p-10px-24px { padding: 10px 24px; }
.p-12px { padding: 12px; }
.p-12px-15px { padding: 12px 15px; }
.p-12px-15px-12px-45px { padding: 12px 15px 12px 45px; }
.p-12px-20px { padding: 12px 20px; }
.p-12px-24px { padding: 12px 24px; }
.p-12px-30px { padding: 12px 30px; }
.p-12px-36px { padding: 12px 36px; }
.p-14px { padding: 14px; }
.p-15px { padding: 15px; }
.p-20px { padding: 20px; }
.p-20px-25px { padding: 20px 25px; }
.p-25px { padding: 25px; }
.p-30px { padding: 30px; }
.p-40px { padding: 40px; }
.p-50px { padding: 50px; }
.p-6px-12px { padding: 6px 12px; }
.p-6px-14px { padding: 6px 14px; }
.p-8px-16px { padding: 8px 16px; }
.pb-10px { padding-bottom: 10px; }
.pb-12px { padding-bottom: 12px; }
.pb-20px { padding-bottom: 20px; }
.pb-60px { padding-bottom: 60px; }
.pb-80px { padding-bottom: 80px; }
.pb-8px { padding-bottom: 8px; }
.pl-30px { padding-left: 30px; }
.pl-40px { padding-left: 40px; }
.pointer-events-none { pointer-events: none; }
.pos-absolute { position: absolute; }
.pos-relative { position: relative; }
.pt-0 { padding-top: 0; }
.pt-15px { padding-top: 15px; }
.pt-24px { padding-top: 24px; }
.pt-30px { padding-top: 30px; }
.pt-60px { padding-top: 60px; }
.right-15px { right: 15px; }
.right-30px { right: 30px; }
.rounded-20px { border-radius: 20px; }
.rounded-30px { border-radius: 30px; }
.rounded-4px { border-radius: 4px; }
.rounded-50 { border-radius: 50%; }
.rounded-inherit { border-radius: inherit; }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-md { border-radius: var(--border-radius-md); }
.rounded-sm { border-radius: var(--border-radius-sm); }
.shadow-0-4px-10px-rgba-0-0-0-0-15 { box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
.shadow-inset-0-0-40px-rgba-255-255-255-0-1 { box-shadow: inset 0 0 40px rgba(255,255,255,0.1); }
.shadow-var-glass-shadow { box-shadow: var(--glass-shadow); }
.text-color-0288d1 { color: #0288d1; }
.text-color-2e7d32 { color: #2e7d32; }
.text-color-7b1fa2 { color: #7b1fa2; }
.text-color-accent-green { color: var(--color-accent-green); }
.text-color-accent-red { color: var(--color-accent-red); }
.text-color-b78a00 { color: #B78A00; }
.text-color-d32f2f { color: #d32f2f; }
.text-color-f57c00 { color: #f57c00; }
.text-color-fff { color: #fff; }
.text-color-primary-light { color: var(--color-primary-light); }
.text-color-rgba-0-44-108-0-05 { color: rgba(0, 44, 108, 0.05); }
.text-color-secondary { color: var(--color-secondary); }
.text-decoration-none { text-decoration: none; }
.text-decoration-underline { text-decoration: underline; }
.text-justify { text-align: justify; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.top-0 { top: 0; }
.top-15px { top: 15px; }
.top-30px { top: 30px; }
.top-50 { top: 50%; }
.transform-translatey-50 { transform: translateY(-50%); }
.transition-all-0-3s { transition: all 0.3s; }
.transition-all-0-4s-cubic-bezier-0-25-0-8-0-25-1 { transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.transition-background-color-0-3s { transition: background-color 0.3s; }
.transition-max-height-0-3s-ease-out { transition: max-height 0.3s ease-out; }
.transition-opacity-0-5s-ease-in-out { transition: opacity 0.5s ease-in-out; }
.transition-transform-0-5s { transition: transform 0.5s; }
.transition-transform-transition-fast { transition: transform var(--transition-fast); }
.transition-transform-transition-smooth { transition: transform var(--transition-smooth); }
.transition-transition-fast { transition: var(--transition-fast); }
.transition-transition-smooth { transition: var(--transition-smooth); }
.w-100 { width: 100%; }
.w-100px { width: 100px; }
.w-12px { width: 12px; }
.w-20px { width: 20px; }
.w-40px { width: 40px; }
.w-42px { width: 42px; }
.w-45px { width: 45px; }
.w-70px { width: 70px; }
.white-space-nowrap { white-space: nowrap; }
.word-break-break-all { word-break: break-all; }
.z-1 { z-index: 1; }
.z-10 { z-index: 10; }
.z-2 { z-index: 2; }
.z-5 { z-index: 5; }

/* ==========================================
   ACCESSIBILITY & SCREEN READER UTILITIES
   ========================================== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--color-primary);
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px;
  position: absolute;
  top: 5px;
  text-decoration: none;
  width: auto;
  z-index: 100000;
}
