/* ===================================================
   MediX Shock Design Akademie — style.css
   Geometric Structured Design | Mobile-First | Flexbox only
   ======================================================= */

/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #f5f6fa;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #11335b;
  letter-spacing: 0.01em;
}
img {
  border: 0; max-width: 100%; height: auto;
}
a {
  color: #11335b;
  text-decoration: none;
  transition: color .22s;
}
a:hover, a:focus {
  color: #6ae6ce;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit; font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
button { cursor: pointer; }

/* ===================================================
   BASE TYPOGRAPHY
   =================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #11335b;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, sans-serif;
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.35rem; }
}
p, li, span {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
}
strong { font-weight: 700; }

/* ===================================================
   MAIN LAYOUT CONTAINERS
   =================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===================================================
   HEADER & NAVIGATION
   =================================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(17,51,91,0.06);
  position: relative;
  z-index: 103;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 12px 0;
  padding: 16px 6vw 16px 20px;
  position: relative;
}
.main-nav .logo {
  margin-right: 28px;
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  color: #11335b;
  margin-right: 20px;
  padding: 6px 9px;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: color .22s, background .18s;
}
.main-nav a:last-child {
  margin-right: 0;
}
.main-nav a.cta.primary {
  background: #11335b;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(17,51,91,0.07);
  padding: 10px 22px;
  margin-left: auto;
  transition: background .18s, color .18s, box-shadow .24s;
  border: none;
}
.main-nav a.cta.primary:hover, .main-nav a.cta.primary:focus {
  background: #6ae6ce;
  color: #11335b;
  box-shadow: 0 4px 20px rgba(106,230,206,0.22);
}

/* MOBILE NAV MENU ---
====================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #11335b;
  background: #fff;
  border: 2px solid #11335b;
  border-radius: 6px;
  padding: 7px 13px;
  font-size: 2rem;
  cursor: pointer;
  margin: 0 20px 0 auto;
  z-index: 110;
  transition: background .19s, color .17s, border .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #6ae6ce;
  color: #11335b;
  border-color: #6ae6ce;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
  .mobile-menu { display: none !important; }
}
@media (max-width: 1023.98px) {
  .main-nav {
    flex-direction: row;
    overflow-x: auto;
    white-space: nowrap;
    gap: 0;
    padding: 14px 8vw 14px 14px;
    font-size: 1rem;
  }
  .main-nav a:not(.logo) { display: none; }
  .main-nav .cta.primary { display: none; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #11335b;
  color: #fff;
  z-index: 130;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.8,.4,.2,1);
  box-shadow: 2px 0 8px rgba(17,51,91,0.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 17px 20px 13px 20px;
  border: none;
  margin-left: 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color .19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #6ae6ce;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 25px;
  padding: 0 28px;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.04em;
  padding: 12px 0 12px 4px;
  border-radius: 5px;
  transition: background .19s, color .19s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6ae6ce;
  color: #11335b;
}

/* For main CTA in mobile nav, make it stand out */
.mobile-nav a.cta.primary {
  background: #6ae6ce;
  color: #11335b;
  text-align: center;
  width: 100%;
  margin-top: 17px;
  padding: 13px 0;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 9px;
}

/* Show/hide nav menus based on viewport */
@media (max-width: 1023.98px) {
  .main-nav .logo { display: inline-flex; }
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  background: #11335b;
  color: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
}
.hero .content-wrapper {
  align-items: center;
  max-width: 800px;
  gap: 18px;
}
.hero h1, .hero h2, .hero h3, .hero p {
  color: #fff;
}
.hero h1 {
  font-size: 2rem;
  margin-bottom: 13px;
  letter-spacing: .03em;
}
.hero p {
  font-size: 1.08rem;
  max-width: 650px;
  text-align: center;
  margin-bottom: 19px;
}
.hero .cta.primary {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .hero {
    min-height: 430px;
    margin-bottom: 80px;
  }
  .hero h1 { font-size: 3rem; }
  .hero .container {
    padding: 70px 24px 60px 24px;
  }
}

/* ===================================================
   FLEXBOX SPACING/LAYOUT PATTERNS
   =================================================== */
.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 3px 18px rgba(17,51,91,0.06);
  display: flex;
  flex-direction: column;
}
.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;
  background: #f5f6fa;
  border: 2px solid #11335b;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(17,51,91,0.06);
  padding: 20px;
  margin-bottom: 20px;
  transition: border 0.17s, box-shadow 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-color: #6ae6ce;
  box-shadow: 0 6px 32px rgba(106,230,206,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features,
.about,
.services,
.testimonials,
.contact {
  margin-bottom: 60px;
}

/* Ensure min 20px margins between content cards */
.features .content-wrapper > *,
.about .content-wrapper > *,
.services .content-wrapper > *,
.testimonials .content-wrapper > *,
.contact .content-wrapper > * {
  margin-bottom: 20px;
}
.features .content-wrapper > *:last-child,
.about .content-wrapper > *:last-child,
.services .content-wrapper > *:last-child,
.testimonials .content-wrapper > *:last-child,
.contact .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* ===================================================
   FEATURES SECTIONS
   =================================================== */
.features ul,
.about ul,
.services ul,
.testimonials ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 0;
}
.features li,
.about li,
.services li {
  padding-left: 0;
  position: relative;
  font-size: 1.04rem;
  background: #fff;
  border-left: 6px solid #6ae6ce;
  border-radius: 7px;
  padding: 13px 16px;
  line-height: 1.6;
  box-shadow: 0 2px 12px rgba(106,230,206,0.05);
  font-family: 'Open Sans', Arial, sans-serif;
}
.features li > img {
  vertical-align: middle;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  display: inline-block;
}
/* Remove unnecessary background for nested lists */
.features ul ul li, .about ul ul li, .services ul ul li {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 0 0 20px;
}

/* ===================================================
   CTA BUTTONS
   =================================================== */
.cta {
  display: inline-block;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 12px 28px;
  margin: 0 6px 0 0;
  cursor: pointer;
  text-align: center;
  letter-spacing: .025em;
  box-shadow: 0 3px 16px rgba(17,51,91,0.09);
  text-transform: uppercase;
  border: none;
  transition: background .16s, color .16s, box-shadow .26s, border .13s;
}
.cta.primary {
  background: #11335b;
  color: #fff;
  border: 2px solid #11335b;
}
.cta.primary:hover, .cta.primary:focus {
  background: #6ae6ce;
  color: #11335b;
  border-color: #6ae6ce;
  box-shadow: 0 6px 32px rgba(106,230,206,0.16);
}
.cta.secondary {
  background: #6ae6ce;
  color: #11335b;
  border: 2px solid #6ae6ce;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #11335b;
  color: #fff;
  border-color: #11335b;
  box-shadow: 0 6px 32px rgba(17,51,91,0.13);
}

/* ===================================================
   TESTIMONIALS (Dark on Light for Accessibility)
   =================================================== */
.testimonials {
  background: linear-gradient(135deg, #fff 73%, #6ae6ce 100%);
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(17,51,91,0.06);
  padding: 42px 0 36px 0;
  margin-bottom: 70px;
}
.testimonials h2 {
  color: #11335b;
  margin-bottom: 26px;
}
.testimonial-card p {
  color: #11335b;
  font-size: 1.13rem;
  margin-bottom: 0;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: .98rem;
  color: #11335b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-top: 10px;
}
.testimonial-meta span:last-child {
  letter-spacing: 2px;
  color: #6ae6ce;
  font-size: 1.1em;
}
/* brand logos */
.brands-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 31px;
}
.brands-row span {
  font-size: 1.05rem;
  color: #11335b;
}
.brands-row img {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(17,51,91,0.08);
  padding: 8px;
  height: 48px;
  width: auto;
  margin-right: 7px;
}

/* ===================================================
   CONTACT SECTION / LOCATION
   =================================================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.03rem;
}
.location-map {
  margin: 24px auto 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(17,51,91,0.07);
  padding: 16px 28px;
  max-width: 420px;
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: #11335b;
  color: #fff;
  padding: 50px 0 0 0;
  width: 100%;
  font-size: 1rem;
  letter-spacing: .01em;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-start;
}
.footer-brand img {
  height: 48px;
  width: auto;
  margin-right: 13px;
}
.footer-brand p {
  color: #fff;
  font-size: 1.01rem;
  margin-top: 2px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin: 14px 0 0 0;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: .96rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color .14s;
}
.footer-menu a:hover,.footer-menu a:focus {
  color: #6ae6ce;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 13px;
}
.social-links a {
  background: #fff;
  height: 36px; width: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: box-shadow .20s, background .18s;
  box-shadow: 0 2px 8px rgba(17,51,91,0.05);
}
.social-links a:hover, .social-links a:focus {
  background: #6ae6ce;
  box-shadow: 0 4px 18px rgba(106,230,206,0.12);
}
.social-links img {
  width: 22px; height: 22px;
}
@media (min-width: 768px) {
  footer .content-wrapper {
    flex-direction: row;
    gap: 38px;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    gap: 22px;
    align-items: flex-start;
    max-width: 400px;
  }
  .footer-menu {
    align-items: flex-start;
    margin-top: 0;
  }
}

/* ===================================================
   COOKIE CONSENT BANNER
   =================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #11335b;
  color: #fff;
  width: 100%;
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 23px 18px 23px 18px;
  box-shadow: 0 -4px 38px rgba(17,51,91,0.18);
  font-size: 1.02rem;
  animation: fadeInBottom 0.6s cubic-bezier(.6,.2,.28,1) 1;
  gap: 18px;
}
@media (max-width: 680px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 20px 8px 20px 8px;
  }
}
@keyframes fadeInBottom {
  0% { opacity: 0; transform: translateY(36px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 18px;
  margin: 0;
  cursor: pointer;
  background: #6ae6ce;
  color: #11335b;
  transition: background .18s, color .15s, box-shadow .21s;
  box-shadow: 0 2px 12px rgba(106,230,206,0.07);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #11335b;
  outline: none;
}
.cookie-btn.reject {
  background: #fff;
  color: #11335b;
  border: 2px solid #6ae6ce;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #6ae6ce;
  color: #11335b;
}
.cookie-btn.settings {
  background: transparent;
  border: 2px solid #6ae6ce;
  color: #6ae6ce;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #6ae6ce;
  color: #11335b;
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1300;
  background: rgba(17,51,91,0.64);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 18px;
  animation: fadeInOverlay 0.4s cubic-bezier(.7,.2,.31,1) 1;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #11335b;
  border-radius: 18px 18px 0 0;
  max-width: 415px;
  width: 100%;
  box-shadow: 0 6px 44px rgba(17,51,91,0.16);
  padding: 28px 26px 32px 26px;
  animation: popUp 0.44s cubic-bezier(.44,0,.56,1) 1;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@keyframes popUp {
  0% { opacity: 0; transform: translateY(100px) scale(.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #11335b;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.06rem;
  padding: 10px 0;
  border-bottom: 1px solid #e3eaf3;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 600;
  color: #11335b;
  font-size: 1.05rem;
}
.cookie-category input[type=checkbox] {
  appearance: none;
  width: 28px; height: 18px;
  border-radius: 32px;
  background: #e3eaf3;
  position: relative;
  outline: none;
  border: none;
  transition: background .2s;
  vertical-align: middle;
}
.cookie-category input[type=checkbox]:checked {
  background: #6ae6ce;
}
.cookie-category input[type=checkbox]::before {
  content: '';
  display: block;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1.5px; left: 3px;
  transition: transform .17s;
}
.cookie-category input[type=checkbox]:checked::before {
  transform: translateX(7px);
  background: #fff;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-actions button {
  font-size: 1rem;
  border-radius: 6px;
  background: #11335b;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background .13s, color .13s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #6ae6ce;
  color: #11335b;
}
.cookie-modal-close {
  background: none;
  color: #11335b;
  font-size: 1.45rem;
  border: none;
  position: absolute;
  top: 15px; right: 22px;
  cursor: pointer;
  transition: color .15s;
  padding: 2px 10px;
  border-radius: 4px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #6ae6ce;
}

/* ===================================================
   GEOMETRIC & STRUCTURED VISUALS
   =================================================== */
section, .section {
  border-radius: 24px;
  box-shadow: 0 3px 22px rgba(106,230,206,0.09);
  background: #fff;
  margin-bottom: 42px;
}
@media (min-width: 1024px) {
  .card-container, .content-grid {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .features ul, .about ul, .services ul, .testimonials ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 22px;
  }
  .features li, .about li, .services li {
    min-width: 270px;
    flex: 1 1 270px;
    max-width: 49%;
  }
  .testimonial-card { max-width: 570px; }
}

/* Angled font for display headlines (geometric style) */
h1, h2, .cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-variation-settings: 'wdth' 125, 'wght' 700;
  font-stretch: 110%;
  letter-spacing: .035em;
}

/* Decorative geometric divider */
.section-divider {
  width: 44px; height: 6px;
  background: #6ae6ce;
  border-radius: 4px;
  margin-bottom: 18px;
  margin-top: 6px;
}

/* ===================================================
   SPACING (DESIGN SYSTEM)
   =================================================== */
:root {
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
}

/* Use white space in sections */
section, .section {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  section, .section {
    padding: 60px 48px;
  }
}

/* ===================================================
   RESPONSIVE DESIGN + MEDIA QUERIES
   =================================================== */
@media (max-width: 1200px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 12px;
  }
  .section, section {
    padding: 29px 8px;
    border-radius: 18px;
  }
  .brands-row img {
    height: 36px;
    padding: 6px;
  }
  .footer-brand {
    flex-direction: column;
    gap: 13px;
  }
  .about, .features, .services, .testimonials, .contact {
    margin-bottom: 43px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
/* Responsive nav content-wrapper */
@media (max-width: 480px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.12rem; }
  .cta { font-size: .96rem; padding: 10px 12px; }
  .footer-brand img { height: 34px; }
}

/* Prevent cards overlap on wrap */
.card,
.testimonial-card,
.feature-item,
.location-map {
  min-width: 0;
  word-break: break-word;
}

/* ADD SUBTLE ANIMATIONS */
.card,.testimonial-card,.cta,.features li, .services li, .about li, .brands-row img {
  transition: box-shadow .22s, border .13s, transform .17s;
}
.card:hover, .features li:hover, .services li:hover, .about li:hover {
  box-shadow: 0 5px 25px rgba(17,51,91,0.12);
  transform: translateY(-2px) scale(1.025);
}

/* ===================================================
   MISC UTILITIES
   =================================================== */
.hide { display: none !important; }

/* Accessibility: Visible focus for all elements */
:focus {
  outline: 3px solid #6ae6ce;
  outline-offset: 2px;
}

/* For .location-map, ensure map doesn't overlap on mobile */
@media (max-width: 480px) {
  .location-map { padding: 8px 3px; max-width: 98vw; }
}

/* ===================================================
   PRINT (Basic)
   =================================================== */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body { color: #000; background: #fff; }
}
