/* ========================
   CSS RESET & BASE STYLES
======================== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  background: #fff;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #fff;
  color: #131313;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* Modern bold look: lots of white, contrast, space */
}
a {
  color: #17496E;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #EDB321;
  outline-offset: 2px;
}
strong {
  font-weight: bold;
}
ul, ol {
  padding-left: 1.4em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 8px;
  border: 1px solid #EEE;
}
th {
  background: #F6F6F6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}

/* ===========================
   TYPOGRAPHY – Modern Bold
=========================== */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #17496E;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.125;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 12px;
}
.subheadline {
  font-size: 1.25rem;
  color: #17496E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.section,
section {
  margin-bottom: 60px;
  padding: 40px 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(23,73,110,0.08);
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(23,73,110,0.14);
  transform: translateY(-4px) scale(1.02);
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 24px 20px 24px;
  background: #F6F6F6;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(23,73,110,0.06);
  border-left: 6px solid #EDB321;
  max-width: 600px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(23,73,110,0.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature grid & Services list */
.feature-grid,
.services-list,
.services-grid,
.detailed-services-list
{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  align-items: stretch;
}
.feature-grid > div,
.services-list > div,
.services-grid > div,
.detailed-services-list > div
{
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px rgba(23,73,110,0.07);
  padding: 24px 18px 18px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 360px;
  transition: box-shadow 0.2s, transform 0.17s;
  border-left: 6px solid #17496E;
  margin-bottom: 0;
}
.feature-grid > div:hover,
.services-list > div:hover,
.services-grid > div:hover,
.detailed-services-list > div:hover {
  box-shadow: 0 9px 32px 0 rgba(23,73,110,0.16);
  transform: translateY(-2px) scale(1.015);
}
.feature-grid img,
.services-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}
.service-price {
  margin-top: 10px;
  font-weight: bold;
  color: #EDB321;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Blog */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
}
.category-filters span {
  font-weight: bold;
  color: #17496E;
  font-family: 'Montserrat', Arial, sans-serif;
}
.filter {
  border: none;
  background-color: #F6F6F6;
  color: #17496E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 16px;
  padding: 7px 18px;
  cursor: pointer;
  margin-right: 4px;
  transition: background 0.16s, box-shadow 0.16s, color 0.16s;
}
.filter:hover,
.filter:focus {
  background-color: #EDB321;
  color: #17496E;
}

.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.blog-post-list article {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 16px 0 rgba(23,73,110,0.06);
  padding: 24px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 410px;
  border-left: 5px solid #EDB321;
  transition: box-shadow 0.14s, transform 0.14s;
}
.blog-post-list article:hover {
  box-shadow: 0 7px 24px 0 rgba(23,73,110,0.12);
  transform: translateY(-2px) scale(1.01);
}

.newsletter-signup {
  background: #17496E;
  color: #fff;
  border-radius: 20px;
  padding: 36px 20px;
  margin-bottom: 48px;
}
.newsletter-signup h2,
.newsletter-signup p {
  color: #fff;
}

/************************************
 HEADER & NAVIGATION
*************************************/
header {
  background: #fff;
  box-shadow: 0 4px 24px -2px rgba(23,73,110,0.10);
  border-bottom: 4px solid #EDB321;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #17496E;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 0.18s, color 0.17s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F6F6F6;
  color: #EDB321;
}
.main-nav .btn-primary {
  background: #EDB321;
  color: #17496E;
  box-shadow: 0 2px 10px rgba(237,179,33,0.13);
  padding: 9px 22px;
  border-radius: 23px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-left: 14px;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
}
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus {
  background: #17496E;
  color: #EDB321;
  box-shadow: 0 4px 22px rgba(237,179,33,0.20);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: 2px solid #17496E;
  border-radius: 8px;
  color: #17496E;
  font-size: 2.2rem;
  padding: 2px 12px 1px 12px;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(23, 73, 110, 0.06);
  transition: background 0.15s, color 0.17s;
  z-index: 1002;
}
.mobile-menu-toggle:focus {
  background: #EDB321;
  color: #17496E;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,73,110, 0.95);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.76,.14,.32,1.4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 42px;
  padding-left: 36px;
  padding-right: 30px;
  padding-bottom: 65px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
  z-index: 1002;
  transition: color 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #EDB321;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 5px;
  border-radius: 8px;
  transition: color 0.14s, background 0.14s;
  background: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #EDB321;
  background: rgba(237,179,33,0.16);
}

/* =====================
   HERO / CTA SECTIONS
====================== */
.hero {
  background: linear-gradient(109deg,#F6F6F6 60%, #EDB321 100%);
  border-radius: 0 0 36px 36px;
  padding: 62px 0;
  margin-bottom: 40px;
  box-shadow: 0 5px 28px 0 rgba(23,73,110,0.09);
}
.hero h1,
.hero .subheadline {
  color: #17496E;
}
.cta {
  background: #EDB321;
  color: #17496E;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(237,179,33,0.17);
  padding: 48px 0 36px 0;
  margin-bottom: 40px;
  text-align: center;
}
.cta h2 {
  color: #17496E;
}
.cta .btn-primary,
.cta .btn-secondary {
  margin-top: 18px;
}

/* ================== BUTTONS STYLE ================== */
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border: none;
  padding: 13px 36px;
  font-size: 1.1rem;
  border-radius: 23px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.14s, transform 0.12s;
  box-shadow: 0 2px 12px rgba(23,73,110,0.08);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 6px 8px 0;
  display: inline-block;
}
.btn-primary {
  background: #EDB321;
  color: #17496E;
}
.btn-secondary {
  background: #17496E;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #17496E;
  color: #EDB321;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #EDB321;
  color: #17496E;
  transform: translateY(-2px) scale(1.03);
}

/* =====================
   TESTIMONIALS & STATS
===================== */
.testimonial-slider,
.testimonials {
  background: #F6F6F6;
  border-radius: 32px;
  padding: 50px 0 50px 0;
  margin-bottom: 48px;
}
.testimonial-slider h2,
.testimonials h2 {
  color: #17496E;
}
.testimonial-card {
  color: #131313;
  background: #fff;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #17496E;
}
.star-rating {
  font-size: 1.15rem;
  letter-spacing: 1.8px;
  color: #EDB321;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.stats-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  list-style: none;
  background: #fff;
  border-radius: 13px;
  padding: 18px 12px;
  margin-bottom: 24px;
}
.stats-overview li {
  color: #17496E;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #17496E;
  color: #fff;
  padding: 0 0 16px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -3px 16px 0 rgba(23,73,110,0.11);
  margin-top: 50px;
}
footer .container {
  padding-top: 40px;
  padding-bottom: 12px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 18px;
}
.footer-nav a {
  color: #EDB321;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.12s;
}
.footer-nav a:hover,.footer-nav a:focus {
  color: #fff;
}
footer a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.14s;
}
footer a:hover, footer a:focus {
  color: #EDB321;
}
footer p {
  margin-bottom: 6px;
}

/* =====================
   FORMS (Contact)
===================== */
input, textarea, select, button {
  font-family: inherit;
}
input[type="text"],
input[type="email"], textarea {
  padding: 10px;
  border: 2px solid #EDB321;
  border-radius: 10px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 16px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(23,73,110,0.04);
  transition: border 0.15s;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #17496E;
  outline: none;
}

/* =====================
   DETAILS SUMMARY
===================== */
details {
  background: #F6F6F6;
  border-radius: 10px;
  padding: 13px 16px;
  margin-bottom: 13px;
  cursor: pointer;
  transition: box-shadow 0.15s;
  box-shadow:0 2px 8px 0 rgba(23,73,110,0.08);
}
details[open] {
  box-shadow: 0 7px 20px 0 rgba(23,73,110,0.13);
}
details summary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #17496E;
  cursor: pointer;
  font-size: 1.08rem;
}
details div {
  margin-top: 10px;
}

/* =====================
   LEGAL PAGES
===================== */
.legal {
  background: #F6F6F6;
  border-radius: 32px;
  padding: 36px 0;
  margin-bottom: 40px;
}
.legal h1, .legal h2 {
  color: #17496E;
}
.legal ul {
  margin-bottom: 12px;
}

/* =============================
   RESPONSIVE LAYOUT - MOBILE FIRST
   Breakpoints: 768px, 1100px
============================= */
@media (max-width: 1100px) {
  .container {
    max-width: 986px;
    padding: 0 14px;
  }
  .content-wrapper,
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 8px;
  }
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
    padding: 13px 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .card-container, .content-grid, .feature-grid,
  .services-list, .services-grid, .detailed-services-list, .blog-post-list {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-grid > div,
  .services-list > div,
  .services-grid > div,
  .detailed-services-list > div,
  .blog-post-list article {
    min-width: 0;
    max-width: 98vw;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .hero {
    border-radius: 0 0 22px 22px;
    padding: 36px 0;
    margin-bottom: 21px;
  }
  .testimonial-card {
    padding: 22px 11px 18px 13px;
    border-radius: 12px;
    max-width: 96vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 2vw;
  }
  h1 {font-size: 1.5rem;}
  h2 {font-size: 1.2rem;}
  .btn-primary,.btn-secondary { font-size:1rem; padding:10px 20px;}
}

/* ========== COOKIE CONSENT ========= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2000;
  width: 100vw;
  background: #17496E;
  color: #fff;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 -6px 40px 0 rgba(23, 73, 110, 0.21);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.38s cubic-bezier(.77,.16,.32,1.2);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  border: none;
  background: #EDB321;
  color: #17496E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 17px;
  padding: 9px 19px;
  cursor: pointer;
  margin: 3px 4px 3px 0;
  transition: background 0.18s, color 0.12s, box-shadow 0.12s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #17496E;
  box-shadow: 0 2px 10px rgba(23,73,110,0.10);
}
.cookie-banner .cookie-btn-secondary {
  background: #17496E;
  color: #fff;
  border: 2px solid #EDB321;
}
.cookie-banner .cookie-btn-secondary:hover {
  background: #EDB321;
  color: #17496E;
}

/* ===== COOKIE PREFERENCES MODAL ====== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23,73,110, 0.90);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.32s;
  opacity: 1;
}
.cookie-modal-overlay.hide {opacity: 0; pointer-events: none;}
.cookie-modal {
  background: #fff;
  color: #17496E;
  border-radius: 22px;
  box-shadow: 0 7px 44px 0 rgba(23,73,110,0.16);
  padding: 38px 24px 24px 24px;
  min-width: 310px;
  max-width: 96vw;
  width: 440px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modal-appear 0.40s cubic-bezier(.71,.15,.29,1.16);
}
@keyframes modal-appear {
  from { transform: translateY(140px) scale(.93); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #17496E;
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  color: #17496E;
  font-size: 2rem;
  cursor: pointer;
  font-weight: 900;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  margin-left: 8px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #EDB321;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-category-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.cookie-modal .cookie-description {
  color: #17496E;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 5px;
  margin-bottom: 0;
}

/* ======= THANK YOU PAGE ======= */
.thank-you {
  background: #F6F6F6;
  border-radius: 36px;
  padding: 62px 0 50px 0;
  min-height: 60vh;
  text-align: center;
  margin-bottom: 50px;
}
.thank-you h1 {
  color: #17496E;
}

/* ===== SPECIAL UTILITIES ===== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: 6px; }
.mb-1 { margin-bottom: 6px; }

/* Reduce mobile menu z-index clash */
body.menu-open {
  overflow: hidden;
}

/* End Modern Bold CSS for ZentricBurst */
