/* ===================================================================
   CSS RESET & BASE STYLES
   =================================================================== */

/* Reset Box Model & Remove Margins/Padding */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  height: 100%;
  background: #F7F7F7;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #F7F7F7;
  color: #14375E;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.55;
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #14375E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #F6B617;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong { font-weight: 700; }

/* Font Imports */
@import url('https://fonts.googleapis.com/css?family=Montserrat:900,700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');


/* ===================================================================
   ROOT VARIABLES (WITH FALLBACKS)
   =================================================================== */
:root {
  --color-primary: #14375E;
  --color-secondary: #F7F7F7;
  --color-accent: #F6B617;
  --color-electric-blue: #06d6ff;
  --color-hot-pink: #e94560;
  --color-dark: #0C1E2C;
  --color-light: #fff;
  --color-bg-gray: #fafbfc;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}


/* ===================================================================
   HEADERS & TYPOGRAPHY
   =================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  text-transform: none;
}
h1 {
  font-size: 2.5rem; /* 40px */
  line-height: 1.1;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
}
p, li, label {
  font-size: 1rem;
  color: #14375E;
  line-height: 1.6;
}
.subheadline {
  font-size: 1.25rem;
  color: var(--color-dark);
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Accentuated Text */
.price {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1em;
  letter-spacing: .5px;
}


/* ===================================================================
   LAYOUT CONTAINERS
   =================================================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Section Spacing */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(12, 30, 44, 0.10), 0 2px 5px rgba(22, 54, 94, 0.07);
  padding: 24px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
  min-width: 260px;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 36px rgba(22,54,94,0.15), 0 4px 12px rgba(246,182,23,0.08);
  z-index: 2;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(22, 54, 94, 0.09);
  transition: box-shadow 0.2s, transform 0.2s;
  border-left: 6px solid var(--color-accent);
  position: relative;
  z-index: 1;
}
.testimonial-card:after {
  content: '';
  position: absolute;
  right: 24px;
  top: 24px;
  width: 24px;
  height: 24px;
  background: var(--color-electric-blue);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}
.testimonial-card p {
  font-size: 1.12rem;
  color: var(--color-dark);
}
.testimonial-card strong {
  font-weight: 900;
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* ===================================================================
   HEADER & NAVIGATION
   =================================================================== */
header {
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  box-shadow: 0 4px 18px rgba(20,55,94,0.08);
  position: relative;
  z-index: 50;
}
.logo {
  display: flex;
  align-items: center;
  height: 52px;
}
.logo img {
  height: 40px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width .2s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.main-nav a:hover::after {
  width: 100%;
}
.main-nav a:hover {
  color: var(--color-hot-pink);
}

/* Hide mobile menu icon on desktop */
.mobile-menu-toggle {
  display: none;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.5px;
  padding: 14px 34px;
  border-radius: 28px;
  border: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
  margin-left: 20px;
}
.btn-primary {
  background: linear-gradient(90deg, #F6B617 70%, #06D6FF 100%);
  color: #0C1E2C;
  box-shadow: 0 2px 10px rgba(246,182,23,0.18);
  font-size: 1.08em;
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #06D6FF 10%, #F6B617 100%);
  color: #14375E;
  transform: translateY(-1px) scale(1.045);
}
.btn-secondary {
  background: var(--color-electric-blue);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(6,214,255,0.09);
  text-transform: uppercase;
  border: 2px solid #06d6ff;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff;
  color: #06d6ff;
}


/* ===================================================================
   HERO SECTIONS
   =================================================================== */
.hero {
  background: linear-gradient(98deg, #F6B617 42%, #06D6FF 100%);
  padding: 54px 0 56px 0;
  margin-bottom: 48px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-primary);
  line-height: 1.08;
  text-shadow: 0 2px 12px #f7f7f780;
  letter-spacing: 2px;
}
.hero .subheadline {
  color: var(--color-dark);
  line-height: 1.32;
  font-weight: 600;
  margin-bottom: 32px;
}
.hero .btn-primary {
  margin-top: 16px;
}


/* ===================================================================
   SERVICE & FEATURE LISTS
   =================================================================== */
.service-teasers, .service-list, .feature-grid, .course-list, .benefits-list, .schedule-overview, .feature-icons, .nutrition-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-teasers, .feature-grid {
  justify-content: flex-start;
  margin-bottom: 24px;
}
.service {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(20,55,94,0.09);
  padding: 24px 22px 18px 22px;
  min-width: 222px;
  flex: 1 1 220px;
  max-width: 335px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  border-left: 5px solid var(--color-accent);
  transition: transform 0.22s, box-shadow 0.2s;
}
.service:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 10px 36px rgba(246, 182, 23, 0.16);
  z-index: 2;
}
.course-list li, .feature-grid li, .service-list li, .benefits-list li, .schedule-overview li, .feature-icons li, .nutrition-facts li {
  background: #fafbfc;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1.08rem;
  margin-bottom: 0;
  color: var(--color-dark);
  box-shadow: 0 2px 10px rgba(20,55,94,0.05);
}
ul.service-list {
  gap: 18px;
}

/* Table Styles */
.services-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(6,214,255,0.075);
}
.services-comparison-table th, .services-comparison-table td {
  font-family: var(--font-body);
  padding: 16px 12px;
  text-align: left;
  border-bottom: 1px solid #e9e9e9;
  font-size: 1rem;
}
.services-comparison-table th {
  background: #06d6ff24;
  font-weight: 800;
  color: var(--color-primary);
}
.services-comparison-table tr:last-child td {
  border-bottom: 0;
}


/* ===================================================================
   CTA SECTIONS
   =================================================================== */
.cta-section {
  background: linear-gradient(92deg, #06D6FF 16%, #F6B617 95%);
  border-radius: 22px;
  color: var(--color-dark);
  margin-bottom: 60px;
  box-shadow: 0 8px 32px #06d6ff13;
}
.cta-section h2,
.cta-section p {
  color: #0C1E2C;
}
.cta-section .btn-primary {
  background: #fff;
  color: #14375E;
  border: 2px solid var(--color-accent);
  margin-left: 0;
  margin-top: 12px;
  box-shadow: 0 2px 10px #f6b61733;
}
.cta-section .btn-primary:hover {
  background: var(--color-accent);
  color: #fff;
}


/* ===================================================================
   FOOTER
   =================================================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 34px 0 0 0;
  font-size: 1rem;
  margin-top: 60px;
  box-shadow: 0 -3px 10px rgba(12, 30, 44, 0.09);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
.footer-logo {
  margin-bottom: 18px;
  min-width: 100px;
}
.footer-logo img {
  width: 52px;
  height: auto;
  display: block;
}
.contact-info h3 {
  color: var(--color-accent);
  font-size: 1.12rem;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contact-info p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 3px;
}
.contact-info a {
  color: #F6B617;
  text-decoration: underline;
  font-weight: 700;
}
.contact-info a:hover { color: #06d6ff; }
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: #fff;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-size: 0.97rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  opacity: 0.92;
  transition: color 0.18s;
}
.footer-menu a:hover { color: var(--color-accent); }

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-links span {
  color: var(--color-accent);
  font-size: 0.97rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
.social-links img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  filter: drop-shadow(0 2px 8px #06d6ff44);
  transition: transform 0.18s;
}
.social-links img:hover { transform: scale(1.14) rotate(-8deg); }


/* ===================================================================
   TEXT CONTENT, MISC UTILITIES
   =================================================================== */
.text-section {
  max-width: 720px;
  margin: 0 auto;
}
.text-section h2, .text-section h3 { margin-top: 1.4em; }
.text-section h2:first-child, .text-section h3:first-child {
  margin-top: 0;
}
.map-placeholder {
  background: #e9f8fc;
  border-radius: 12px;
  padding: 20px;
  margin-top: 18px;
  font-size: 1rem;
}

/****** FAQ LIST ******/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.faq-list strong {
  color: var(--color-primary);
  font-size: 1.08rem;
  font-family: var(--font-display);
}
.faq-list p {
  font-size: 1rem;
  color: var(--color-dark);
  margin-top: 4px;
}


/* ===================================================================
   MOBILE NAVIGATION / HAMBURGER MENU
   =================================================================== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 12px;
  border-radius: 8px;
  margin-left: 22px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  z-index: 2000;
}
.mobile-menu-toggle:focus {
  outline: 3px solid var(--color-accent);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,55,94,0.97);
  z-index: 3000;
  transform: translateX(-110%);
  transition: transform 0.35s cubic-bezier(.75,-0.02,.22,1.1);
  box-shadow: 2px 0px 36px rgba(20,55,94,0.22);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  font-size: 2.2rem;
  background: none;
  border: none;
  padding: 18px 16px 6px 16px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 3200;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 30px 0 0 55px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.33rem;
  color: #fff;
  padding: 14px 0;
  letter-spacing: 1px;
  border-bottom: 2px solid transparent;
  transition: color 0.17s, border-bottom 0.17s;
  text-transform: uppercase;
  width: max-content;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: #F6B617;
  border-bottom: 2px solid #F6B617;
  background: none;
}

/* For hamburger: hide nav and show toggle on mobile */
@media (max-width: 1023px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    padding-right: 16px;
  }
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===================================================================
   COOKIE CONSENT BANNER
   =================================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #14375E;
  box-shadow: 0 -4px 24px #14375e11;
  z-index: 5500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px 16px;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1.01);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  max-width: 460px;
  line-height: 1.47;
  margin-right: 24px;
  color: #14375E;
}
.cookie-banner .btn-cookie {
  border-radius: 26px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 22px;
  border: none;
  margin: 0 7px;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 8px #06d6ff33;
}
.btn-cookie-accept {
  background: var(--color-accent);
  color: #14375E;
}
.btn-cookie-accept:hover, .btn-cookie-accept:focus {
  background: #14375E;
  color: #fff;
}
.btn-cookie-reject {
  background: #eee;
  color: #0c1e2c;
}
.btn-cookie-reject:hover, .btn-cookie-reject:focus {
  background: #e94560;
  color: #fff;
}
.btn-cookie-settings {
  background: #06d6ff;
  color: #14375E;
}
.btn-cookie-settings:hover, .btn-cookie-settings:focus {
  background: #14375E;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%) scale(1);
  background: #fff;
  box-shadow: 0 8px 48px #14375e23, 0 2px 12px #06d6ff22;
  border-radius: 18px;
  z-index: 6000;
  max-width: 99vw;
  min-width: 280px;
  width: 420px;
  padding: 36px 28px 32px 28px;
  transition: opacity 0.14s, transform 0.18s cubic-bezier(.77,0,.18,1.01);
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -53%) scale(1.02);
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.33rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--color-primary);
  font-family: var(--font-body);
}
.cookie-modal .cookie-toggle {
  width: 34px;
  height: 20px;
  border-radius: 30px;
  background: #e9e9e9;
  border: 2px solid #06d6ff;
  cursor: pointer;
  position: relative;
  margin-left: 12px;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  appearance: none;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0; top: 0;
  margin: 0;
  cursor: pointer;
}
.cookie-modal .cookie-toggle .knob {
  width: 18px; height: 18px;
  background: #06d6ff;
  border-radius: 50%;
  position: absolute;
  left: 1px; top: 1px;
  transition: left 0.15s;
}
.cookie-modal .cookie-toggle input[type="checkbox"]:checked + .knob {
  left: 13px;
  background: #F6B617;
}
.cookie-modal .cookie-category[data-essential] label {
  font-weight: 900;
  color: #14375E;
}
.cookie-modal .cookie-category[data-essential] .cookie-toggle {
  background: #f6b617;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 26px;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie {
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 16px;
  border: none;
}

.cookie-modal .btn-cookie-close {
  background: transparent;
  color: #14375E;
  font-size: 1.32rem;
  font-weight: 900;
  border: none;
  position: absolute;
  right: 18px;
  top: 16px;
  cursor: pointer;
  opacity: .85;
}
.cookie-modal .btn-cookie-close:hover, .cookie-modal .btn-cookie-close:focus {
  color: var(--color-hot-pink);
  outline: none;
}


/* ===================================================================
   RESPONSIVE DESIGN
   =================================================================== */
@media (max-width: 1200px) {
  .container { max-width: 990px; }
}
@media (max-width: 1000px) {
  .container { max-width: 770px; }
  .footer-logo img { width: 41px; }
}
@media (max-width: 900px) {
  .container { max-width: 90vw; }
}
@media (max-width: 870px) {
  .footer .content-wrapper { flex-direction: column; gap: 22px; align-items: flex-start; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.56rem; }
  h3 { font-size: 1.08rem; }
  .container {
    padding: 0 10px;
    max-width: 99vw;
  }
  .section, section {
    padding: 30px 7px;
    margin-bottom: 40px;
  }
  .content-wrapper, .card-container, .content-grid, .text-image-section, .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-card { flex-direction: column; align-items: flex-start; padding: 16px 12px; }
  .footer .content-wrapper { gap: 22px; }
  .footer-menu { flex-direction: row; gap: 14px; }
  .service, .card { min-width: 170px; max-width: none; padding: 17px 12px; }
  .service-teasers, .feature-grid, .content-grid {
    gap: 14px;
  }
  .hero {
    padding: 40px 0 34px 0;
    margin-bottom: 24px;
  }
  .cta-section {
    border-radius: 12px;
    margin-bottom: 34px;
    padding: 23px 7px !important;
  }
  .cookie-modal { padding: 24px 7px 20px 7px; width: 94vw; max-width: 99vw; }
}
@media (max-width: 525px) {
  .hero h1 { font-size: 1.33rem; }
  .hero .subheadline, h2 { font-size: 1.1rem; }
  .btn-primary, .btn-secondary { font-size: 0.96rem; padding: 11px 14px; }
  .footer-logo img { width: 31px; }
}
@media (max-width: 400px) {
  .cookie-banner { font-size: 0.92rem; flex-direction: column; gap: 12px; }
  .cookie-banner p { margin-right: 0; }
}


/* ===================================================================
   MICRO-INTERACTIONS & ANIMATIONS
   =================================================================== */
.btn-primary, .btn-secondary, .btn-cookie {
  transition: background 0.18s, color 0.18s, transform 0.15s;
}
.testimonial-card {
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:active, .testimonial-card:hover {
  box-shadow: 0 12px 40px #f6b61716, 0 2px 10px #06d6ff0a;
  transform: translateY(-2px) scale(1.024);
}
.card:active, .service:active {
  transform: scale(1.025) translateY(-2px);
}
input:focus, button:focus, a:focus {
  outline: 2px solid #06d6ff;
  outline-offset: 1.5px;
}

/****** Remove outline on mouse only (keep keyboard) ******/
*:focus:not(:focus-visible) {
  outline: none;
}


/* ===================================================================
   COLORFUL, ENERGETIC UTILITY CLASSES
   =================================================================== */
.bg-hot-pink { background: #e94560 !important; color: #fff !important; }
.bg-electric-blue { background: #06d6ff !important; color: #14375E !important; }
.bg-yellow { background: #f6b617 !important; color: #14375E !important; }
.bg-dark { background: #14375E !important; color: #fff !important; }
.text-accent { color: var(--color-accent) !important; }
.text-primary { color: var(--color-primary) !important; }
.text-electric { color: #06d6ff !important; }
.text-hot-pink { color: #e94560 !important; }


/* ================
   ACCESSIBILITY
================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #14375E;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
  font-size: 1rem;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* Hide visually */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }


/* ===================================================================
   END OF STYLE.CSS
   =================================================================== */
