/* =======================================
   CSS RESET & BASE STYLES
======================================= */
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,
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,
main, 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F3F6F1;
  color: #23494A;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #23494A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8BB382;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: background 0.2s, color 0.2s;
}

/* =======================================
  BRAND COLORS & UTILITIES
======================================= */
:root {
  --color-primary: #23494A;
  --color-secondary: #8BB382;
  --color-accent: #F3F6F1;
  --color-bluegray-100: #e5ecee;
  --color-bluegray-200: #c7d5d8;
  --color-bluegray-300: #99adb2;
  --color-bluegray-900: #182b2c;
  --color-contrast-title: #18372e;
  --color-light-bg: #F3F6F1;
  --color-error: #ba3d31;
  --transition-main: 0.24s cubic-bezier(.45,.6,.4,1);
  --shadow-card: 0 2px 12px rgba(35, 73, 74, 0.08),0 1.5px 7px rgba(22,49,39,0.04);
}

/* =======================================
  TYPOGRAPHY
======================================= */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  color: var(--color-contrast-title);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  line-height: 1.25;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.2;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: var(--color-primary);
  font-weight: 500;
}
p, .body-text {
  margin-bottom: 16px;
  color: var(--color-bluegray-900);
  font-size: 1em;
}
.text-section {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

/* ========================================
  SPACING & LAYOUT CONTAINERS
======================================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition-main), transform var(--transition-main);
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 18px rgba(35,73,74,.12);
  transform: translateY(-4px) scale(1.02);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F3F6F1;
  border-radius: 10px;
  padding: 28px 20px;
  min-width: 240px;
  flex: 1 1 240px;
  box-shadow: 0 1px 4px rgba(35,73,74,0.06);
  transition: box-shadow var(--transition-main), background var(--transition-main);
}
.feature-item:hover {
  background: #e5ecee;
  box-shadow: 0 6px 16px rgba(35,73,74,0.10);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-bottom: 16px;
}

/***** Testimonial Cards *****/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F3F6F1;
  border-left: 5px solid var(--color-secondary);
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(49,73,60,0.09);
  margin-bottom: 20px;
  max-width: 640px;
  transition: box-shadow var(--transition-main), border-color var(--transition-main);
}
.testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 5px 16px rgba(49,73,60,0.16);
}
.testimonial-card p {
  font-size: 1.08em;
  color: #23494A;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97em;
  color: #23494A;
}

/***** HERO SECTION *****/
.hero {
  background: linear-gradient(90deg, #e5ecee 0%, #F3F6F1 100%);
  padding: 52px 0 60px 0;
  margin-bottom: 64px;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 32px;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--color-primary);
}
.hero p {
  font-size: 1.25em;
  color: #23494A;
  margin-bottom: 18px;
}

/***** CTA BUTTONS *****/
.cta-primary, .cta-secondary {
  display: inline-block;
  border-radius: 50px;
  padding: 0.85em 2.2em;
  font-size: 1.08em;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: all var(--transition-main);
  box-shadow: 0 2px 8px rgba(35,73,74,0.07);
  margin: 8px 0;
  letter-spacing: 0.01em;
  text-align: center;
}
.cta-primary {
  background: var(--color-primary);
  color: #fff;
  border: 2px solid var(--color-primary);
}
.cta-primary:hover, .cta-primary:focus {
  background: #18372e;
  border-color: #18372e;
  color: #fff;
}
.cta-secondary {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-primary);
  color: #fff;
}

/***** NAVIGATION *****/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1.5px 7px rgba(35,73,74,.07);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1001;
  padding: 0 0 0 0;
  height: 80px;
}
header > a img {
  height: 46px;
  margin: 0 18px 0 0;
  display: block;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05em;
  font-weight: 500;
  color: var(--color-primary);
  padding: 8px 12px;
  border-radius: 8px;
  /* corporate look with simple highlight */
  transition: background 0.16s, color 0.12s;
}
header nav a:hover, header nav a.active {
  background: var(--color-secondary);
  color: #fff;
}
header .cta-primary {
  margin-left: 28px;
}
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: background 0.2s, color 0.2s;
  z-index: 1202;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: #fff;
}

/***** MOBILE MENU *****/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(35,73,74,0.96);
  color: #fff;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.55,.09,.47,1);
  z-index: 1201;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  border: none;
  align-self: flex-end;
  margin: 22px 22px 0 0;
  width: 46px;
  height: 46px;
  transition: background 0.12s, color 0.1s;
  z-index: 1203;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 28px 0 0 36px;
}
.mobile-nav a {
  font-size: 1.2em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  padding: 12px 0;
  width: 100%;
  transition: color 0.18s, background 0.16s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  padding-left: 10px;
}

@media (max-width: 1000px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ========================================
  FOOTER
======================================== */
footer {
  background: #e5ecee;
  color: #23494A;
  padding: 40px 0 0 0;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid #c7d5d8;
  padding-bottom: 22px;
}
.footer-top img {
  height: 40px;
}
.footer-top nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-top nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.1s, color 0.12s;
}
.footer-top nav a:hover {
  background: var(--color-secondary);
  color: #fff;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
  font-size: 0.97em;
}
.contact-summary {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 290px;
  color: #315250;
  font-size: 1em;
}
.contact-summary img {
  height: 17px;
  width: auto;
  display: inline-block;
  margin-right: 6px;
  vertical-align: bottom;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  color: #23494A;
  text-decoration: none;
  font-size: 1em;
  transition: color 0.16s;
}
.footer-links a:hover {
  color: var(--color-secondary);
  text-decoration: underline;
}
.social-links {
  display: flex;
  gap: 14px;
}
.social-links a img {
  height: 24px;
  width: 24px;
}

/**** Lists & Misc ****/
.benefits-list, .quick-tips ul, .adventure-highlights ul, .highlights ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.next-steps {
  margin-top: 18px;
  margin-bottom: 18px;
}
.next-steps ul li {
  margin-bottom: 7px;
}

/* TEAM & DESTINATIONS & ROUTES */
.team-list, .destination-grid, .route-list, .tips-grid, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.team-member, .destination-item, .route-item, .tip-item, article {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.17s, transform 0.2s;
}
.team-member:hover, .destination-item:hover, .route-item:hover, .tip-item:hover, article:hover {
  box-shadow: 0 6px 20px rgba(35,73,74,0.12);
  transform: translateY(-6px) scale(1.018);
}

/**** FAQ ACCORDION ****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.faq-item {
  background: #F3F6F1;
  border-radius: 7px;
  padding: 18px 16px;
  cursor: pointer;
  transition: background 0.13s, box-shadow 0.14s;
  box-shadow: 0 1px 5px rgba(22,49,39,0.03);
}
.faq-item:hover {
  background: #e5ecee;
}
.faq-item h3 {
  margin-bottom: 10px;
  font-weight: 500;
}
.faq-item > div {
  font-size: 0.99em;
}

/**** Cookie Banner + Modal ****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1999;
  width: 100vw;
  background: #23494A;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px 16px 20px 16px;
  box-shadow: 0 2px 24px rgba(35,73,74,0.18);
  font-size: 1em;
  transition: transform var(--transition-main);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-text {
  max-width: 560px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 36px;
  font-weight: 600;
  font-size: 1em;
  padding: 0.72em 1.6em;
  border: none;
  margin: 0;
  transition: background 0.15s, color 0.13s;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-banner button.cookie-reject {
  background: #ba3d31;
  color: #fff;
  border: none;
}
.cookie-banner button.cookie-reject:hover {
  background: #fff;
  color: #ba3d31;
  border: 1.5px solid #ba3d31;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2000;
  background: rgba(35,73,74,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  animation: cookieModalIn 0.38s cubic-bezier(.66,.13,.46,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #23494A;
  border-radius: 16px;
  padding: 36px 24px 26px 24px;
  max-width: 450px;
  width: 96vw;
  box-shadow: 0 4px 36px rgba(35,73,74,0.18);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  font-size: 1.06em;
  animation: cookieModalPanelIn 0.28s cubic-bezier(.77,.04,.35,1);
}
@keyframes cookieModalPanelIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.8em;
  color: var(--color-primary);
  background: none;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-bluegray-100);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 19px;
  height: 19px;
}
.cookie-category .disabled {
  color: var(--color-bluegray-300);
}
.cookie-modal .cookie-btns {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  justify-content: flex-end;
}

/***** FORMS (basic) *****/
input, textarea, select {
  font-family: inherit;
  font-size: 1em;
  padding: 10px 13px;
  border: 1.3px solid var(--color-bluegray-200);
  border-radius: 8px;
  outline: none;
  margin-bottom: 14px;
  background: #fff;
  color: var(--color-primary);
  transition: border-color 0.16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
}
label {
  font-weight: 500;
  font-size: 1em;
  margin-bottom: 7px;
  color: var(--color-primary);
}

/***** RESPONSIVENESS *****/
@media (max-width: 900px) {
  .container { max-width: 92vw; }
  .footer-bottom { flex-direction: column; gap: 22px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.48rem; }
  .section, .hero { padding: 28px 7px; border-radius: 0; margin-bottom: 38px; }
  .content-wrapper, .card-container, .feature-grid, .team-list, .destination-grid, .route-list, .tips-grid, .article-list {
    flex-direction: column;
    gap: 16px !important;
  }
  .testimonial-card, .team-member, .destination-item, .route-item, .tip-item, article, .feature-item {
    min-width: 0;
    width: 100%;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  header { height: 64px; }
  .footer-top { gap: 12px; }
  .hero { min-height: 180px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; font-size: 0.97em; }
  .mobile-menu nav {
    margin: 18px 0 0 16px;
  }
}

/***** MICRO-ANIMATIONS + TRANSITIONS *****/
.card, .feature-item, .testimonial-card, .team-member, .destination-item, .route-item, .tip-item, article,
.cta-primary, .cta-secondary, .cookie-btns button {
  will-change: box-shadow, transform, background, color;
  transition: box-shadow 0.18s, transform 0.21s, background 0.2s, color 0.16s;
}
input[type="checkbox"] {
  transition: accent-color 0.17s;
}

/***** ACCESSIBILITY - FOCUS RINGS *****/
a:focus, button:focus, input:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/***** PRINT MINIMUMS *****/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .container { padding: 0; }
  body { color: #000; background: #fff; }
}

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