/* --- 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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F2F6F3;
  color: #204339;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2A5B4F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C8740E;
  outline: none;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #204339;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  line-height: 1.18;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #204339;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: #204339;
}
p, ul, ol {
  font-size: 1rem;
  color: #204339;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}
.text-section li {
  margin-bottom: 8px;
}

/* --- HEADER --- */
header {
  width: 100%;
  background: #FFFFFFDD;
  box-shadow: 0 2px 14px rgba(32,67,57,0.05);
  position: sticky;
  top: 0;
  z-index: 101;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 20px;
  padding: 0 16px;
  min-height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  min-width: 130px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-weight: 500;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #204339;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background .18s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F2F6F3;
  color: #C8740E;
}
.cta-btn {
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  background: #C8740E;
  color: #fff;
  padding: 11px 26px;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(44,80,68,0.10);
  border: none;
  outline: none;
  transition: background 0.19s, box-shadow 0.19s, color 0.19s;
  cursor: pointer;
  display: inline-block;
  margin-left: 16px;
  letter-spacing: 0.5px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2A5B4F;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(44,80,68,0.13);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  padding: 10px 12px;
  color: #204339;
  cursor: pointer;
  z-index: 112;
  margin-left: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F2F6F3;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 28px rgba(32,67,57,0.12), -2px 0 7px rgba(50,90,70,0.06);
  z-index: 1201;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.6,0.16,0.38,1.0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #204339;
  cursor: pointer;
  z-index: 1202;
  padding: 4px 8px;
  border-radius: 24px;
  transition: background 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F2F6F3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 32px;
}
.mobile-nav a {
  padding: 10px 0;
  font-size: 1.03rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #204339;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F2F6F3;
  color: #C8740E;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- MAIN & SECTIONS --- */
main {
  margin-top: 0;
  padding-bottom: 32px;
}
section {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 3px 14px rgba(40,80,60,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-of-type {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  padding: 0;
  gap: 16px;
}

/* --- FLEXBOX LAYOUTS (MANDATORY) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #F2F6F3;
  border-radius: 18px;
  box-shadow: 0 3px 12px rgba(32,67,57,0.03);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  min-width: 240px;
  flex: 1 1 260px;
}
.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 {
  background: #F2F6F3;
  color: #204339;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(32,67,57,0.07);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.03rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.18s, border 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(44,80,68,0.10);
}
.testimonial-card p {
  margin: 0 0 0 0;
  font-style: italic;
  color: #204339;
}
.testimonial-card span {
  margin-left: auto;
  font-size: 0.98rem;
  font-style: normal;
  color: #2A5B4F;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.contact-details, .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-details div, .contact-methods div {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- LISTS --- */
.feature-list, .services-list, .service-recommendations, .guided-tours, .guided-hiking-services,
.park-list, .tip-boxes, .quick-facts, .city-list, .cultural-facts, .culture-tours, .culinary-tips, .related-tours, .difficulty-levels, .group-bookings, .route-overview, .custom-route-form {
  margin: 0 0 16px 0;
  padding: 0;
  list-style: none;
}
.feature-list, .services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-list li, .services-list li {
  display: flex;
  align-items: center;
  background: #F2F6F3;
  border-radius: 13px;
  padding: 10px 16px;
  font-size: 1.06rem;
  color: #204339;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 6px rgba(44,80,68,0.04);
  gap: 12px;
  margin-bottom: 0;
}
.feature-list img, .tip-boxes img, .cultural-facts img, .contact-details img, .contact-methods img {
  width: 28px;
  height: 28px;
}
.quick-facts, .related-tours, .group-bookings, .custom-route-form, .difficulty-levels {
  background: #F2F6F3;
  border-radius: 12px;
  padding: 16px 19px;
  margin-bottom: 18px;
  font-size: 1.03rem;
  box-shadow: 0 1px 6px rgba(32,67,57,0.03);
  color: #204339;
  font-style: italic;
}
.tip-boxes, .cultural-facts, .culinary-tips {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tip-boxes li, .cultural-facts li, .culinary-tips li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F2F6F3;
  padding: 8px 14px;
  border-radius: 8px;
  color: #204339;
  font-size: 1.01rem;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #204339;
  color: #fff;
  padding: 0;
  box-shadow: 0 -2px 12px rgba(32,67,57,0.07);
  border-radius: 22px 22px 0 0;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px 16px 12px 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  opacity: 0.92;
  font-size: 0.98rem;
  transition: color 0.16s, opacity 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F4A259;
  opacity: 1.0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 0.98rem;
  margin-bottom: 10px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  border-radius: 20px;
  height: 38px;
  width: 38px;
  background: #ffffff11;
  justify-content: center;
  transition: background 0.15s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #F4A25911;
}
.footer-social img {
  width: 22px;
  height: 22px;
}
.footer-logo {
  display: flex;
  align-items: flex-end;
  height: 50px;
}
.footer-logo img {
  height: 42px;
  width: auto;
}

/* --- BUTTONS & INTERACTIONS --- */
button, .cta-btn {
  cursor: pointer;
  transition: filter 0.2s, opacity 0.2s, background 0.20s;
}
button:active, .cta-btn:active {
  filter: brightness(0.97);
}

/* --- CARD STYLES --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* --- VISUAL EFFECTS & SHADOWS --- */
.card, .testimonial-card, .quick-facts, .related-tours, .group-bookings, .custom-route-form, .difficulty-levels {
  box-shadow: 0 3px 12px rgba(50, 90, 70, 0.04);
}

/* --- SPACING AND GAPS --- */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .features {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}
.feature-item {
  gap: 15px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  header .container {
    padding: 0 10px;
    min-height: 60px;
  }
  .footer-logo {
    height: 36px;
  }
  section, .section {
    margin-bottom: 46px;
    padding: 28px 8px;
  }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 1.8rem; margin-bottom: 16px; }
  h2, .h2 { font-size: 1.37rem; margin-bottom: 14px; }
  h3, .h3 { font-size: 1.05rem; }
  .container { padding: 0 4vw; }
  .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 10px;
  }
  .card-container, .content-grid, .features {
    flex-direction: column;
    gap: 16px;
  }
  .footer-logo {
    height: 32px;
  }
  .footer-social a {
    width: 34px; height: 34px;
  }
  main {
    padding-bottom: 22px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .container, footer .container {
    padding: 0 2vw;
  }
  section, .section {
    margin-bottom: 32px;
    padding: 15px 2vw;
    border-radius: 16px;
  }
  .footer-logo { height: 22px; }
}

/* --- MICROINTERACTIONS & TRANSITIONS --- */
.cta-btn, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.15s, color 0.16s, box-shadow 0.18s;
}
.card, .testimonial-card {
  transition: box-shadow 0.15s, border 0.14s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(44,80,68,0.13);
  border-color: #C8740E33;
}
/* --- SELECTION COLORS --- */
::selection {
  background: #F4A25922;
}

/* --- SCANDINAVIAN CLEAN EXTRAS --- */
/* Subtle use of lines and spacing */
hr {
  border: none;
  border-top: 1px solid #e3eae7;
  margin: 20px 0;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #FFFFFF;
  color: #204339;
  box-shadow: 0 -2px 16px rgba(32,67,57,0.11);
  padding: 20px 10vw 20px 10vw;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  flex-wrap: wrap;
  border-radius: 18px 18px 0 0;
  animation: cookieSlideUp 0.48s cubic-bezier(0.4,0.7,0.36,1.0);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-text {
  max-width: 560px;
  font-size: 1.01rem;
  line-height: 1.5;
  color: #204339;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 9px 24px;
  background: #F2F6F3;
  color: #204339;
  font-weight: 500;
  cursor: pointer;
  margin-right: 6px;
  box-shadow: 0 1px 7px rgba(32,67,57,0.06);
  transition: background 0.15s, color 0.13s;
}
.cookie-btn.accept {
  background: #C8740E;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #2A5B4F;
}
.cookie-btn.reject {
  background: #F2F6F3;
  color: #204339;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #D9E1DD;
  color: #204339;
}
.cookie-btn.settings {
  border: 1.5px solid #C8740E;
  background: #fff;
  color: #C8740E;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F2F6F3;
  color: #9C6007;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 4vw;
    gap: 14px;
  }
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(32,67,57,0.25);
  z-index: 3999;
  display: none;
  animation:cookieModalFadeIn .38s cubic-bezier(0.4,0.7,0.36,1.0);
}
.cookie-modal-backdrop.open {
  display: block;
}
@keyframes cookieModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: #fff;
  color: #204339;
  border-radius: 17px;
  box-shadow: 0 8px 34px rgba(32,67,57,0.17);
  z-index: 4000;
  min-width: 310px;
  max-width: 94vw;
  width: 410px;
  padding: 30px 26px 22px 26px;
  display: none;
  flex-direction: column;
  gap: 16px;
  animation: cookieModalScaleIn 0.4s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes cookieModalScaleIn {
  from { opacity:0; transform:translate(-50%,-44%) scale(0.88); }
  to   { opacity:1; transform:translate(-50%,-50%) scale(1); }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal h2 {
  margin: 0 0 5px 0;
  font-size: 1.26rem;
}
.cookie-modal .modal-section {
  margin-bottom: 12px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1.02rem;
  gap: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #C8740E;
  width: 18px;
  height: 18px;
  margin: 0 5px 0 0;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 8px;
}
.cookie-modal .close-modal {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.25rem;
  color: #204339;
  cursor: pointer;
  padding: 2px 9px;
  border-radius: 16px;
  transition: background 0.18s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #F2F6F3;
}

/* --- ACCESSIBILITY / FOCUS --- */
a, button, input, .cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .close-modal {
  outline: none;
}
a:focus, .cta-btn:focus, button:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .close-modal:focus {
  box-shadow: 0 0 0 3px #C8740E33;
}

/* --- PRINT STYLES --- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, .section { box-shadow: none; border-radius: 0; background: #fff !important; }
  body { background: #fff; color: #000; }
}

/* --- END --- */
