/* =============================
   Scandinavian Clean CSS Reset
   ============================= */
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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #F4F6F8;
  color: #263238;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
a {
  color: #263238;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #86BBD8;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
:focus {
  outline: 2px solid #86BBD8;
  outline-offset: 2px;
}

/* ====== Variables (fallbacks included) ====== */
:root {
  --color-primary: #263238;
  --color-secondary: #86BBD8;
  --color-accent: #F4F6F8;
  --color-white: #FFFFFF;
  --color-grey: #E1E8ED;
  --color-shadow: rgba(38, 50, 56, 0.06);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* =============================
   LAYOUT: Container & Sections
   ============================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 16px;
  box-shadow: 0 2px 16px var(--color-shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 10px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* =============================
   TYPOGRAPHY
   ============================= */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.12;
  color: var(--color-primary);
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-primary);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-primary);
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-primary);
}
p, li, ul, ol, blockquote {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}
strong {
  font-weight: 600;
  color: var(--color-primary);
}
small {
  font-size: 0.92rem;
  color: #556;
}
@media (max-width: 768px) {
  h1, .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1rem;
  }
}

/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-grey);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.header-main {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}
.header-main nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.header-main nav a {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  padding: 7px 14px;
  border-radius: 30px;
  transition: background 0.2s,color 0.2s;
}
.header-main nav a.active,
.header-main nav a:hover,
.header-main nav a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.header-main img {
  height: 40px;
  width: auto;
  margin-right: 8px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--color-white);
  background: var(--color-secondary);
  border: none;
  border-radius: 32px;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  box-shadow: 0 2px 6px rgba(38, 50, 56, 0.08);
  cursor: pointer;
  margin-left: 24px;
  letter-spacing: 0.03em;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .header-main nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .header-main {
    gap: 12px;
    flex-direction: row;
    padding: 10px 0;
  }
  .header-main nav, .cta-button {
    display: none;
  }
}

/* =============================
   MOBILE MENU (BURGER NAV)
   ============================= */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 31;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 8px;
  border: none;
  padding: 10px 17px;
  font-size: 2rem;
  box-shadow: 0 1px 8px var(--color-shadow);
  transition: background 0.2s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-white);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  box-shadow: 2px 0 16px var(--color-shadow);
  padding: 30px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2.2rem;
  color: var(--color-secondary);
  background: var(--color-accent);
  border-radius: 8px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 201;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin: 70px 0 0 30px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.2rem;
  padding: 12px 0 12px 12px;
  border-radius: 18px;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: var(--color-accent);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =============================
    HERO SECTIONS
   ============================= */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  min-height: 320px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 3px 24px var(--color-shadow);
  padding: 48px 0 40px 0;
}
.hero .container {
  width: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 26px;
}
.hero h1 {
  color: var(--color-primary);
}
.hero p {
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: #46555f;
}
@media (max-width: 900px) {
  .hero {
    padding: 32px 0 24px 0;
    min-height: 220px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 18px 0;
    border-radius: 12px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    gap: 14px;
  }
}

/* =============================
   FEATURES GRID & CARDS
   ============================= */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 1px 13px var(--color-shadow);
  padding: 24px 20px 20px 20px;
  flex-basis: calc(50% - 24px);
  min-width: 230px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px #86bbd80f;
  transform: translateY(-3px) scale(1.01);
}
.feature-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 2px;
}
@media (max-width: 700px) {
  .features-grid {
    gap: 16px;
  }
  .feature-item {
    min-width: 140px;
    flex-basis: 100%;
    width: 100%;
    padding: 18px 12px 14px 12px;
  }
}

/* =============================
   SERVICE LIST
   ============================= */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 22px 0 0 0;
}
.service-list li {
  background: var(--color-white);
  border-radius: 13px;
  box-shadow: 0 1px 8px var(--color-shadow);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.18s, border 0.2s;
  margin-bottom: 20px;
}
.service-list li:hover, .service-list li:focus-within {
  box-shadow: 0 8px 24px #86bbd81a;
  border-left: 3px solid var(--color-secondary);
}
.service-list li strong {
  color: var(--color-secondary);
}

/* =============================
   TESTIMONIAL SLIDER / CARD
   ============================= */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 0 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  background: var(--color-white);
  padding: 24px 26px 20px 26px;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 1px 13px var(--color-shadow);
  max-width: 390px;
  flex: 1 1 280px;
  min-width: 240px;
  position: relative;
  color: var(--color-primary);
  transition: box-shadow 0.17s;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #25313b;
  margin-bottom: 8px;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--color-primary);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 36px #86bbd80c;
}
@media (max-width: 800px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 160px;
  }
}

/* =============================
   CONTENT LAYOUTS
   ============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 1px 13px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  transition: box-shadow 0.19s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 34px #86bbd80c;
}
.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;
}
@media (max-width: 850px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/* =============================
   CONTACT DETAILS & MAP
   ============================= */
.contact-details {
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 1px 10px var(--color-shadow);
  padding: 18px 24px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.02rem;
}
.map-embed {
  background: var(--color-grey);
  border-radius: 12px;
  padding: 22px;
  min-height: 120px;
  display: flex;
  align-items: center;
  color: #929292;
  margin-top: 12px;
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: var(--color-accent);
  box-shadow: 0 -1px 8px var(--color-shadow);
  padding: 0;
  margin-top: 60px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 34px 0 18px 0;
}
.footer-main img {
  width: 44px;
  height: 44px;
  margin-bottom: 11px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-main nav a {
  font-size: 1rem;
  color: #46555f;
  transition: color 0.2s;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  color: var(--color-secondary);
}
.footer-bottom {
  padding: 10px 0 8px 0;
  text-align: center;
  color: #8493a2;
  font-size: 0.98rem;
  background: transparent;
}
@media (max-width: 850px) {
  .footer-main {
    flex-direction: column;
    gap: 22px;
  }
}

/* =============================
   BUTTONS & INTERACTIVES
   ============================= */
button, .cta-button {
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, border-color 0.19s;
}
.cta-button[disabled], button[disabled] {
  opacity: 0.60;
  pointer-events: none;
}

/* =============================
   COOKIE CONSENT BANNER
   ============================= */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 501;
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 -2px 20px rgba(38, 50, 56, 0.13);
  padding: 22px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  font-size: 1rem;
  justify-content: space-between;
  animation: banner-slide-in 0.5s cubic-bezier(.7,0,.2,1) 1;
}
@keyframes banner-slide-in {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 24px;
  border: none;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-consent-banner .cookie-accept {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-consent-banner .cookie-accept:hover,
.cookie-consent-banner .cookie-accept:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
.cookie-consent-banner .cookie-reject {
  background: #E1E8ED;
  color: var(--color-primary);
}
.cookie-consent-banner .cookie-reject:hover, .cookie-consent-banner .cookie-reject:focus {
  background: #B2C9D3;
}
.cookie-consent-banner .cookie-settings {
  background: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-consent-banner .cookie-settings:hover, .cookie-consent-banner .cookie-settings:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-primary);
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 12px 18px 12px;
    font-size: 0.99rem;
  }
}

/* =============================
   COOKIE PREFERENCES MODAL
   ============================= */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38, 50, 56, 0.21);
  z-index: 502;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.25s cubic-bezier(.7,0,.2,1) 1;
}
@keyframes modal-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--color-white);
  color: var(--color-primary);
  padding: 38px 32px 28px 32px;
  border-radius: 18px;
  min-width: 300px;
  max-width: 94vw;
  box-shadow: 0 8px 48px rgba(38, 50, 56, 0.17);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modal-slide-in 0.22s cubic-bezier(.7,0,.2,1) 1;
}
@keyframes modal-slide-in {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  margin-bottom: 2px;
  font-family: var(--font-display);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.cookie-toggle {
  min-width: 45px;
  height: 25px;
  background: #E1E8ED;
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  border: none;
  appearance: none;
  outline: 0;
  transition: background 0.17s;
}
.cookie-toggle:checked {
  background: var(--color-secondary);
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 4px; left: 5px;
  width: 16px; height: 16px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 0.16s;
  box-shadow: 0 1px 4px #86bbd818;
}
.cookie-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-buttons button {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 9px 24px;
  border-radius: 24px;
}
.cookie-modal .cookie-modal-buttons .cookie-accept {
  background: var(--color-secondary);
  color: var(--color-white);
}
.cookie-modal .cookie-modal-buttons .cookie-reject {
  background: #E1E8ED;
  color: var(--color-primary);
}
.cookie-modal .cookie-modal-buttons .cookie-close {
  background: transparent;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 24px 10px 18px 10px;
    min-width: 94vw;
  }
}

/* =============================
   MICRO-INTERACTIONS & FOCUS
   ============================= */
*:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
button:active, .cta-button:active {
  transform: scale(0.98);
}

/* =============================
   VISUAL ACCENTS & DETAILS
   ============================= */
::-webkit-scrollbar {
  width: 10px;
  background: #f4f6f8;
}
::-webkit-scrollbar-thumb {
  background: #E1E8ED;
  border-radius: 6px;
}

/* =============================
   UTILITY SPACING
   ============================= */
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.gap-12 { gap: 12px !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }

/* =============================
   MISC FIXES & ADAPTATIONS
   ============================= */
main {
  min-height: 68vh;
}

/* Hide elements visually but accessible for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================
   END OF CSS FILE
   ============================= */
