@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary: #1d6d30;
  --primary-dark: #145224;
  --secondary: #173446;
  --accent: #54cf73;
  --accent-light: #183648;
  --accent-dark: #a67c0d;
  --red: #b21817;
  --light-bg: #f8f9fa;
  --dark-text: #333333;
  --white: #ffffff;
  --gold-gradient: linear-gradient(135deg, #54cf73, #54cf73, #54cf73);
  --green-gradient: linear-gradient(135deg, #1d6d30, #145224);
  --hero-gradient: linear-gradient(135deg, rgba(23,52,70,0.92) 0%, rgba(29,109,48,0.88) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark-text);
  background: #fff;
  overflow-x: hidden;
  padding-top: 60px;
}

/* Prevent scroll bounce on mobile */
body.overflow-hidden {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }

/* ═══════════════════════════ NAVBAR ═══════════════════════════ */
.navbar {
  background: var(--secondary) !important;
  border-bottom: 3px solid var(--accent);
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 54px;
  height: 54px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--secondary);
  letter-spacing: 1px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.brand-text { line-height: 1.1; }
.brand-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}
.brand-text .subtitle {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.6rem 1rem !important;
  position: relative;
  transition: color 0.3s;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.btn-inscrit {
  background: var(--gold-gradient);
  color: var(--secondary) !important;
  font-weight: 700 !important;
  border-radius: 4px;
  padding: 0.5rem 1.2rem !important;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgba(212,160,23,0.4);
  transition: all 0.3s !important;
}
.btn-inscrit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.5);
  color: var(--secondary) !important;
}
.btn-inscrit::after { display: none !important; }

.navbar-toggler { border-color: var(--accent); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4a017' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ═══════════════════════════ GOLD DIVIDER ═══════════════════════ */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 1rem 0;
}
.gold-divider .line {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--accent);
}
.gold-divider .diamond {
  width: 10px;
  height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* ═══════════════════════════ SECTION TITLES ═══════════════════════ */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.3rem;
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: #666;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ═══════════════════════════ CARDS ═══════════════════════════ */
.iss-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
  height: 100%;
  border-top: 4px solid var(--accent);
}
.iss-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.iss-card .card-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(212,160,23,0.3);
}

/* ═══════════════════════════ BADGES ═══════════════════════════ */
.badge-gold {
  background: var(--gold-gradient);
  color: var(--secondary);
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.badge-green {
  background: var(--primary);
  color: white;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}
.badge-navy {
  background: var(--secondary);
  color: var(--accent);
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
}
.badge-red {
  background: var(--red);
  color: white;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

/* ═══════════════════════════ BUTTONS ═══════════════════════════ */
.btn-gold {
  background: var(--gold-gradient);
  color: var(--secondary);
  font-weight: 700;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  font-family: 'Lato', sans-serif;
  box-shadow: 0 4px 15px rgba(212,160,23,0.3);
}
.btn-gold:hover {
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,160,23,0.5);
}
.btn-outline-gold {
  border: 2px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  background: transparent;
  transition: all 0.3s;
  font-family: 'Lato', sans-serif;
}
.btn-outline-gold:hover {
  background: var(--accent);
  color: var(--secondary);
}
.btn-green {
  background: var(--green-gradient);
  color: white;
  font-weight: 700;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(29,109,48,0.3);
}
.btn-green:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(29,109,48,0.5);
}

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 0;
  border-top: 3px solid var(--accent);
}
footer h5 {
  color: var(--accent);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(212,160,23,0.3);
}
footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
footer a:hover { color: var(--accent); }
footer .footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 1rem 0;
  margin-top: 3rem;
  font-size: 0.82rem;
  text-align: center;
}
footer .social-links { display: flex; gap: 10px; margin-top: 0.5rem; }
footer .social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent) !important;
  transition: all 0.3s;
  font-size: 0.9rem;
  margin-bottom: 0;
}
footer .social-link:hover {
  background: var(--accent);
  color: var(--secondary) !important;
  border-color: var(--accent);
}
footer .contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 0.8rem; font-size: 0.9rem; }
footer .contact-icon { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

/* ═══════════════════════════ PAGE HERO ═══════════════════════════ */
.page-hero {
  background: var(--hero-gradient), url('') center/cover;
  background-color: var(--secondary);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(212,160,23,0.04) 30px,
    rgba(212,160,23,0.04) 60px
  );
}
.page-hero h1 { color: white; font-size: 2.5rem; font-weight: 700; }
.page-hero .breadcrumb { justify-content: center; background: none; margin: 0; }
.page-hero .breadcrumb-item a { color: var(--accent); text-decoration: none; }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ═══════════════════════════ FORM STYLES ═══════════════════════════ */
.iss-form .form-control,
.iss-form .form-select {
  border: 2px solid #e8e8e8;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fafafa;
}
.iss-form .form-control:focus,
.iss-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.15);
  background: white;
}
.iss-form .form-label {
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════ MISC ═══════════════════════════ */
.gold-line {
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
  width: 60px;
  margin: 1rem auto;
}
.text-gold { color: var(--accent) !important; }
.text-primary-iss { color: var(--primary) !important; }
.bg-primary-iss { background: var(--primary) !important; }
.bg-secondary-iss { background: var(--secondary) !important; }

.stat-box {
  text-align: center;
  padding: 1.5rem;
}
.stat-box .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-box .stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
}

.formation-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.formation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.formation-card .card-header {
  padding: 1.2rem 1.5rem;
  border-bottom: none;
}
.formation-card .fc-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(29,109,48,0.08);
  color: var(--primary);
  box-shadow: none;
}
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(212,160,23,0.15); }
.accordion-button::after {
  filter: none;
}

@media (max-width: 768px) {
  .section-title { font-size: 1.7rem; }
  .page-hero h1 { font-size: 1.8rem; }
}

/* ═══════════════════════════ MOBILE RESPONSIVE STYLES ═══════════════════════════ */

/* Base styles - Mobile First */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Typography */
  body { 
    font-size: 14px;
    padding-top: 60px;
  }
  
  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.25rem !important; }
  h4 { font-size: 1.1rem !important; }
  
  p { font-size: 0.9rem; line-height: 1.6; }
  
  /* Hero Card Mobile */
  .hero-card {
    padding: 1.25rem;
    margin-top: 2rem;
  }
  
  .hero-card::before {
    height: 2px;
  }
  
  .hero-card-item {
    padding: 0.75rem 0;
    gap: 10px;
  }
  
  .hero-card-item .icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .hero-card-item .info h6 {
    font-size: 0.85rem;
  }
  
  .hero-card-item .info small {
    font-size: 0.7rem;
  }
  
  .hero-divider {
    display: none;
  }
  
  /* Quick Access Mobile */
  .quick-access {
    margin-top: -30px;
  }
  
  .qa-card {
    padding: 1.25rem 1rem;
    margin-bottom: 1rem;
  }
  
  .qa-card .qa-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .qa-card h6 {
    font-size: 0.9rem;
  }
  
  .qa-card p {
    font-size: 0.75rem;
  }
  
  /* About Strip Mobile */
  .about-strip {
    padding: 3rem 0;
  }
  
  /* Navbar Mobile */
  .navbar {
    padding: 0.5rem 0;
    height: auto;
    min-height: 56px;
  }
  
  .navbar-brand {
    gap: 8px;
  }
  
  .brand-logo {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }
  
  .brand-logo img {
    height: 36px !important;
    width: auto !important;
  }
  
  .brand-text .name {
    font-size: 0.85rem;
  }
  
  .brand-text .subtitle {
    font-size: 0.55rem;
    display: none;
  }
  
  .navbar-toggler {
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
  }
  
  /* Mobile Menu */
  .navbar-collapse {
    background: var(--secondary);
    padding: 1rem;
    margin-top: 25rem;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: absolute;
    left: 0;
    right: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block;
  }
  
  .navbar-nav {
    gap: 0.25rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0.5rem !important;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  .btn-inscrit {
    margin-top: 0.5rem;
    text-align: center;
    display: block;
    padding: 0.75rem 1rem !important;
  }
  
  /* Hero Section Mobile */
  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }
  
  .hero-orb-1 {
    width: 250px;
    height: 250px;
    top: -80px;
    right: -80px;
  }
  
  .hero-orb-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -60px;
  }
  
  .hero-eyebrow {
    font-size: 0.65rem;
    padding: 0.3rem 0.75rem;
    margin-bottom: 1rem;
  }
  
  .hero h1 {
    font-size: 1.8rem !important;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .hero .btn-gold,
  .hero .btn-green {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 0.75rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
    margin-top: 2rem;
    justify-content: flex-start;
  }
  
  .hero-stat {
    text-align: left;
  }
  
  .hero-stat .num {
    font-size: 1.6rem;
  }
  
  .hero-stat .lbl {
    font-size: 0.65rem;
  }
  
  /* Announce Strip Mobile */
  .announce-strip {
    padding: 0.6rem 0;
  }
  
  .ticker {
    font-size: 0.7rem;
    gap: 2rem;
  }
  
  /* Page Hero Mobile */
  .page-hero {
    padding: 3rem 0;
  }
  
  .page-hero h1 {
    font-size: 1.5rem !important;
  }
  
  /* Section Titles Mobile */
  .section-title {
    font-size: 1.4rem;
  }
  
  .section-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  /* Cards Mobile */
  .iss-card {
    margin-bottom: 1rem;
  }
  
  .iss-card .card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
  
  .iss-card .card-body {
    padding: 1.25rem;
  }
  
  .iss-card h5 {
    font-size: 1.1rem;
  }
  
  /* Buttons Mobile */
  .btn-gold,
  .btn-green,
  .btn-outline-gold {
    padding: 0.7rem 1.25rem;
    font-size: 0.85rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  /* Badges Mobile */
  .badge-gold,
  .badge-green,
  .badge-navy,
  .badge-red {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }
  
  /* Stats Box Mobile */
  .stat-box {
    padding: 1rem 0.5rem;
  }
  
  .stat-box .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-box .stat-label {
    font-size: 0.65rem;
  }
  
  /* Formation Card Mobile */
  .formation-card {
    margin-bottom: 1rem;
  }
  
  .formation-card .card-header {
    padding: 1rem;
  }
  
  .formation-card .fc-icon {
    font-size: 1.5rem;
  }
  
  /* Form Styles Mobile */
  .iss-form .form-control,
  .iss-form .form-select {
    padding: 0.6rem 0.85rem;
    font-size: 0.9rem;
  }
  
  .iss-form .form-label {
    font-size: 0.8rem;
  }
  
  /* Footer Mobile */
  footer {
    padding: 2.5rem 0 0;
  }
  
  footer h5 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  
  footer a {
    font-size: 0.85rem;
  }
  
  footer .contact-item {
    font-size: 0.8rem;
    gap: 8px;
  }
  
  footer .social-links {
    justify-content: flex-start;
    margin-bottom: 1rem;
  }
  
  footer .footer-bottom {
    padding: 1rem;
    font-size: 0.75rem;
  }
  
  /* Gold Divider Mobile */
  .gold-divider {
    margin: 0.75rem 0;
  }
  
  .gold-divider .line {
    max-width: 50px;
  }
  
  /* Accordion Mobile */
  .accordion-button {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
  
  .accordion-body {
    font-size: 0.85rem;
    padding: 1rem;
  }
  
  /* Utilities Mobile */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  
  .row > * {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .g-4 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }
  
  .mb-4,
  .my-4 {
    margin-bottom: 1rem !important;
  }
  
  .mt-4,
  .my-4 {
    margin-top: 1rem !important;
  }
  
  .py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  /* Image responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Table responsive */
  .table {
    font-size: 0.85rem;
  }
  
  .table th,
  .table td {
    padding: 0.5rem;
  }
  
  /* Preloader mobile */
  .preloader-logo {
    width: 60px;
    height: 60px;
  }
  
  .preloader-logo img {
    width: 40px;
    height: 40px;
  }
  
  .preloader-spinner {
    width: 80px;
    height: 80px;
    margin-top: -60px;
  }
  
  .preloader-text {
    font-size: 1rem;
  }
}

/* Small Devices (landscape phones, 576px - 767px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  body {
    padding-top: 65px;
  }
  
  .hero h1 {
    font-size: 2rem !important;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .navbar-brand .subtitle {
    display: none;
  }
  
  .btn-gold,
  .btn-green {
    width: auto;
    display: inline-block;
  }
}

/* Medium Devices (tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  body {
    padding-top: 70px;
  }
  
  .navbar-nav .nav-link {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem !important;
  }
  
  .brand-text .name {
    font-size: 0.9rem;
  }
  
  .brand-text .subtitle {
    font-size: 0.55rem;
  }
  
  .hero h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .iss-card .card-body {
    padding: 1.5rem;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
  body {
    padding-top: 70px;
  }
  
  /* Navbar */
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero h1 {
    font-size: 3.5rem !important;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn-gold:hover,
  .btn-green:hover,
  .btn-outline-gold:hover,
  .iss-card:hover,
  .formation-card:hover {
    transform: none;
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--accent) !important;
  }
}