/* --------------------------------------------------
   CSS RESET & NORMALIZE (mobile first)
-------------------------------------------------- */
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;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #F2F3F8;
  color: #134167;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: disc inside;
  margin-left: 1.25em;
  margin-bottom: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #134167;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2rem; margin-bottom: 16px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.125rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, li, blockquote {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #2d3a4a;
  margin-bottom: 12px;
}
blockquote {
  border-left: 4px solid #DD9D36;
  padding-left: 16px;
  font-style: italic;
  color: #134167;
  margin-bottom: 14px;
  background: #F7FAFC;
}
strong { font-weight: 700; }
em { font-style: italic; }

/* --------------------------------------------------
   BRANDING FONTS
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;700&display=swap');

body, input, button {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* --------------------------------------------------
   CONTAINER & LAYOUTS
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 20px;
}
.text-section { gap: 20px; }

/* --------------------------------------------------
   HEADER, NAVIGATION, HERO
-------------------------------------------------- */
header {
  background: linear-gradient(90deg, #134167 0%, #326F9C 100%);
  min-height: 70px;
  padding: 0;
  color: #fff;
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  min-height: 70px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  color: #F2F3F8;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color 0.2s;
  position: relative;
}
nav a:hover, nav a:focus {
  color: #DD9D36;
}
header .btn-primary {
  margin-left: auto;
  min-width: 184px;
}

/* HERO section */
.hero {
  background: linear-gradient(100deg, #F2F3F8 50%, #EAF0F6 100%);
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 60px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(19, 65, 103, 0.10);
  padding: 36px 24px;
  max-width: 650px;
  gap: 20px;
}
.hero h1 {
  color: #134167;
  font-size: 2.6rem;
}
.hero p {
  color: #34506D;
  font-size: 1.2rem;
}

/* --------------------------------------------------
   BUTTONS & LINK CTA
-------------------------------------------------- */
.btn-primary, button.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #DD9D36 70%, #FFCC5D 100%);
  color: #134167;
  font-weight: 700;
  padding: 0.85em 2em;
  border: none;
  border-radius: 26px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.20s, box-shadow 0.25s, transform 0.15s;
  box-shadow: 0 2px 10px rgba(221, 157, 54, 0.08);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FFCC5D 0%, #DD9D36 100%);
  box-shadow: 0 4px 18px rgba(221, 157, 54, 0.18);
  transform: translateY(-2px) scale(1.03);
  color: #13304D;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #134167;
  color: #fff;
  font-weight: 600;
  padding: 0.7em 1.7em;
  border: none;
  border-radius: 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #326F9C;
  color: #fffbe7;
}

/* --------------------------------------------------
   FEATURE & CARD GRID PATTERNS
-------------------------------------------------- */
.feature-grid, .service-cards, .service-list, .features, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.feature-grid > div, .features > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(19, 65, 103, 0.06);
  padding: 28px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 330px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.feature-grid img, .features img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
}
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(19, 65, 103, 0.07);
  flex: 1 1 268px;
  min-width: 220px;
  max-width: 330px;
  padding: 26px 20px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.17s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 6px 32px rgba(19, 65, 103, 0.16);
  transform: translateY(-4px) scale(1.02);
}
.service-price {
  color: #DD9D36;
  font-weight: 700;
  font-size: 1.1em;
  margin-top: 8px;
}

/* --------------------------------------------------
   TESTIMONIALS
-------------------------------------------------- */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(19,65,103,0.13);
  padding: 32px 24px 20px 24px;
  margin-bottom: 20px;
  color: #134167;
  min-width: 260px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(19,65,103,0.21);
  transform: translateY(-3px) scale(1.01);
}
.testimonial-card blockquote {
  color: #134167;
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: none;
  border-left: 4px solid #DD9D36;
  margin-bottom: 8px;
}
.testimonial-meta {
  color: #34506D;
  font-size: 0.98em;
  font-weight: 500;
  margin-top: 4px;
}

/* --------------------------------------------------
   BLOG & SEARCH BAR
-------------------------------------------------- */
.blog-list, .blog-categories {
  margin-bottom: 18px;
}
.blog-list {
  gap: 24px;
  flex-wrap: wrap;
}
.blog-teaser {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px rgba(19, 65, 103, 0.07);
  padding: 28px 18px 16px 18px;
  flex: 1 1 300px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.21s, transform 0.21s;
}
.blog-teaser:hover, .blog-teaser:focus {
  box-shadow: 0 7px 24px rgba(19, 65, 103, 0.21);
  transform: translateY(-3px) scale(1.015);
}
.blog-teaser h2, .blog-teaser h3 {
  color: #134167;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.blog-teaser a {
  color: #DD9D36;
  font-weight: 600;
  font-size: 1em;
  margin-top: 8px;
}
.blog-teaser a:hover, .blog-teaser a:focus { color: #b17812; }
.blog-categories {
  font-size: 1rem;
  color: #134167;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
}
.blog-categories a {
  color: #134167;
  background: #F2F3F8;
  border-radius: 10px;
  padding: 4px 10px;
  margin-left: 2px;
  margin-right: 2px;
  font-weight: 600;
  transition: background 0.16s;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: #DD9D36;
  color: #fff;
}

.search-bar {
  margin-top: 14px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(19,65,103,0.07);
  padding: 2px 8px;
  width: 100%;
}
.search-bar input[type="search"] {
  border: none;
  border-radius: 18px;
  font-size: 1em;
  flex: 1;
  padding: 12px 16px;
  outline: none;
  background: transparent;
  color: #134167;
}
.search-bar button {
  border: none;
  background: #DD9D36;
  color: #233F66;
  font-weight: 700;
  padding: 0 20px;
  height: 38px;
  border-radius: 18px;
  margin-left: 8px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1em;
  transition: background 0.15s, color 0.12s;
}
.search-bar button:hover, .search-bar button:focus {
  background: #b17812;
  color: #fff;
}

/* --------------------------------------------------
   CONTENT GRID & FLEXBOX UTILITIES
-------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(19, 65, 103, 0.08);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content-grid {
  display: flex !important;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

/* --------------------------------------------------
   CTA, UL, Misc Patterns
-------------------------------------------------- */
.text-section ul {
  margin-left: 22px;
  margin-bottom: 18px;
}
.text-section ul li {
  font-size: 1rem;
  color: #2d3a4a;
  line-height: 1.65;
  padding-left: 0;
  margin-bottom: 7px;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: linear-gradient(90deg, #134167 0%, #274767 100%);
  color: #fff;
  padding: 48px 0 32px 0;
  border-radius: 30px 30px 0 0;
  margin-top: 66px;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 44px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  flex: 1 1 220px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 8px;
}
.footer-nav,
.footer-main-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97em;
}
.footer-nav a,
.footer-main-nav a {
  color: #F2F3F8;
  font-weight: 500;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus, .footer-main-nav a:hover, .footer-main-nav a:focus {
  color: #DD9D36;
}
footer p, footer a { color: #e3e8ef; font-size: 1em; }

/* --------------------------------------------------
   CONTACT PAGE
-------------------------------------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 22px 0 11px 0;
}
.contact-info a {
  color: #DD9D36;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.16s;
  word-break: break-all;
}
.contact-info a:hover, .contact-info a:focus {
  color: #134167;
}

/* --------------------------------------------------
   MOBILE NAVIGATION (BURGER MENU)
-------------------------------------------------- */
.mobile-menu-toggle {
  display: inline-flex;
  position: absolute;
  right: 18px;
  top: 21px;
  z-index: 120;
  font-size: 2.1em;
  background: transparent;
  border: none;
  color: #DD9D36;
  cursor: pointer;
  transition: color 0.2s, transform 0.13s;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  outline: none;
}
.mobile-menu-toggle:active {
  color: #FEDA87;
  transform: scale(1.14);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #133556;
  box-shadow: 0 0 0 2000px rgba(20,30,53,0.29);
  color: #fff;
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.89,.01,.55,1.15);
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 26px;
  background: none;
  border: none;
  color: #DD9D36;
  font-size: 2.2em;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.17s, transform 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFCC5D;
  transform: scale(1.08);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 90px;
  padding-left: 34px;
  width: 80vw;
  max-width: 350px;
}
.mobile-nav a {
  color: #F2F3F8;
  font-size: 1.15em;
  font-weight: 600;
  padding: 9px 0;
  transition: color 0.19s, background 0.12s;
  border-radius: 12px;
  display: block;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:active, .mobile-nav a:focus {
  color: #DD9D36;
  background: #243B55;
}

/* Hide nav and main header btns on mobile when menu open */
@media (max-width: 1024px) {
  header nav, header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER + MODAL
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.97);
  border-top: 2px solid #DD9D36;
  box-shadow: 0 -2px 18px rgba(19,65,103,0.09);
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  max-width: 100vw;
  justify-content: space-between;
  padding: 18px 6vw 18px 6vw;
  font-size: 1rem;
  color: #134167;
  transition: transform 0.4s cubic-bezier(.71,0,.47,1);
  transform: translateY(120%);
}
.cookie-banner.active {
  transform: translateY(0);
}
.cookie-banner p {
  flex: 1 1 auto;
  font-size: 1.08em;
  color: #2d3a4a;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  font-size: 0.98em;
  min-width: 112px;
  padding: 9px 1.6em;
  margin-left: 10px;
}
.cookie-banner .btn-settings {
  background: #F2F3F8;
  color: #134167;
  border: 1px solid #134167;
  border-radius: 16px;
  padding: 9px 1.5em;
  font-weight: 600;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.19s, color 0.17s;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #DD9D36;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(19, 65, 103, 0.15);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-box {
  background: #fff;
  color: #134167;
  box-shadow: 0 8px 48px rgba(19,65,103,0.18);
  border-radius: 20px;
  max-width: 95vw;
  width: 410px;
  padding: 32px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-box h2 {
  color: #134167;
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial,Helvetica,sans-serif;
}
.cookie-category {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #DD9D36;
  width: 18px;
  height: 18px;
}
.cookie-category label {
  font-size: 1rem;
  color: #134167;
}
.cookie-category .always-on { color: #3A9A43; font-size: 0.97em; font-weight: 700; margin-left: 3px; }
.cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  font-size: 1em;
  padding: 9px 1.6em;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 17px;
  background: none;
  border: none;
  font-size: 2em;
  color: #DD9D36;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #b17812; }

/* --------------------------------------------------
   RESPONSIVE STYLES (mobile first - desktop overrides below)
-------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding: 0 5vw;
  }
  .section { padding: 32px 8px; margin-bottom: 40px; }
  .hero { padding: 20px 0 40px 0; }
  .hero .content-wrapper { padding: 24px 7px; border-radius: 14px; }
  nav, .footer-main-nav, .footer-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .feature-grid, .service-cards, .blog-list, .features {
    flex-direction: column !important;
    gap: 18px;
  }
  .feature-grid > div, .features > div, .service-card, .card {
    min-width: unset;
    width: 100%;
    max-width: none;
    padding-left: 14px; padding-right: 14px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    min-width: unset;
    width: 100%;
    border-radius: 13px;
    padding: 20px 10px 16px 12px;
  }
  .blog-teaser {
    width: 100%;
    min-width: unset;
    padding: 24px 11px 11px 14px;
    border-radius: 10px;
  }
  .footer-brand {
    min-width: 1px;
    margin-bottom: 12px;
  }
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 15px 7vw;
    font-size: 0.98em;
  }
  .cookie-modal-box { width: 98vw; max-width: 98vw; padding: 21px 7vw; }
}

@media (max-width: 500px) {
  h1 { font-size: 1.4rem; }
  .section { padding: 14px 2vw; }
  .service-card, .feature-grid > div, .features > div, .card {
    padding: 15px 5px 12px 7px;
  }
  .hero .content-wrapper { padding: 14px 3vw; }
}

@media (min-width: 769px) {
  .feature-grid, .service-cards, .service-list, .features, .blog-list {
    flex-direction: row;
    align-items: stretch;
  }
  .feature-grid > div, .service-card {
    min-width: 240px;
    max-width: 330px;
    flex: 1 1 260px;
  }
  .blog-teaser {
    min-width: 260px;
    max-width: 360px;
    flex: 1 1 320px;
  }
}

/* --------------------------------------------------
   FORM CONTROL STYLES (Inputs, etc.)
-------------------------------------------------- */
input[type="text"], input[type="email"], input[type="search"], textarea {
  border: 1px solid #E5EAF2;
  background: #fff;
  border-radius: 13px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #134167;
  margin-bottom: 15px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  transition: border-color 0.18s;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="search"]:focus, textarea:focus {
  outline: none;
  border-color: #DD9D36;
}

/* --------------------------------------------------
   UTILITY CLASSES (SPACING, etc.)
-------------------------------------------------- */
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.pt-16 { padding-top: 16px !important; }
.pb-16 { padding-bottom: 16px !important; }

/* Animation utility for slide in (e.g. mobile menu, cookie bar) */
@keyframes slideInUp {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Focus and accessibility */
a:focus, button:focus, input:focus {
  outline: 2px solid #DD9D36;
  outline-offset: 2px;
}

/* --------------------------------------------------
   VISUAL MICRO-INTERACTIONS
-------------------------------------------------- */
nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #DD9D36 40%, #FFCC5D 100%);
  transition: width 0.22s;
  margin-top: 3px;
  border-radius: 3px;
}
nav a:hover::after, nav a:focus::after {
  width: 100%;
}

.btn-primary:active {
  filter: brightness(0.95);
}

.card, .service-card, .testimonial-card, .blog-teaser {
  transition: box-shadow 0.21s, transform 0.17s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .blog-teaser:hover {
  box-shadow: 0 7px 32px rgba(19, 65, 103, 0.19);
  transform: translateY(-5px) scale(1.012);
}

/* --------------------------------------------------
   OTHER RESPONSIVE ADJUSTMENTS
-------------------------------------------------- */
@media (max-width: 900px) {
  .container { padding: 0 4vw; }
  .footer-brand, .footer-main-nav, .footer-nav { min-width: unset; }
}

/* Hide scrollbar for cookie modal overlay when open */
.cookie-modal.active {
  overflow-y: auto;
}

/* Hide cookie modal when not active (pointer-events: none is set above) */

/* --------------------------------------------------
   END
-------------------------------------------------- */
