/* --- CSS RESET & NORMALIZATION --- */
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 */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F2E9E4;
  color: #183153;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #183153;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:hover,
a:focus {
  color: #43936C;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 10px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #183153;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.8rem; letter-spacing: 0.06em; }
h2 { font-size: 2rem; letter-spacing: 0.05em; }
h3 { font-size: 1.3rem; letter-spacing: 0.025em; }
h4 { font-size: 1.1rem; letter-spacing: 0.02em; }

p, label, input, textarea {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #183153;
}
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ----- Geometric Structured Universal Classes ----- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(24, 49, 83, 0.08);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 2.2px solid #183153;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(24,49,83,0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  min-width: 260px;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  box-shadow: 0 8px 32px rgba(67, 147, 108, 0.21);
  border-color: #43936C;
}
.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: 20px;
  background: #F2E9E4;
  border: 2px solid #43936C;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(24,49,83,0.07);
  min-width: 260px;
}
.testimonial-card .testimonial-meta {
  font-weight: 600;
  font-size: 1rem;
  color: #183153;
}
.testimonial-card .rating {
  color: #43936C;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}
.rating-summary {
  margin-top: 18px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #183153;
  background: #fff;
  border-radius: 11px;
  padding: 11px 22px;
  border: 1px solid #183153;
  display: inline-block;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section > * {
  margin-bottom: 18px;
}

.short-facts {
  display: flex;
  flex-direction: row;
  gap: 29px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-top: 22px;
  font-size: 1.15rem;
  color: #183153;
}

/* ----- HEADER & NAVIGATION ----- */
header {
  background: #183153;
  padding: 0;
  border-bottom: 3.5px solid #43936C;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 66px;
  position: relative;
}
header img {
  height: 44px;
}
header nav { 
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-left: 32px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #F2E9E4;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: background 0.14s, color 0.14s;
}
header nav a:hover, header nav a:focus {
  background: #43936C;
  color: #fff;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  color: #fff;
  background: #43936C;
  border: none;
  border-radius: 12px;
  padding: 11px 28px;
  font-weight: 700;
  margin-left: auto;
  margin-right: 8px;
  transition: background 0.14s, box-shadow 0.18s;
  box-shadow: 0 2px 12px rgba(67, 147, 108, 0.1);
  cursor: pointer;
  position: relative;
  z-index: 12;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #183153;
  color: #fff;
  box-shadow: 0 4px 20px rgba(24, 49, 83, 0.22);
}
.btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  color: #183153;
  background: #fff;
  border: 2px solid #43936C;
  border-radius: 12px;
  padding: 11px 28px;
  font-weight: 700;
  margin-top: 16px;
  transition: background 0.18s, color 0.16s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(24,49,83,0.07);
  cursor: pointer;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #43936C;
  color: #fff;
  border-color: #43936C;
  box-shadow: 0 5px 20px rgba(67, 147, 108,0.17);
}

/* ----- MOBILE NAVIGATION ----- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  margin-left: 16px;
  cursor: pointer;
  z-index: 1020;
  transition: color 0.13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #43936C;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #183153;
  z-index: 1002;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 0 32px 0;
  transform: translateX(100%);
  transition: transform 0.31s cubic-bezier(.44,.08,.31,1.02);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.6rem;
  background: none;
  border: none;
  color: #fff;
  margin: 19px 22px 6px 0;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.13s;
  z-index: 1050;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #43936C;
  opacity: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 23px;
  padding: 20px 32px;
  margin-top: 20px;
}
.mobile-nav a {
  color: #F2E9E4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 10px 0;
  margin-bottom: 1px;
  border-radius: 6px;
  width: 100%;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #43936C;
  color: #fff;
}

@media (max-width: 1024px) {
  header .container {
    gap: 10px;
    flex-wrap: wrap;
  }
  .btn-primary { margin-left: 10px; }
}
@media (max-width: 900px) {
  header nav { gap: 14px; margin-left: 18px; }
  .btn-primary { padding: 9px 16px; font-size: 0.98rem; }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 1202;
  }
  .mobile-menu {
    padding: 0;
    width: 100vw;
  }
}

@media (max-width: 540px) {
  .mobile-nav {
    padding: 30px 15px;
    gap: 17px;
  }
}

/* ------- MAIN STRUCTURE & LAYOUTS ------ */
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 6px;
  justify-content: flex-start;
}
.service-card {
  flex: 1 1 230px;
  min-width: 220px;
  background: #fff;
  border: 1.8px solid #43936C;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24, 49, 83, 0.07);
  padding: 22px 17px 27px 17px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.15s;
}
.service-card:hover {
  box-shadow: 0 4px 24px rgba(67,147,108,0.18);
  border-color: #183153;
}
.service-card h3 {
  color: #183153;
  font-size: 1.1rem;
  letter-spacing: 0.023em;
}
.service-price {
  color: #43936C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  margin-top: auto;
  align-self: flex-end;
  border-radius: 8px;
  padding: 6px 13px;
  background: #f2e9e4;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}
.blog-post-card {
  flex:1 1 295px;
  min-width: 250px;
  background: #fff;
  border: 2px solid #183153;
  border-radius: 12px;
  box-shadow: 0 3px 18px rgba(24,49,83,0.07);
  padding: 23px 18px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border-color 0.14s;
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.blog-post-card:hover {
  box-shadow: 0 7px 28px rgba(67,147,108,0.15);
  border-color: #43936C;
}
.blog-post-card h3 {
  color: #183153;
  font-size: 1.1rem;
  font-family:'Montserrat', Arial, sans-serif;
}
.category {
  color: #43936C;
  background: #18315311;
  border-radius:8px;
  font-weight: 700;
  padding:2.5px 11px;
  font-size: 0.98rem;
}

input[type="text"], input[type="email"], textarea {
  padding: 10px 13px;
  border: 1.8px solid #183153;
  border-radius: 10px;
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2E9E4;
  color: #183153;
  transition: border-color 0.15s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #43936C;
  outline: none;
}

form button, button[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: #183153;
  border: none;
  border-radius: 10px;
  padding: 10px 25px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.16s;
  box-shadow: 0 2px 12px rgba(24,49,83,0.09);
}
form button:hover, button[type="submit"]:hover,
form button:focus, button[type="submit"]:focus {
  background: #43936C;
  color: #fff;
  box-shadow: 0 4px 25px rgba(67, 147, 108,0.17);
}
.privacy-note { font-size: 0.92rem; color: #666; margin-top: 10px; }
.privacy-note a { color: #43936C; text-decoration: underline; }

.contact-highlight {
  background: #F2E9E4;
  border-left: 6px solid #43936C;
  border-radius: 10px;
  padding: 13px 15px;
  margin-top: 22px;
}

.faq {
  background: #fff;
  border: 2px solid #183153;
  border-radius: 12px;
  padding: 18px 25px 18px 20px;
  box-shadow: 0 3px 13px rgba(24,49,83,0.075);
}
.faq .text-section h3 { font-size: 1.13rem; }

/* ------- FOOTER --------- */
footer {
  background: #183153;
  color: #fff;
  padding: 0;
  border-top: 3.5px solid #43936C;
}
footer .container {
  padding: 26px 18px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 34px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #F2E9E4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 4px 0;
  border-radius: 6px;
  transition: background 0.12s, color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  background: #43936C;
  color: #fff;
}
.footer-contact {
  font-size: 0.96rem;
  color: #F2E9E4;
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 7px 0;
}
@media (max-width: 1024px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}

/* ---------- RESPONSIVENESS ------------ */
@media (max-width: 900px) {
  .section, main > section {
    margin-bottom: 50px;
    padding: 28px 9px;
  }
  .content-wrapper { gap: 16px; }
  .short-facts { flex-direction: column; gap: 10px; }
}
@media (max-width: 850px) {
  .card-container,
  .service-list,
  .blog-list {
    gap: 14px;
  }
  .testimonial-card,
  .card,
  .service-card,
  .blog-post-card {
    min-width: 185px;
    padding: 18px 8px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .section,
  main > section {
    margin-bottom: 33px;
    padding: 20px 2px;
  }
  .content-wrapper,
  .text-section {
    gap: 8px;
  }
  .card-container, .content-grid, .service-list, .blog-list {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .testimonial-card, .service-card, .blog-post-card, .faq {
    min-width: 140px;
    padding: 13px 6px;
  }
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.07rem; }
  .short-facts { font-size: 1rem; gap:7px; }
  .contact-highlight { margin-top: 11px; }
}
@media (max-width: 540px) {
  .container { padding: 0 3px; }
  .section, main > section {
    margin-bottom: 22px;
    padding: 10px 0px;
  }
  .testimonial-card,.service-card, .blog-post-card {
    padding: 6px 4px;
  }
  .card, .faq { padding: 7px 2px; }
}

/* ------------ Cookie Banner & Modal ------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1100;
  width: 100vw;
  background: #183153;
  box-shadow: 0 -3px 22px rgba(24,49,83,0.13);
  color: #F2E9E4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 21px 16px;
  gap: 28px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.38s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 17px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  padding: 7px 16px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  transition: background 0.14s, box-shadow 0.16s, color 0.11s;
}
.cookie-banner .accept-btn {
  background: #43936C;
  color: #fff;
  box-shadow: 0 2px 10px rgba(67,147,108,0.14);
}
.cookie-banner .accept-btn:hover,
.cookie-banner .accept-btn:focus {
  background: #183153;
  color:#fff;
  box-shadow: 0 6px 18px rgba(67,147,108,0.16);
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #43936C;
  border: 2px solid #43936C;
}
.cookie-banner .reject-btn:hover,
.cookie-banner .reject-btn:focus {
  background: #43936C;
  color: #fff;
}
.cookie-banner .settings-btn {
  background: #F2E9E4;
  color: #183153;
  border: 2px solid #43936C;
}
.cookie-banner .settings-btn:hover,
.cookie-banner .settings-btn:focus {
  background: #43936C;
  color: #fff;
}

/* ---- Cookie Modal ---- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top:0;left:0;width:100vw;height:100vh;
  z-index: 1120;
  background: rgba(24,49,83,0.66);
  align-items:center;
  justify-content:center;
  overflow: auto;
  animation: fadeIn 0.24s linear;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn { 0%{opacity:0;} 100%{opacity:1;} }
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 7px 45px rgba(24,49,83,0.19);
  padding: 36px 24px 30px 24px;
  max-width: 420px;
  width: 94vw;
  color: #183153;
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: popUp 0.39s cubic-bezier(.24,1.33,.61,0.94);
}
@keyframes popUp { 0% {transform:scale(0.93);opacity:0.2} 100% {transform:scale(1);opacity:1} }
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #183153;
  font-weight: 700;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 17px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #183153;
  cursor: pointer;
  opacity: 0.75;
  transition: color 0.13s, opacity 0.13s;
}
.cookie-modal .modal-close:hover { color:#43936C; opacity: 1; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items:center;
  gap: 10px;
  font-size:1rem;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: #183153;
  margin-bottom: 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: #43936C;
  width: 23px; height: 23px;
}
.cookie-category .essential {
  color: #43936C;
  background: none;
  font-weight: 700;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  padding: 9px 18px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  background: #43936C;
  color: #fff;
  transition: background 0.14s, color 0.12s;
}
.cookie-modal .modal-actions .close-modal-btn {
  background: #F2E9E4; color: #183153; border:2px solid #43936C;
}
.cookie-modal .modal-actions .close-modal-btn:hover {
  background: #43936C; color: #fff;
}

@media (max-width:650px) {
  .cookie-modal { max-width:98vw; padding:17px 3vw; }
  .cookie-modal h3 { font-size: 1.08rem; }
  .cookie-modal .modal-close { top: 8px; right: 8px; font-size: 1.4rem; }
}
@media (max-width:420px) {
  .cookie-modal { font-size: 0.92rem; }
}

/* ---- Micro-interactions / transitions ---- */
.section, .card, .service-card, .blog-post-card, .testimonial-card,
.btn-primary, .btn-secondary, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.14s, border-color 0.17s, background 0.15s, color 0.13s;
}

/* Geometric visual cues (thematic) */
.card, .service-card, .blog-post-card, .testimonial-card {
  border-radius: 14px 44px 14px 14px;
  border-width: 2.2px 5px 2.2px 2.2px;
  border-style: solid;
  border-color: #183153 #43936C #183153 #183153;
  box-shadow: 0 4px 22px 0 rgba(24,49,83,0.04);
}

/* --- SPACING MANDATE --- */
.card-container > *,
.service-list > *,
.feature-item > *,
.blog-list > *,
.testimonial-card,
.card,
.card-content {
  margin-bottom: 20px;
}
.content-grid, .card-container, .service-list, .blog-list {
  gap: 24px;
}
.text-image-section {
  gap: 30px;
}

/* Section Spacing */
.section, main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Accessibility: proper contrast for testimonial/review */
.testimonial-card, .testimonial-meta, .testimonial-card p {
  color: #183153;
  background: #F2E9E4;
}

/* Misc */
::-webkit-input-placeholder { color: #999; opacity:1; }
::-moz-placeholder { color: #999; opacity:1; }
:-ms-input-placeholder { color: #999; opacity:1; }
::placeholder { color: #999; opacity:1; }

/* Hide scrollbars for mobile-menu when open */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Modal lock scroll when open */
html.modal-open, body.modal-open {
  overflow: hidden !important;
}
