/* =====================
   CSS RESET & NORMALIZE
   ===================== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #273340;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1A4971;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #32A287;
  outline: none;
}
ul, ol {
  margin: 0;
  padding-left: 1.2em;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 600;
}
hr {
  border: none;
  border-top: 1px solid #E6E8E9;
  margin: 32px 0;
}

/* ========
   TYPOGRAPHY
   ======== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: #1A4971;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  font-weight: 500;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  font-size: 1rem;
  color: #3F4A5A;
  margin-bottom: 16px;
}
blockquote {
  border-left: 4px solid #32A287;
  background: #F8EDDB;
  color: #273340;
  padding: 16px 20px;
  margin: 0 0 12px 0;
  font-style: italic;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.08rem;
}

/* =====================
   SPACING & LAYOUT
   ===================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 9px 0 rgba(27,73,113,0.07);
  padding: 24px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(27,73,113,0.15);
  transform: translateY(-2px);
}

.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: 12px;
  background: #F8EDDB;
  border-radius: 11px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 3px 12px 0 rgba(27,73,113,0.06);
  font-size: 1.02rem;
  transition: box-shadow 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(27,73,113,0.12);
}
.testimonial-card span {
  color: #1A4971;
  font-size: 0.98em;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Utility Layouts (indexed by HTML structure) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 11px;
  padding: 24px 20px;
  box-shadow: 0 2px 9px 0 rgba(27,73,113,0.07);
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.12s;
  gap: 10px;
}
.feature-grid li:hover {
  box-shadow: 0 4px 24px 0 rgba(50,162,135,0.13);
  transform: translateY(-2px);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.tour-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.tour-list-grid > div {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 9px 0 rgba(27,73,113,0.07);
  padding: 20px 16px 18px 16px;
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.tour-list-grid > div:hover {
  box-shadow: 0 6px 22px 0 rgba(27,73,113,0.14);
  transform: translateY(-2px);
}

/* FAQ Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.faq-accordion h3 {
  cursor: pointer;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 0;
  padding: 14px 18px;
  font-size: 1.04rem;
  box-shadow: 0 2px 8px 0 rgba(27,73,113,0.04);
  transition: background 0.15s;
}
.faq-accordion h3:focus, .faq-accordion h3:hover {
  background: #F8EDDB;
  outline: none;
}
.faq-accordion > div {
  background: #F7FAFC;
  color: #1A4971;
  padding: 14px 18px 14px 28px;
  border-radius: 0 0 8px 8px;
  font-size: 0.99rem;
  transition: background 0.24s;
  margin-bottom: 12px;
}
.faq-category-tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.faq-category-tags span {
  font-size: 0.95em;
  background: #E0FAF3;
  color: #32A287;
  border-radius: 6px;
  padding: 4px 10px;
}

/* ===================
   HEADER & NAVIGATION
   =================== */
header {
  background: #fff;
  box-shadow: 0 2px 13px 0 rgba(27,73,113,0.07);
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 64px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  position: relative;
}
header img {
  height: 38px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  color: #1A4971;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 5px;
  letter-spacing: .01em;
  transition: background 0.18s, color 0.16s;
  line-height: 1.3;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F8EDDB;
  color: #32A287;
  outline: none;
}
.cta {
  font-family: 'Roboto Slab', Georgia, serif;
  background: #32A287;
  color: #fff;
  padding: 11px 30px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  display: inline-block;
  transition: background 0.18s, color 0.19s, box-shadow 0.18s;
  cursor: pointer;
  margin-left: 16px;
  box-shadow: 0 1px 7px 0 rgba(50,162,135,0.12);
}
.cta.primary {
  background: #1A4971;
  color: #fff;
}
.cta:hover, .cta:focus {
  background: #fff;
  color: #32A287;
  outline: none;
  box-shadow: 0 3px 20px 0 rgba(50,162,135,0.17);
}
.cta.primary:hover, .cta.primary:focus {
  background: #32A287;
  color: #fff;
}

/* MOBILE NAV BAR */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #1A4971;
  font-size: 2em;
  line-height: 1;
  cursor: pointer;
  display: none;
  padding: 8px 12px;
  margin-left: 14px;
  border-radius: 7px;
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F8EDDB;
  color: #32A287;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #fff;
  z-index: 500;
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.77,.21,.28,.89);
  box-shadow: 0 6px 36px rgba(27,73,113,0.13);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 18px;
  padding-left: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.7em;
  color: #1A4971;
  position: absolute;
  right: 28px;
  top: 18px;
  cursor: pointer;
  border-radius: 7px;
  padding: 4px 8px;
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F8EDDB;
  color: #32A287;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100vw;
  margin-top: 54px;
  padding-left: 38px;
}
.mobile-nav a {
  font-size: 1.17rem;
  color: #1A4971;
  font-weight: 600;
  padding: 10px 8px 10px 0;
  border-radius: 8px;
  letter-spacing: .01em;
  transition: background 0.17s, color 0.17s;
  line-height: 1.3;
  min-width: 80vw;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F8EDDB;
  color: #32A287;
  outline: none;
}

/* ================
   HERO SECTION
   ================ */
.hero {
  background: #F8EDDB;
  padding: 58px 0 48px 0;
  display: flex;
  align-items: center;
  margin-bottom: 44px;
  min-height: 210px;
}
.hero .container {
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 720px;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.hero h1 {
  font-size: 2.2rem;
  color: #1A4971;
}
.hero p {
  font-size: 1.12rem;
}

/* ====================
   FOOTER
   ==================== */
footer {
  background: #fff;
  border-top: 1px solid #E6E8E9;
  padding: 38px 0 0 0;
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 19px;
}
.footer-nav a {
  color: #3F4A5A;
  font-size: 0.98rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.13s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F8EDDB;
  color: #32A287;
}
footer .text-section {
  font-size: 0.93rem;
  color: #637184;
  margin-bottom: 18px;
}

/* =========================
   SPECIFIC DESIGN ELEMENTS 
   ========================= */
/* Tag for location in Schatz cards */
span {
  font-family: inherit;
}
h3 span {
  font-size: 0.79em;
  color: #32A287;
  background: #E0FAF3;
  border-radius: 6px;
  padding: 2px 9px;
  margin-left: 6px;
  vertical-align: top;
}

/**** LIST ICONS, CONTACT ETC ***/
ul li img, .feature-grid li img {
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
ul li img {
  width: 22px;
  height: 22px;
  margin-bottom: -3px;
}

/* =================
   RESPONSIVE DESIGN
   ================= */
@media (max-width: 980px) {
  .feature-grid, .tour-list-grid, .content-grid {
    flex-direction: column !important;
    gap: 18px;
  }
  .container {
    max-width: 97vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  header .container {
    gap: 8px;
  }
  .footer-nav {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  /* Navigation */
  .main-nav {
    display: none;
  }
  .cta {
    margin-left: 0;
    margin-top: 7px;
    padding: 10px 19px;
    font-size: 0.99rem;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .hero {
    padding: 38px 0 30px 0;
    min-height: 140px;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 34px;
  }
  .content-wrapper {
    padding: 0;
  }
  .feature-grid, .tour-list-grid, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.09rem;
  }
  .hero .content-wrapper h1 {
    font-size: 1.49rem;
  }
  .mobile-nav a {
    font-size: 1.03rem;
    padding: 9px 2px 9px 0;
  }
  .mobile-menu {
    padding-top: 6px;
  }
}

/* ====================
   TABLES FOR POLICIES
   ==================== */
table {
  background: #fff;
  border-collapse: collapse;
  margin: 24px 0;
  box-shadow: 0 1px 7px rgba(27,73,113,0.04);
  width: 100%;
  font-size: 1rem;
}
thead {
  background: #F8EDDB;
}
th, td {
  border: 1px solid #E8E9EC;
  padding: 9px 13px;
}
th {
  font-weight: 600;
  font-family: 'Roboto Slab', Georgia, serif;
}

/* ====================
   COOKIE CONSENT BANNER
   ==================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -3px 20px 0 rgba(50,162,135,0.15);
  border-top: 1px solid #E6E8E9;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px 18px;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.77,.21,.28,.89);
}
.cookie-banner.hidden {
  transform: translateY(100%);
}
.cookie-banner-message {
  color: #1A4971;
  flex: 1 1 400px;
  font-size: 0.97rem;
  margin-right: 14px;
}
.cookie-banner-actions {
  display: flex;
  gap: 17px;
  flex-direction: row;
}
.cookie-btn {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
  background: #E0FAF3;
  border: none;
  color: #32A287;
  border-radius: 20px;
  padding: 7px 22px;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
  transition: background 0.14s, color 0.13s;
}
.cookie-btn.primary {
  background: #1A4971;
  color: #fff;
}
.cookie-btn.danger {
  background: #FAE4E6;
  color: #B32A46;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #32A287;
  color: #fff;
  outline: none;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #32A287;
  color: #fff;
}
.cookie-btn.danger:hover, .cookie-btn.danger:focus {
  background: #B32A46;
  color: #fff;
}

/**** COOKIE PREFERENCES MODAL ****/
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27,73,113,0.24);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.26s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 8px 42px 0 rgba(27,73,113,0.13);
  padding: 32px 24px 27px 24px;
  max-width: 405px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal-header {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.21rem;
  color: #1A4971;
  margin-bottom: 7px;
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 12px;
  font-size: 1.5em;
  background: none;
  border: none;
  color: #32A287;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 8px;
  transition: background 0.14s, color 0.12s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: #F8EDDB;
  color: #1A4971;
  outline: none;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin: 8px 0 2px 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: #32A287;
  width: 18px;
  height: 18px;
  margin-right: 3px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
}
.cookie-category .always-on {
  color: #bbb;
  font-size: 0.95em;
  margin-left: 6px;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 13px;
  justify-content: flex-end;
}

/* ========================
   FORM ELEMENTS & BUTTONS
   ======================== */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border-radius: 6px;
  border: 1px solid #CCE2E3;
}
input:focus, textarea:focus, select:focus {
  border-color: #32A287;
  background: #F8EDDB;
}
button[disabled], input[disabled], select[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===============
   ANIMATION CLASSES
   =============== */
.slide-in {
  animation: slideIn .4s cubic-bezier(.61,.25,.37,.97);
}
@keyframes slideIn {
  0%   { transform: translateX(-100vw); }
  100% { transform: translateX(0); }
}
.slide-out {
  animation: slideOut .35s cubic-bezier(.61,.25,.37,.97);
}
@keyframes slideOut {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100vw); }
}

/* ============
   PRINT MINIMAL
   ============ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body, main, section, h1, h2, h3, p, ul, li, table, thead, tr, td, th {
    background: #fff !important;
    color: #111 !important;
    box-shadow: none !important;
  }
}
