/* =====================================================
  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, menu, 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, 
main, 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, body {
  height: 100%;
}
body {
  line-height: 1.6;
  background: #F4F4F1;
  color: #244865;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color .18s;
}
ul, ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

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

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F4F4F1;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
  color: #244865;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.16;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
h2 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}
p, li {
  color: #35556F;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
  color: #244865;
}

/* GEOMETRIC FLAVOUR (Angular font weights, uppercase headings) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(36,72,101,0.07);
  border: 1.5px solid #e9ecef;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.content-wrapper.center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 740px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* GEOMETRIC GRID STYLES */
.feature-grid,
.service-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.feature-item,
.service-item {
  background: #F4F4F1;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(36,72,101,0.07);
  padding: 32px 20px 22px 20px;
  min-width: 200px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1.5px solid #e3e9ee;
  transition: box-shadow 0.18s, border 0.18s;
}
.feature-item:hover,
.service-item:hover {
  box-shadow: 0 4px 32px 0 rgba(36,72,101,0.13);
  border: 1.5px solid #48A0A8;
}

.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}

/* TESTIMONIAL CARDS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  background: #fff;
  color: #244865;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(46,65,75,0.07);
  border: 1.5px solid #dfdfd9;
  flex: 1 1 285px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px 0 rgba(36,72,101,0.12);
  border: 1.5px solid #48A0A8;
}
.testimonial-card p {
  font-size: 1.04rem;
  font-style: italic;
  color: #244865;
  margin-bottom: 0px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #48A0A8;
  font-weight: 600;
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
}
.faq-item h4 {
  color: #244865;
  font-size: 1.05rem;
}
.faq-item p {
  font-size: 1rem;
  color: #42576d;
}

/* CONTACT METHODS */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 18px 0;
}
.contact-methods div, .contact-methods a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #244865;
}
.contact-methods img {
  width: 22px;
  height: 22px;
}
.map-snippet {
  background: #f7fcfd;
  border: 1.5px solid #e3e9ee;
  border-radius: 6px;
  padding: 10px 18px;
  margin-top: 16px;
  color: #386077;
}


/* ===============================
      BUTTONS
================================ */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.06rem;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 11px;
  padding: 13px 32px;
  box-shadow: 0 2px 12px 0 rgba(36,72,101,0.07);
  margin-top: 12px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  margin-bottom: 4px;
}
.btn-primary {
  background: #244865;
  color: #fff;
  border: 2px solid #244865;
}
.btn-primary:hover, .btn-primary:focus {
  background: #48A0A8;
  border-color: #48A0A8;
  color: #fff;
}
.btn-secondary {
  background: #48A0A8;
  color: #fff;
  border: 2px solid #48A0A8;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #fff;
  color: #244865;
  border: 2px solid #244865;
  box-shadow: 0 6px 24px 0 rgba(36,72,101,0.08);
}

/* =========================
     HEADER & NAVIGATION
========================== */
header {
  background: #fff;
  box-shadow: 0 3px 16px 0 rgba(36,72,101,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 26px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.01rem;
  color: #244865;
  letter-spacing: 0.03em;
  padding: 4px 2px;
  border-radius: 4px;
  transition: color .14s, background .16s;
}
nav a:hover, nav a:focus {
  color: #48A0A8;
  background: #e9f3f7;
}

header .btn-primary {
  margin-left: 32px;
}

/* Burger menu toggle - hidden by default */
.mobile-menu-toggle {
  display: none;
  background: #244865;
  color: #fff;
  font-size: 2rem;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1501;
  transition: background 0.16s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #48A0A8;
}

/* ===============
  MOBILE MENU
================ */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #244865;
  box-shadow: 0 10px 44px 0 rgba(36,72,101,0.17);
  z-index: 1600;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  padding-top: 44px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 22px;
  right: 26px;
  border: none;
  z-index: 1700;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #48A0A8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 36px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.26rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 0;
  border-radius: 2px;
  transition: color .17s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #48A0A8;
  background: #163349;
  padding-left: 6px;
}

/* =========================
      FOOTER
========================== */
footer {
  background: #244865;
  color: #fff;
  padding: 48px 0 28px 0;
  border-radius: 34px 34px 0 0;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 11px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
  transition: color .14s, text-decoration .17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #48A0A8;
  text-decoration: underline;
}
.footer-contact {
  color: #e1f7f9;
  opacity: 0.93;
  text-align: center;
  font-size: 0.97rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color .14s;
}
.footer-contact a:hover {
  color: #48A0A8;
}

/* =================================
    LISTS & TEXT BLOCKS
================================== */
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
li {
  font-size: 1rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}
ul li:before {
  content: '';
  display: inline-block;
  background: #48A0A8;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 6px;
}
ol li {
  padding-left: 0;
}

/* =================================
    FAQ-LIST
================================== */
.faq-list {
  border-left: 4px solid #48A0A8;
  padding-left: 16px;
}

/* ==============================
      SPACING, FLEX LAYOUTS
=============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 13px 0 rgba(36,72,101,0.08);
  padding: 30px 20px;
  transition: box-shadow 0.18s, border 0.18s;
  border: 1.5px solid #e3e9ee;
}
.card:hover {
  box-shadow: 0 8px 42px 0 rgba(36,72,101,0.17);
  border-color: #48A0A8;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

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

/* ===============================
    COOKIE CONSENT BANNER
=============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #244865;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  z-index: 3200;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 20px 32px;
  box-shadow: 0 -4px 24px 0 rgba(36,72,101,0.18);
  width: 100%;
  transition: transform 0.33s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner__text {
  font-size: 1.1rem;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.btn-cookie {
  background: #48A0A8;
  color: #fff;
  border: none;
  font-family: 'Montserrat',Arial,sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: 6px;
  padding: 9px 18px;
  margin-right: 2px;
  margin-bottom: 0;
  transition: background .15s, color .14s;
  box-shadow: 0 1px 4px 0 rgba(36,72,101,0.09);
}
.btn-cookie:hover, .btn-cookie:focus {
  background: #fff;
  color: #244865;
  border: 1.5px solid #244865;
}

.btn-cookie.settings {
  background: #F4F4F1;
  color: #244865;
  border: 1.5px solid #48A0A8;
}

.btn-cookie.settings:hover, .btn-cookie.settings:focus {
  background: #48A0A8;
  color: #fff;
  border: 1.5px solid #244865;
}

/* ================================
   COOKIE PREFERENCES MODAL
================================ */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 3500;
  background: #fff;
  color: #244865;
  max-width: 420px;
  width: 98vw;
  border-radius: 20px;
  box-shadow: 0 8px 54px 0 rgba(36,72,101,0.26);
  padding: 34px 28px 28px 28px;
  display: none;
  flex-direction: column;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieModalFadeIn .34s cubic-bezier(0.4,0,0.2,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; transform: scale(0.96) translate(-50%,-50%); }
  to { opacity: 1; transform: scale(1) translate(-50%,-50%); }
}
.cookie-modal__close {
  background: none;
  color: #244865;
  font-size: 1.7rem;
  position: absolute;
  right: 22px;
  top: 13px;
  border: none;
  cursor: pointer;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 12px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-size: 1.02rem;
  flex: 1 1 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: #48A0A8;
  width: 21px;
  height: 21px;
}
.cookie-category .desc {
  font-size: 0.92rem;
  color: #386077;
}

/* ====================
    UTILITY
==================== */
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }

/* ===============
   MEDIA QUERIES
================ */
@media (max-width: 1080px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .feature-grid, .service-grid {
    gap: 18px;
  }
  .container { padding: 0 8px; }
}
@media (max-width: 800px) {
  .section { padding: 30px 8px; }
}
@media (max-width: 768px) {
  .content-wrapper, .content-wrapper.center {
    align-items: flex-start;
    text-align: left;
  }
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 17px;
  }
  .feature-item, .service-item {
    min-width: 0;
    width: 100%;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 15px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  .footer-contact {
    font-size: 0.90rem; 
  }
  .cookie-banner {
    flex-direction: column;
    padding: 16px 8px;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-banner__actions {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1.01rem; }
  .section { padding: 19px 2px; margin-bottom: 36px; }
  header img { height: 30px; }
  .btn-primary, .btn-secondary { padding: 10px 16px; font-size: 0.98rem; }
  .feature-item, .service-item, .card, .testimonial-card {
    padding: 18px 9px 13px 10px;
    border-radius: 9px;
  }
  .map-snippet { padding: 7px 5px; font-size: 0.92rem; }
}
@media (max-width: 900px) {
  nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
    position: relative;
    right: 0;
    margin-left: 2vw;
  }
  .btn-primary {
    margin-left: 0;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
}

/* ===============
  ANIMATIONS
================ */
.btn-primary, .btn-secondary {
  transition: background 0.17s, color 0.17s, box-shadow 0.18s;
}
.feature-item, .service-item, .testimonial-card, .card {
  transition: box-shadow 0.20s, border 0.18s;
}
.feature-item:active, .service-item:active, .testimonial-card:active, .card:active {
  transform: scale(0.98);
}

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

/* ========================================
    SPECIAL GEOMETRIC ACCENTS (optional)
======================================== */
.section {
  position: relative;
  overflow: hidden;
}
.section:before {
  content: '';
  position: absolute;
  top: -30px; left: -60px;
  width: 110px; height: 110px;
  background: #e5f8fa;
  border-radius: 28% 56% 74% 34% / 30% 75% 37% 70%; /* geometric blob */
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
}
.section:after {
  content: '';
  position: absolute;
  bottom: -38px;
  right: -60px;
  width: 105px;
  height: 110px;
  background: #244865;
  opacity: 0.04;
  border-radius: 40% 60% 50% 60%/ 40% 50% 30% 60%;
  z-index: 0;
  pointer-events: none;
}
.section > * { position: relative; z-index: 2; }

/* ============
  MISC
============ */
::-webkit-scrollbar {
  width: 9px;
  background: #E6EEF4;
}
::-webkit-scrollbar-thumb {
  background: #48A0A8;
  border-radius: 5px;
}

/* END STYLE */
