/* RESET & BASE TYPOGRAPHY */
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 {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F3EFEA;
  color: #183D5A;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  color: #46A5A5;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.77,0,.18,1);
}
a:hover, a:focus {
  color: #183D5A;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
}

/* BRAND FONTS */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
  color: #183D5A;
  letter-spacing: -1.5px;
  text-shadow: 1px 2px 8px rgba(70,165,165,0.06);
}
h2 {
  font-size: 1.65rem;
  margin-bottom: 16px;
  color: #46A5A5;
  letter-spacing: -0.7px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #183D5A;
}

.subheadline {
  font-size: 1.1rem;
  margin-bottom: 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 400;
  color: #355A73;
}

p {
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
  color: #183D5A;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

/* FLEXBOX LAYOUTS AND SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container,
.card-grid,
.feature-grid,
.route-list,
.tip-list,
.guide-profiles,
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(70,165,165,0.11), 0 1.5px 4px rgba(24,61,90,0.08);
  margin-bottom: 20px;
  padding: 28px 22px 22px 22px;
  position: relative;
  flex: 1 1 250px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s cubic-bezier(.77,0,.18,1);
}
.card:hover {
  box-shadow: 0 6px 28px rgba(70, 165, 165, 0.17), 0 2px 6px rgba(24,61,90,0.11);
  transform: translateY(-3px) scale(1.018);
}

.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: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 20px 24px 18px 24px;
  box-shadow: 0 2px 12px rgba(24,61,90,0.12), 0 1px 2px rgba(70,165,165,0.05);
  margin-bottom: 20px;
  max-width: 520px;
  min-width: 220px;
  border-left: 5px solid #46A5A5;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1.5px 6px rgba(24,61,90,0.09);
  padding: 24px 20px 20px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 0px;
  font-size: 16px;
  transition: box-shadow 0.22s cubic-bezier(.77,0,.18,1);
  border-left: 4px solid #46A5A5;
}
.feature-grid li:hover {
  box-shadow: 0 3px 16px rgba(70,165,165,0.16);
}

.section ul, .section ol {
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section ul ul, .section ol ol {
  gap: 8px;
  padding-left: 14px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #F3EFEA 55%, #46A5A5 100%);
  border-radius: 0 0 38px 38px;
  padding: 50px 0 44px 0;
  margin-bottom: 44px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(70,165,165,0.13);
}
.hero h1 {
  font-size: 2.6rem;
  color: #183D5A;
  background: none;
  text-shadow: 2px 4px 12px rgba(24,61,90,0.09);
}
.hero .cta-primary {
  margin-top: 20px;
}

/* PRIMARY BUTTON STYLES */
.cta-primary {
  background: #183D5A;
  color: #fff !important;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 19px;
  padding: 14px 38px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  box-shadow: 0 2px 12px rgba(24,61,90,0.07);
  border: 2.5px solid transparent;
  transition: background .2s cubic-bezier(.77,0,.18,1), color .2s, border .2s, transform .17s;
  text-align: center;
  display: inline-block;
  margin-bottom: 14px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #46A5A5;
  color: #183D5A !important;
  border: 2.5px solid #183D5A;
  transform: translateY(-2px) scale(1.04);
}

/* NAVIGATION STYLES */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(24,61,90,0.07);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 41;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1150px;
  margin: 0 auto;
  padding: 10px 16px;
}
.main-nav img {
  height: 42px;
  margin-right: 16px;
  border-radius: 10px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 15px;
  color: #183D5A;
  border-radius: 8px;
  transition: background 0.17s;
}
.main-nav .cta-primary {
  margin-left: auto;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EAF3F3;
  color: #46A5A5;
}

/* MOBILE MENU (BURGER) */
.mobile-menu-toggle {
  display: none;
  background: #46A5A5;
  color: #fff;
  border-radius: 9px;
  font-size: 2.3rem;
  padding: 5px 10px;
  margin-left: auto;
  z-index: 61;
  transition: background 0.17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #183D5A;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,61,90, 0.96);
  z-index: 90;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border-radius: 12px;
  padding: 8px 24px 8px 12px;
  margin: 14px 16px 10px 0;
  transition: background 0.12s;
  z-index: 92;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #46A5A5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 38px 0 20px 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  font-size: 1.28rem;
  padding: 12px 5px 12px 0;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #46A5A5;
  color: #183D5A;
}

/* LISTINGS AND ICON STYLES */
.section ul li, .section ol li {
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
}
.section ul li img, .section ol li img {
  height: 26px;
  width: auto;
  margin-right: 8px;
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 5px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #183D5A;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card .author {
  font-size: 0.97rem;
  color: #46A5A5;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
}

/* CARDS AND FEATURES (CONTENT) */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px rgba(70,165,165,0.08);
  padding: 18px 18px 16px 18px;
}

/* FOOTER */
footer {
  background: #183D5A;
  color: #fff;
  margin-top: 62px;
  padding: 36px 0 22px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.81;
  padding: 5px 7px;
  border-radius: 5px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.16s, opacity 0.16s;
}
.footer-nav a:hover {
  background: #46A5A5;
  color: #183D5A;
  opacity: 1;
}
.footer-copy {
  text-align: center;
  font-size: 0.96rem;
  opacity: 0.8;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #183D5A;
  color: #fff;
  z-index: 99;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 14px;
  box-shadow: 0 -3px 16px rgba(24,61,90,.12);
  transition: transform 0.3s cubic-bezier(.77,0,.18,1);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner p {
  flex: 1 1 250px;
  margin: 0 0 0 0;
  color: #F3EFEA;
}
.cookie-btn, .cookie-settings-btn {
  background: #46A5A5;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  margin-left: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .14s, color .14s, transform .14s;
}
.cookie-btn.reject {
  background: #E94E25;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #183D5A;
  color: #46A5A5;
  transform: scale(1.05);
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 200;
  background: rgba(24,61,90,0.80);
  align-items: center;
  justify-content: center;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #183D5A;
  border-radius: 20px;
  box-shadow: 0 5px 32px rgba(24,61,90,0.18);
  padding: 36px 28px 28px 28px;
  min-width: 290px;
  max-width: 98vw;
  max-height: 98vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalPop .3s cubic-bezier(.26,.96,.65,1.16);
}
@keyframes cookieModalPop {
  from { opacity: 0; transform: scale(0.96) translateY(40px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-content h2 {
  font-size: 1.42rem;
  margin-bottom: 7px;
  color: #46A5A5;
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal-content .category-toggle {
  width: 1.9em;
  height: 1.1em;
  background: #EAF3F3;
  border-radius: 1.2em;
  position: relative;
  outline: none;
  border: none;
  box-shadow: 0 1px 3px rgba(70,165,165,0.04);
  transition: background 0.18s;
}
.cookie-modal-content .category-toggle[aria-checked="true"] {
  background: #46A5A5;
}
.cookie-modal-content .category-toggle::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 0.06em;
  transition: left 0.16s;
}
.cookie-modal-content .category-toggle[aria-checked="true"]::before {
  left: calc(1.9em - 1em - 2px);
}
.cookie-modal-content .category-label {
  font-size: 1.08rem;
  font-weight: 500;
  color: #183D5A;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}
/* Modal close button */
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 16px;
  font-size: 1.9rem;
  background: none;
  border: none;
  color: #46A5A5;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #EAF3F3;
}

/* FORMS (simple style) */
input, textarea, select {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid #46A5A5;
  background: #F9F8F6;
  margin-bottom: 15px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #183D5A;
}

/* ICONS */
img[alt*="icon"], img[src*="icon"] {
  filter: none;
  margin-bottom: 0;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* ARTISTIC CREATIVE TOUCHES */
.hero, .cta-primary, .testimonial-card, .feature-grid li, .section {
  box-shadow: 0 2px 12px rgba(70,165,165,0.08), 0 1px 4px rgba(24,61,90,0.10);
}
.card, .feature-grid li, .testimonial-card {
  border-top-left-radius: 33px 65px;
  border-bottom-right-radius: 40px 22px;
  border-top-right-radius: 14px 28px;
  border-bottom-left-radius: 19px 44px;
}
.section h2 {
  position: relative;
  z-index: 2;
}
.section h2::after {
  content: '';
  display: block;
  width: 38px;
  height: 7px;
  background: #46A5A5;
  margin-top: 4px;
  border-radius: 9px;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
  .main-nav { flex-wrap: wrap; }
}
@media (max-width: 900px) {
  .main-nav { gap: 10px; }
  .footer-nav { flex-direction: column; gap: 4px; }
}
@media (max-width: 768px) {
  .hero { padding: 28px 0 28px 0; margin-bottom: 18px; border-radius: 0 0 25px 25px; }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    padding: 28px 7px;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .feature-grid, .testimonial-slider, .card-container, .card-grid, .route-list, .tip-list, .guide-profiles {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 11px;
  }
  .testimonial-card, .feature-grid li, .card {
    min-width: unset;
    max-width: 99vw;
  }
  .footer-nav { flex-direction: column; gap: 2px; }
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
}

@media (max-width: 540px) {
  h1 { font-size: 2.08rem; }
  h2 { font-size: 1.23rem; }
  .hero h1 { font-size: 1.65rem; }
  .cta-primary { font-size: 1.02rem; padding: 12px 19px; }
  .section, .hero { padding-left: 4px; padding-right: 4px; }
  .testimonial-card { padding: 13px 7px 10px 14px; }
}

/* SCROLLBAR custom for artistic appeal (optional) */
::-webkit-scrollbar {
  width: 11px;
  background: #F3EFEA;
}
::-webkit-scrollbar-thumb {
  background: #46A5A5;
  border-radius: 5px;
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta-primary, .cookie-btn, .cookie-settings-btn, .main-nav a, .feature-grid li {
  transition: background .18s cubic-bezier(.77,0,.18,1), color .15s, box-shadow .18s;
}
.feature-grid li:active {
  background: #EAF3F3;
}

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