/* ==== CSS RESET & NORMALIZATION ==== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #f8fafb; /* subtle scandinavian-neutral */
  color: #17212b;
  line-height: 1.55;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
a {
  color: #184D8A;
  text-decoration: none;
  transition: color 0.16s;
}
a:hover,
a:focus {
  color: #FFD447;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #152033;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.subheadline {
  color: #184D8A;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
}
p, li, .author, span, em {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #354052;
  font-size: 1rem;
}
strong {
  color: #184D8A;
  font-weight: 600;
}
blockquote {
  color: #152033;
  border-left: 4px solid #184D8A;
  padding-left: 18px;
  background: #fff;
  font-style: italic;
  margin-bottom: 8px;
}

/* SPACING, LAYOUT, CONTAINERS */
.container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  max-width: 1024px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* ===============================
   FLEXBOX UTITILIES (NO GRID ALLOWED)
   =============================== */
.card-container,
.card-grid,
.feature_grid,
.blog_grid,
.features,
.content-grid,
.section-list,
ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.card-container,
.card-grid,
.content-grid {
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(40,55,100,0.07);
  margin-bottom: 20px;
  min-width: 0;
  flex: 1 1 320px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(40,55,100,0.06);
  border-radius: 12px;
  padding: 24px 18px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Mobile Responsive Layouts (Flex Only) */
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 24px 0 32px 0;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .card-container,
  .card-grid,
  .feature_grid,
  .content-grid,
  ul {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
    gap: 10px;
  }
}

/* ===============================
   HEADER, NAVIGATION, LOGO
   =============================== */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
.logo img,
.logo-footer img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  color: #184D8A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background .16s,color .16s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #f4f7fa;
  color: #FFD447;
}
.cta-nav {
  background: #184D8A;
  color: #fff;
  padding: 8px 18px;
  border-radius: 22px;
  font-size: 16px;
  font-weight: 700;
  margin-left: 8px;
  box-shadow: 0 2px 8px 0 rgba(24,77,138,0.06);
  border: none;
  transition: background .16s, color .16s;
}
.cta-nav:hover, .cta-nav:focus {
  background: #FFD447;
  color: #184D8A;
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #184D8A;
  cursor: pointer;
  transition: color 0.17s;
  margin-left: 10px;
  z-index: 21;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #FFD447;
}

/* Mobile menu overlay styles */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245, 247, 251, 0.99);
  z-index: 50;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.68,-0.55,.27,1.35);
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  margin: 26px 18px 8px 0;
  color: #184D8A;
  cursor: pointer;
  z-index: 99;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFD447;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 16px 0 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #184D8A;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 0;
  width: 100%;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background .17s, color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f4f7fb;
  color: #FFD447;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Hide mobile menu on desktop */
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}


/* ===============================
   HERO SECTIONS
   =============================== */
.hero {
  background: linear-gradient(100deg, #f8fafb 60%, #f4f7fb 180%);
  padding: 70px 0 50px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.6rem;
  color: #184D8A;
  margin-bottom: 0.7rem;
  transition: text-shadow .2s;
}
.hero h1:hover {
  text-shadow: 0 2px 12px #ffd44733;
}
.hero .subheadline {
  max-width: 620px;
  margin-bottom: 24px;
  color: #152033;
}

.cta-btn {
  background: #184D8A;
  color: #FFF;
  padding: 13px 34px;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 4px 20px 0 rgba(24,77,138,0.13);
  cursor: pointer;
  margin-top: 8px;
  transition: background .16s, color .16s, box-shadow .16s;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #FFD447;
  color: #184D8A;
  box-shadow: 0 8px 28px 0 rgba(24,77,138,0.17);
}

/* ===============================
   FEATURES & LIST SECTIONS
   =============================== */
.features, .feature_grid {
  width: 100%;
  gap: 24px;
  margin-bottom: 32px;
}
.feature_grid li,
.values ul li,
.why-us ul li,
.destinations ul li,
.tips ul li,
.guides ul li,
.policy ul li,
.features ul li,
ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 0;
  box-shadow: 0 2px 8px 0 rgba(24,77,138,0.04);
  font-size: 16px;
  color: #243145;
  transition: background .14s, box-shadow .18s;
}
.feature_grid li img,
.destinations ul li img,
.quick-contact-info img,
.text-section img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  margin-right: 10px;
}
.feature_grid li:hover {
  background: #f9fcef;
  box-shadow: 0 4px 18px 0 rgba(255,212,71,0.10);
}

/* ===============================
   DESTINATIONS, INSPIRACJE, BLOG GRID
   =============================== */
.destinations,
.inspiracje-preview,
.blog_grid {
  background: #f4f7fb;
  border-radius: 16px;
  margin-bottom: 36px;
  padding: 32px 0;
}
.blog_grid ul li, .inspiracje-preview ul li {
  background: #fff;
  border: 1px solid #e8ecf0;
  padding: 13px 18px;
  border-radius: 12px;
  color: #184D8A;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 2px 8px 0 rgba(24,77,138,0.04);
}
.blog_grid h3, .inspiracje-preview h3 {
  color: #184D8A;
  font-family: 'Montserrat';
  font-size: 1.15rem;
  margin-top: 12px;
  margin-bottom: 10px;
}

/* ===============================
   ABOUT, POLICY, SUMMARY SECTIONS
   =============================== */
.about-summary, .about, .values, .why-us, .policy, .confirmation {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 18px 0 rgba(24,77,138,0.04);
  margin-bottom: 38px;
  padding: 36px 0;
}
.text-section {
  margin-bottom: 22px;
}
.text-section p,
.text-section span {
   color: #354052;
   font-size: 1rem;
   margin-bottom: 8px;
}

/* ===============================
   TESTIMONIALS
   =============================== */
.testimonials {
  background: #f9fafc;
  border-radius: 12px;
  margin-bottom: 40px;
  padding: 36px 0 36px 0;
}
.testimonials h2 {
  margin-bottom: 30px;
  color: #184D8A;
}
.testimonial-card {
  box-shadow: 0 2px 16px 0 rgba(24,77,138,0.08);
  border-left: 6px solid #FFD447;
  border-radius: 16px;
  padding: 20px 32px;
  background: #fff;
  margin-top: 0;
  margin-bottom: 22px;
  align-items: center;
  min-width: 0;
  transition: box-shadow .18s, border-color .18s;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  color: #152033;
  font-size: 1.15rem;
  line-height: 1.46;
  margin-bottom: 7px;
}
.testimonial-card .author {
  color: #184D8A;
  font-weight: 600;
  font-size: 1rem;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(24,77,138,0.17);
  border-left: 6px solid #184D8A;
}
@media (max-width: 650px) {
  .testimonial-card {
    padding: 14px 8px;
  }
}

/* ===============================
   CONTACT, FOOTER
   =============================== */
.contact-cta {
  background: #184D8A;
  color: #fff;
  padding: 42px 0;
  border-radius: 20px;
  margin-bottom: 34px;
}
.contact-cta h2,
.contact-cta .cta-btn {
  color: #fff;
}
.contact-cta .cta-btn {
  background: #FFD447;
  color: #184D8A;
  margin-bottom: 18px;
}
.contact-cta .cta-btn:hover,
.contact-cta .cta-btn:focus {
  background: #fff5d3;
  color: #184D8A;
}
.quick-contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.quick-contact-info span {
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  gap: 8px;
}
.contact-info .text-section {
  margin-bottom: 6px;
}
.map-embed {
  margin-top: 16px;
  font-size: 0.93rem;
  color: #184D8A;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
  margin-bottom: 10px;
}
.footer-nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #184D8A;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 8px;
  transition: color .15s;
  border-radius: 4px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #FFD447;
  background: #184D8A11;
}
footer {
  background: #f9fafc;
  border-top: 1px solid #e5e9f1;
  padding: 28px 0 15px 0;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #607693;
  font-size: 0.97rem;
}
@media (max-width: 680px) {
  .footer-contact {
    flex-direction: column;
    gap: 7px;
  }
  .footer-nav {
    gap: 12px;
  }
}

/* ===============================
   BUTTONS, LINK INTERACTIONS
   =============================== */
button,
input[type="submit"],
.cta-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
}
button:disabled, input:disabled {
  opacity: 0.6;
  pointer-events: none;
}
::-webkit-input-placeholder { color: #96a3ad; }
::-moz-placeholder { color: #96a3ad; }
:-ms-input-placeholder { color: #96a3ad; }
::placeholder { color: #96a3ad; }

/* ===============================
   MISC VISUAL EFFECTS: SHADOWS & RADIUS
   =============================== */
.card, .testimonial-card, .features ul li, .feature_grid li, .blog_grid ul li {
  box-shadow: 0 2px 16px 0 rgba(40,55,100,0.05);
}
.card,
.testimonial-card,
.features ul li,
.feature_grid li,
.about-summary,
.section,
.blog_grid ul li {
  border-radius: 12px;
}

/* ===============================
   COOKIE CONSENT BANNER
   =============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  border-top: 1px solid #e1e6eb;
  box-shadow: 0 -4px 28px 0 rgba(40,55,100,0.09);
  z-index: 120;
  padding: 24px 18px 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1rem;
  transition: transform .34s cubic-bezier(.68,-0.55,.27,1.35);
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 1rem;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-right: 2px;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(24,77,138,0.06);
  transition: background 0.13s, color 0.13s;
}
.cookie-btn.accept {
  background: #184D8A;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #FFD447;
  color: #184D8A;
}
.cookie-btn.reject {
  background: #f9f9fa;
  color: #184D8A;
  border: 1px solid #184D8A22;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff5d3;
  color: #184D8A;
}
.cookie-btn.settings {
  background: #FFD447;
  color: #184D8A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #184D8A;
  color: #FFD447;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 8px 20px 10px;
    gap: 14px;
  }
  .cookie-banner .cookie-actions {
    justify-content: flex-end;
  }
}

/* Cookie Modal Preferences (hidden by default) */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 150;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,77,138,0.09);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeIn .14s;
}
@keyframes fadeIn {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 8px 32px 0 rgba(24,77,138,0.16);
  padding: 36px 30px 32px 30px;
  min-width: 320px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: modalSlideIn .25s;
}
@keyframes modalSlideIn {
  0% { transform: translateY(24px); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #184D8A;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 8px 0 8px 0;
}
.cookie-modal .toggle-category {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius: 11px;
  background: #e7ecf4;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .16s;
  margin-left: 6px;
}
.cookie-modal .toggle-category:checked {
  background: #184D8A;
}
.cookie-modal .toggle-category:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.5px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 6px 0 rgba(24,77,138,0.12);
  transition: transform .14s;
}
.cookie-modal .toggle-category:checked:before {
  transform: translateX(15px);
}
.cookie-modal .toggle-category[disabled],
.cookie-modal .toggle-category:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #184D8A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.45rem;
  background: none;
  border: none;
  color: #184D8A;
  cursor: pointer;
  transition: color .15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFD447;
}
@media (max-width: 420px) {
  .cookie-modal { padding: 14px 2vw 24px 2vw; }
}

/* ===============================
   ANIMATIONS & MICRO-INTERACTIONS
   =============================== */
.cta-btn, .card, .testimonial-card, .feature_grid li, .cookie-btn {
  transition: background .16s, color .16s, transform .10s, box-shadow .17s;
}
.cta-btn:hover, .cta-btn:focus, .card:hover, .feature_grid li:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 28px 0 rgba(24,77,138,0.13);
}

/* ===============================
   FORMS (inputs, labels, etc)
   =============================== */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 9px 13px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #f8fafb;
  font-size: 1rem;
  color: #152033;
  outline: none;
  transition: border-color 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #184D8A;
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #184D8A;
  font-weight: 500;
}

/* ===============================
   UTILS & ACCESSIBILITY
   =============================== */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0; border: 0;
  clip: rect(0,0,0,0);
  overflow: hidden;
}

/* ===============================
   ENSURE LAYOUT SPACING (Never Overlap!)
   =============================== */
.section + .section {
  margin-top: 16px;
}
.content-wrapper > *,
.section > * {
  margin-bottom: 12px;
}
.content-wrapper > *:last-child,
.section > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .hero h1,
  .section h1 {font-size: 1.5rem;}
  .hero h2,
  .section h2 {font-size: 1.18rem;}
}
/* ===============================
   PRINT SUPPORT (basic)
   =============================== */
@media print {
  header, .cookie-banner, .mobile-menu, .mobile-menu-toggle, footer { display: none !important; }
  .section, .container { padding: 0; }
  body { color: #181a21; }
}
