/* --- CSS RESET & BASE --- */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  min-height: 100vh;
  background: #FAFAF7;
  color: #24292F;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #143D59;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4B942;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

::selection {
  background: #F4B94233;
}

/* --- BRAND FONTS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #143D59;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.25;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4, h5, h6 {
  font-weight: 500;
}

p, li, strong, em {
  font-size: 1rem;
  color: #3D454C;
}
strong {
  font-weight: 700;
  color: #143D59;
}

.subheadline {
  font-size: 1.19rem;
  color: #6B7278;
  margin-bottom: 28px;
  font-weight: 400;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(20, 61, 89, 0.04);
  /* Subtle shadow, light corners, clean look */
}

@media (max-width: 900px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 7px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #FFFFFF;
  box-shadow: 0 2px 10px 0 rgba(20, 61, 89, 0.03);
  position: sticky;
  top: 0;
  z-index: 16;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  width: 100%;
}
nav > a img {
  height: 46px;
  width: auto;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
nav ul li {
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
nav ul li a {
  display: inline-block;
  padding: 10px 8px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
nav ul li a:hover, nav ul li a:focus {
  background: #F4B942;
  color: #143D59;
}
.cta-primary {
  background: #143D59;
  color: #FFFFFF;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 30px;
  border-radius: 32px;
  font-size: 1.12rem;
  margin-left: 22px;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(20, 61, 89, 0.09);
  transition: background 0.18s, box-shadow 0.22s, color 0.18s;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #F4B942;
  color: #143D59;
  box-shadow: 0 2px 18px 0 rgba(244, 185, 66, 0.23);
}
.cta-secondary {
  background: transparent;
  color: #143D59;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: 2px solid #F4B942;
  padding: 10px 28px;
  border-radius: 32px;
  font-size: 1.02rem;
  margin-top: 28px;
  transition: background 0.17s, color 0.17s, border 0.15s;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #F4B942;
  color: #143D59;
}

/* Mobile nav hamburger */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #143D59;
  margin-left: 18px;
  padding: 10px 14px;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.18s, color 0.18s;
  z-index: 50;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F4B94233;
  color: #143D59;
  outline: none;
}
/* Hide main links/show burger on mobile */
@media (max-width: 980px) {
  nav ul, nav .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-close { display: none !important; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #FDFDFB;
  box-shadow: 0 6px 48px 0 rgba(20,61,89,0.16);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,0,.175,1);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #143D59;
  font-size: 2.2rem;
  margin: 26px 0 20px 22px;
  padding: 5px 14px;
  border-radius: 50%;
  cursor: pointer;
  align-self: flex-end;
  transition: background 0.17s, color 0.17s;
  z-index: 122;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #F4B94244;
  color: #143D59;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: flex-start;
  padding: 0 32px 48px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #143D59;
  padding: 14px 0;
  border-bottom: 1px solid #F4B94233;
  width: 100%;
  display: block;
  border-radius: 7px;
  transition: background 0.14s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F4B942;
  background: #EAF1F7;
}
/* --- MAIN SECTIONS --- */
main {
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  z-index: 1;
}

/* --- FLEXBOX CARDS --- */
/* service-cards, quick-facts-grid, etc. */
.service-cards,
.quick-facts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  margin-top: 12px;
  width: 100%;
}
.service-cards > div,
.quick-facts-grid > li {
  background: #F6F7F5;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(20,61,89,0.04);
  padding: 26px 24px 22px 24px;
  margin-bottom: 20px;
  min-width: 210px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  border: 1.5px solid #F0EFEA;
}
.quick-facts-grid img,
.values-list img,
.credentials-list img,
.feature-grid img,
.feature-list img {
  width: 28px;
  height: 28px;
  margin-right: 13px;
  vertical-align: middle;
  display: inline-block;
}
.price {
  color: #F4B942;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.feature-grid > li {
  background: #F6F7F5;
  border-radius: 11px;
  box-shadow: 0 1px 6px 0 rgba(20,61,89,0.03);
  padding: 18px 18px 16px 20px;
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #EFEFEF;
}

.feature-list, .service-list, .service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
  margin-bottom: 18px;
}
.feature-list > li, .service-list > li, .service-features > li {
  background: #F6F7F6;
  border-radius: 9px;
  padding: 13px 18px 11px 16px;
  margin-bottom: 20px;
  min-width: 190px;
  flex: 1 1 210px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.service-list h3 {
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.service-process-steps {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 7px;
  margin-bottom: 16px;
}

.values-list,
.credentials-list,
.guide-profiles {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 18px 0 12px 0;
}
.values-list > li,
.credentials-list > li,
.guide-profiles > li {
  display: flex;
  align-items: center;
  background: #F8F5EC;
  border-radius: 8px;
  padding: 11px 16px;
  min-height: 32px;
}
.values-list img,
.credentials-list img {
  margin-right: 7px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(20,61,89,0.09);
  background: #FFF;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* GRID-LIKE FLEXBOX WRAPPERS */
.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: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  min-width: 225px;
  max-width: 410px;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 2px 22px 0 rgba(20,61,89,0.06);
  margin-bottom: 20px;
  border-left: 5px solid #F4B942;
  color: #143D59;
}
.testimonial-card p {
  color: #24292F;
  font-size: 1.07rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card strong {
  color: #143D59;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 17px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.05rem;
}

.social-media-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.social-media-links a img {
  width: 34px;
  height: 34px;
  filter: grayscale(40%) brightness(1.2);
  transition: filter 0.2s;
}
.social-media-links a:hover img {
  filter: grayscale(0%) brightness(1);
}

.newsletter-signup {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0 0 0;
}
.newsletter-signup p {
  font-weight: 500;
  color: #143D59;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.map-embed p {
  font-size: 0.97rem;
  color: #6B7278;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  font-size: 0.98rem;
  margin-bottom: 16px;
}
.footer-menu a {
  color: #143D59;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin: 0 6px 0 0;
  opacity: 0.85;
}
.footer-menu a:hover {
  text-decoration: underline;
  color: #F4B942;
  opacity: 1;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.99rem;
  color: #6B7278;
}

footer {
  background: #EAF1F7;
  margin-top: 35px;
  padding: 34px 0 20px 0;
  width: 100%;
  box-shadow: 0 -2px 16px 0 rgba(20,61,89,0.04);
}

/* --- BUTTONS --- */
button, .btn {
  cursor: pointer;
  border: none;
  background: unset;
  font-family: inherit;
  font-size: inherit;
  border-radius: 8px;
  transition: background 0.17s, box-shadow 0.12s, color 0.12s;
}

/* --- FORM & INPUT --- */
input, textarea, select {
  padding: 10px 14px;
  border: 1.5px solid #E2E1DC;
  border-radius: 7px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 16px;
  transition: border 0.15s;
  background: #FFF;
}
input:focus,
textarea:focus,
select:focus {
  border: 1.5px solid #F4B942;
  outline: none;
}
label {
  font-weight: 500;
  color: #143D59;
  margin-bottom: 7px;
  display: inline-block;
  font-size: 1rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  nav > a img {
    height: 35px;
  }
  .container {
    max-width: 98vw;
  }
  .service-cards, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .service-cards > div, .feature-grid > li {
    min-width: 0;
    width: 100%;
    padding: 17px 11px 16px 12px;
  }
}
@media (max-width: 660px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.18rem; }
  .section {
    padding: 19px 3.5vw;
    margin-bottom: 24px;
  }
}

/* --- MICRO-INTERACTIONS & HOVERS --- */
.section, .service-cards > div, .feature-grid > li, .testimonial-card, .card, .values-list > li, .credentials-list > li {
  transition: box-shadow 0.21s, transform 0.18s;
}
.section:hover, .service-cards > div:hover, .feature-grid > li:hover, .card:hover {
  box-shadow: 0 8px 40px 0 rgba(20,61,89,0.09);
  transform: translateY(-4px) scale(1.012);
}
.cta-primary:active, .cta-secondary:active {
  transform: scale(0.97);
}

/* --- SPACING CONVENTION --- */
.section > .container > .content-wrapper > *,
.section > .container > .content-wrapper > .service-cards, .service-cards > div,
.section > .container > .content-wrapper > .feature-grid, .feature-grid > li, .feature-list > li, .service-list > li {
  margin-bottom: 18px;
}
.section > .container > .content-wrapper > *:last-child,
.section > .container > .content-wrapper > .service-cards:last-child, .service-cards > div:last-child,
.section > .container > .content-wrapper > .feature-grid:last-child, .feature-grid > li:last-child, .feature-list > li:last-child, .service-list > li:last-child {
  margin-bottom: 0;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #FFFFFFCC;
  box-shadow: 0 -2px 14px 0 rgba(20,61,89,0.12);
  border-top: 2px solid #F4B942;
  z-index: 200;
  transition: transform 0.3s cubic-bezier(.77,0,.175,1);
  transform: translateY(0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 19px 10px 15px 10px;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-content {
  max-width: 1160px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cookie-banner p {
  color: #143D59;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 0;
  flex: 3 1 300px;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 21px;
  border-radius: 22px;
  border: none;
  color: #FFFFFF;
  background: #143D59;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 2px;
  transition: background 0.18s, color 0.16s, box-shadow 0.15s;
  box-shadow: 0 1px 4px 0 rgba(20,61,89,0.10);
}
.cookie-btn.settings {
  background: #F4B942;
  color: #143D59;
  font-weight: 600;
}
.cookie-btn.reject {
  background: #EAF1F7;
  color: #143D59;
  border: 1.2px solid #B8C3CD;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #F4B942;
  color: #143D59;
  outline: none;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #F4B94244;
  color: #143D59;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(36, 41, 47, 0.41);
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBackdrop 0.32s both;
}
@keyframes fadeInBackdrop {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  position: relative;
  min-width: 318px;
  max-width: 98vw;
  background: #FDFDFB;
  border-radius: 20px;
  box-shadow: 0 2px 40px 0 rgba(20,61,89,0.19);
  padding: 36px 32px 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  animation: modalAppear 0.28s cubic-bezier(.77,0,.175,1);
}
@keyframes modalAppear {
  from { transform: translateY(80px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #143D59;
  border-radius: 50%;
  padding: 7px;
  cursor: pointer;
  transition: background 0.15s, color 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F4B94233;
  color: #F4B942;
}
.cookie-modal h3 {
  font-size: 1.14rem;
  font-weight: 600;
  color: #143D59;
  margin-bottom: 5px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-modal .category label {
  margin-bottom: 0;
  font-size: 1.03rem;
}
.switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EAF1F7;
  border-radius: 22px;
  transition: background 0.17s;
}
.switch input:checked + .slider {
  background: #F4B942;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #FFF;
  transition: 0.2s;
  border-radius: 50%;
  box-shadow: 0 1px 2px #00000011;
}
.switch input:checked + .slider:before {
  transform: translateX(18px);
}
.switch input:disabled + .slider {
  background: #EEF0ED;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 7vw 19px 7vw;
    min-width: 90vw;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 12px 2vw;
  }
  .cookie-banner-content {
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }
}

/* --- UTILITIES/MISC --- */
.hide { display: none !important; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2.5px dashed #F4B942;
  outline-offset: 2.5px;
}

/* --- Brand accent backgrounds (very subtle, Scandinavian-inspired) --- */
.bg-accent {
  background: #F6F7F5;
}
.bg-light-primary {
  background: #EAF1F7;
}
.bg-secondary {
  background: #F4B94212; /* Soft yellow accent */
}

/* --- Custom scrollbar for large screens (Scandinavian touch) --- */
@media (min-width: 960px) {
  ::-webkit-scrollbar {
    width: 10px;
    background: #F6F7F5;
  }
  ::-webkit-scrollbar-thumb {
    background: #EAF1F7;
    border-radius: 12px;
  }
}

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