/* ===================== CSS RESET & NORMALIZE ===================== */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FDF8F3;
  color: #273142;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
}
a {
  color: #285296;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2EA7A7;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===================== BRAND COLORS & FONTS ===================== */
:root {
  --primary: #285296;
  --primary-light: #4C78C4;
  --secondary: #2EA7A7;
  --accent: #F4F4F9;
  --bg-warm: #FDF8F3;
  --highlight: #FFF7E7;
  --danger: #DD6655;
  --shadow: 0 2px 12px rgba(40, 82, 150, 0.09);
  --radius: 18px;
  --radius-sm: 10px;
  --header-height: 72px;
  --transition: 0.22s cubic-bezier(.42,.77,.23,1.01);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--primary);
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.7rem;
  line-height: 1.2;
  margin-bottom: 17px;
}
h3 {
  font-size: 1.2rem;
  line-height: 1.28;
  margin-bottom: 13px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 11px;
}
p, li {
  margin-bottom: 14px;
  font-size: 1rem;
}
strong {
  color: var(--primary);
}
blockquote {
  font-style: italic;
  background: #FFF7E7;
  padding: 18px 26px;
  border-left: 5px solid var(--secondary);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  color: #343f56;
  font-size: 1.07rem;
}

em {
  color: var(--secondary);
}

/* ===================== GLOBAL LAYOUT STRUCTURE ===================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--accent);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===================== NAVIGATION ===================== */
header {
  width: 100%;
  background: var(--primary);
  min-height: var(--header-height);
  box-shadow: 0 4px 16px rgba(40, 82, 150, 0.10);
  position: relative;
  z-index: 99;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 0 20px;
  height: var(--header-height);
  background: none;
}
.main-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  padding: 9px 18px;
  transition: background var(--transition), color var(--transition);
  position: relative;
  background: transparent;
}
.main-nav a.cta {
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(46, 167, 167, 0.11);
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #25bab9;
  color: #fff;
}
.main-nav a:hover:not(.cta), .main-nav a:focus:not(.cta) {
  background: rgba(255,255,255,0.13);
  color: var(--highlight);
}
.main-nav img {
  height: 36px;
  margin-right: 30px;
  display: block;
}

/* --------------------- MOBILE NAVIGATION --------------------- */
.mobile-menu-toggle {
  position: absolute;
  right: 24px;
  top: 19px;
  z-index: 101;
  display: none;
  background: var(--secondary);
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(40, 82, 150, 0.10);
  transition: background var(--transition);
  align-items: center;
  justify-content: center;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--highlight);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 320px;
  height: 100vh;
  background: var(--accent);
  box-shadow: -4px 0 24px rgba(40, 82, 150, 0.21);
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 32px 18px 0 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--danger);
  color: #fff;
  font-size: 1.5em;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2010;
  border: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ac3c2d;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 45px;
  margin-left: 8px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  background: none;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
/* Hide the main nav on mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 400px) {
  .mobile-menu {
    max-width: 99vw;
    padding: 18px 6px 0 6px;
  }
}

/* Overlay to block background scroll when menu open */
.mobile-menu-overlay {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(39, 49, 66, 0.35);
  z-index: 2000;
  opacity: 1;
  pointer-events: auto;
  transition: opacity var(--transition);
}
.mobile-menu:not(.open) + .mobile-menu-overlay {
  opacity: 0;
  pointer-events: none;
}

/* ===================== HERO & GENERAL SECTIONS ===================== */
main > section {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: none;
}
.cta-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--highlight);
  border-radius: var(--radius);
  padding: 38px 28px;
  box-shadow: var(--shadow);
  margin: 0 auto 0 auto;
  width: 100%;
  max-width: 700px;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.cta-banner h2{
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 7px;
}

/* ===================== FLEXBOX UTILITY LAYOUTS ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 32px 24px 22px 24px;
  flex: 1 1 320px;
  min-width: 240px;
  max-width: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px rgba(46, 167, 167, 0.13);
  transform: translateY(-2px) scale(1.012);
}
.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;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  min-width: 0;
  max-width: 700px;
  color: #232930;
  transition: box-shadow var(--transition);
  flex-wrap: wrap;
  flex-direction: row;
  word-break: break-word;
}
.testimonial-card blockquote {
  margin-bottom: 8px;
  background: none;
  padding: 0;
  border: none;
  font-size: 1rem;
  color: #273142;
}
.testimonial-card .stars {
  color: #FDB92C;
  font-size: 1.25em;
  font-family: var(--font-display);
  line-height: 1;
  margin-left: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===================== LIST STYLES FOR FEATURE GRIDS, INDUSTRIES ===================== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.features-grid li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 22px 20px 22px;
  min-width: 220px;
  flex: 1 1 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.features-grid li:hover:nth-child(odd), .features-grid li:focus-within:nth-child(odd) {
  box-shadow: 0 6px 18px rgba(46,167,167,0.10);
  transform: translateY(-2px) scale(1.012);
}
.features-grid li:hover:nth-child(even), .features-grid li:focus-within:nth-child(even) {
  box-shadow: 0 10px 32px rgba(40,82,150,0.10);
  transform: translateY(-1.5px) scale(1.009);
}
.features-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 7px;
}
.features-grid h3 {
  font-size: 1.14rem;
  margin-bottom: 5px;
  color: var(--primary);
}
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 12px 0 0 0;
}
.industry-grid li {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 26px 18px 9px 18px;
  min-width: 134px;
  flex: 1 1 150px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.industry-grid img {
  height: 38px;
  margin-bottom: 6px;
}
.industry-grid p {
  font-family: var(--font-display);
  color: var(--secondary);
  font-size: 1.02rem;
  font-weight: 600;
  margin: 0;
}
.case-study-teasers, .case-preview {
  background: var(--highlight);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  margin-top: 18px;
  box-shadow: 0 1.5px 4px rgba(46, 167, 167, 0.07);
  color: #405876;
}

/* ===================== RESOURCE, NEWS, EVENTS ===================== */
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.more-resources {
  background: var(--highlight);
  border-radius: var(--radius-sm);
  padding: 14px 14px 12px 14px;
  font-size: 0.97em;
  color: #34436a;
  margin-top: 7px;
}
.news-articles {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 18px;
}
.news-articles article {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 18px 19px;
  color: #333a4a;
}
.news-articles .date {
  color: var(--secondary);
  font-size: 0.93em;
  margin-top: 5px;
  display: block;
}
.event-announcements, .map-embed {
  background: var(--highlight);
  border-radius: var(--radius-sm);
  padding: 10px 15px 10px 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
  font-size: 0.96em;
  color: #305799;
}
.event-announcements ul {
  margin-left: 11px;
}

/* ===================== TABLE ===================== */
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 1em;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin: 18px 0 10px 0;
  overflow: hidden;
}
table th, table td {
  padding: 14px 11px;
  border-bottom: 1px solid #E9EBEF;
}
table th {
  background: var(--highlight);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.01em;
  font-weight: 600;
}
table tr:last-child td {
  border-bottom: none;
}

/* ===================== BUTTONS ===================== */
.cta, .btn, .btn-primary {
  display: inline-block;
  background: var(--secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 30px;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 1.2px 10px rgba(46, 167, 167, 0.08);
  transition: background var(--transition), transform var(--transition);
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus, .btn-primary:hover {
  background: #20bab7;
  color: #fff;
  transform: translateY(-1.5px) scale(1.03);
  outline: none;
}
.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--secondary);
  color: #fff;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 34px 0 22px 0;
}
.footer-content {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
  justify-content: space-between;
  flex-wrap: wrap;
  min-width: 0;
}
.footer-content a, .footer-content nav a {
  color: #fff;
  opacity: 1;
  font-weight: 500;
  margin-right: 13px;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: text-decoration 0.2s, color 0.2s, opacity 0.2s;
}
.footer-content a:hover, .footer-content nav a:hover {
  text-decoration: underline;
  color: var(--highlight);
  opacity: 1;
}
.footer-content address {
  font-style: normal;
  margin-right: 12px;
}
.footer-content img {
  height: 40px;
  margin-bottom: 8px;
  border-radius: 10px;
}
.footer-content span {
  display: inline-block;
  margin-right: 20px;
  margin-top: 6px;
  font-size: 0.98em;
}
@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
}

/* ===================== TEXT SECTION STYLES ===================== */
.text-section {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 1.2px 6px rgba(40, 82, 150, 0.08);
  padding: 22px 22px 14px 22px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.text-section ul {
  padding-left: 18px;
  list-style-type: disc;
  margin-bottom: 0;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1rem;
  color: #475276;
}
.text-section img {
  display: inline-block;
  vertical-align: middle;
  height: 36px;
  margin-right: 6px;
}
.map-embed {
  margin-top: 10px;
  background: var(--highlight);
  border-radius: var(--radius-sm);
  box-shadow: 0 1.2px 3px rgba(40,82,150,0.07);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #333;
}

/* ===================== COOKIE CONSENT BANNER & MODAL ===================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 -4px 32px rgba(40, 82, 150, 0.13);
  padding: 20px 25px 20px 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: center;
  font-family: var(--font-body);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  animation: cookie-slide-in 0.6s cubic-bezier(.64,.16,.33,1.5);
}
@keyframes cookie-slide-in {
  from { transform: translateY(88px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner button {
  font-size: 1rem;
  padding: 10px 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  margin-left: 2px;
  margin-right: 2px;
  transition: background var(--transition), color var(--transition), outline 0.2s;
}
.cookie-consent-banner .accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: #20bab7;
  color: #fff;
}
.cookie-consent-banner .reject {
  background: #fff;
  color: var(--danger);
  border: 1.5px solid var(--danger);
}
.cookie-consent-banner .reject:hover, .cookie-consent-banner .reject:focus {
  background: var(--danger);
  color: #fff;
}
.cookie-consent-banner .settings {
  background: none;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  background: var(--highlight);
  color: var(--primary);
  border-color: var(--highlight);
}

/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(39, 49, 66, 0.37);
  z-index: 4200;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.23s;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(40, 82, 150, 0.19);
  padding: 38px 24px 24px 24px;
  color: #392A16;
  min-width: 315px;
  max-width: 97vw;
  position: relative;
  animation: modal-slide-in 0.5s cubic-bezier(.33,1.5,.7,1);
}
@keyframes modal-slide-in {
  from { transform: translateY(40px) scale(0.93); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.21rem;
  margin-bottom: 13px;
  color: var(--primary);
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.25rem;
  background: #fff0cb;
  color: #9b7100;
  border-radius: 50%;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--danger);
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1.07em;
  padding-bottom: 9px;
  border-bottom: 1px solid #ece8de;
}
.cookie-category:last-child {
  border-bottom: none;
}
.category-toggle {
  accent-color: var(--secondary);
  width: 23px;
  height: 23px;
}
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal .accept, .cookie-modal .reject {
  min-width: 95px;
}

/* ===================== RESPONSIVE RULES ===================== */
@media (max-width: 1200px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  .features-grid, .industry-grid {
    gap: 15px;
  }
  .content-wrapper {
    max-width: 99vw;
    gap: 18px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 45px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .content-wrapper {
    padding: 0 2px;
    gap: 11px;
  }
  .section {
    padding: 26px 5px;
    margin-bottom: 36px;
  }
  .features-grid, .industry-grid {
    gap: 9px;
  }
  .industry-grid li, .features-grid li {
    min-width: 98px;
    max-width: 100vw;
    padding: 18px 7px;
  }
  .footer-content {
    gap: 10px;
    flex-direction: column;
  }
  .card {
    padding: 18px 8px 15px 12px;
    min-width: 180px;
    max-width: 99vw;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    max-width: 98vw;
  }
  .cta-banner {
    padding: 22px 6px;
    min-width: 96vw;
    align-items: center;
  }
  .news-articles article, .text-section {
    padding: 12px 6px 7px 10px;
  }
}
@media (max-width: 540px) {
  .card-container, .features-grid, .industry-grid, .content-grid {
    flex-direction: column;
    gap: 11px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 99vw;
  }
  .cta-banner {
    min-width: 90vw;
    padding: 12px 4px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 2px;
  }
  .section {
    padding: 11px 2px;
  }
  .cta-banner {
    padding: 8px 2px;
  }
}
/* ========== COLUMN LAYOUT ADAPTATION FOR FLEXBOX ON LARGER SCREENS ========== */
.text-image-section {
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 769px) {
  .text-image-section {
    flex-direction: row;
    align-items: center;
  }
}

/* ===================== MICRO-INTERACTIONS & TRANSITIONS ===================== */
.card, .features-grid li, .industry-grid li, .testimonial-card,
.cta, .btn, .btn-primary, .btn-outline, .cookie-consent-banner button,
.mobile-menu, .cookie-modal, .news-articles article {
  transition: box-shadow var(--transition), transform var(--transition), background var(--transition), color var(--transition);
}

/* ===================== Z-INDEX & LAYERING ===================== */
.mobile-menu,
.cookie-modal-overlay,
.cookie-consent-banner {
  z-index: 3000 !important;
}

/* ============== ACCESSIBILITY: FOCUS STATES ============== */
a:focus:not(:hover), .btn:focus:not(:hover), .cta:focus:not(:hover),
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
}

/* ========== HIDE SCROLLBAR FOR OVERLAYS ========== */
.mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #e1e8f7 #fff;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  width: 7px;
  background: #fff;
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal::-webkit-scrollbar-thumb {
  background: #e1e8f7;
  border-radius: 5px;
}

/* ========== MISC HELPER CLASSES ========== */
.hide-mobile { display: block !important; }
.show-mobile { display: none !important; }
@media (max-width: 992px) {
  .hide-mobile { display: none !important; }
  .show-mobile { display: block !important; }
}

/* ========== TABLET & MOBILE HAMBURGER ADJUST ========== */
@media (max-width: 768px) {
  header {
    min-height: 54px;
  }
  .mobile-menu-toggle {
    top: 8px;
    width: 38px;
    height: 38px;
    font-size: 1.5rem;
  }
}

/* ================================================ */
/* Custom Scrollbar for Main Content (optional) */
body {
  scrollbar-width: thin;
  scrollbar-color: var(--secondary) #F4F4F9;
}
body::-webkit-scrollbar {
  width: 9px;
  background: #FDF8F3;
}
body::-webkit-scrollbar-thumb {
  background: #e1e8f7;
  border-radius: 3.5px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #b5bdd1;
}

/* ===================== END OF STYLES ===================== */
