/* === 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F4F7FA;
  color: #2C3E50;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
a {
  background: transparent;
  text-decoration: none;
  color: #2C3E50;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #47A07B;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: background 0.2s, color 0.2s;
}

/* ==== BRAND TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2C3E50;
  margin-bottom: 16px;
}
h1 {font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px;}
h2 {font-size: 2rem; line-height: 1.18; margin-bottom: 20px;}
h3 {font-size: 1.5rem; line-height: 1.2; margin-bottom: 14px;}
h4 {font-size: 1.17rem;}
h5 {font-size: 1rem;}
h6 {font-size: 0.875rem;}
.subtitle {
  color: #395571;
  font-size: 1.125rem;
  margin-bottom: 16px;
}
strong {font-weight: 700;}
em { font-style: italic; }

.text-section {
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ====== GLOBAL CONTAINER ====== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ====== HEADER & NAVIGATION ====== */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(44,62,80,0.05);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px 20px;
  gap: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 4px 2px;
  color: #395571;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #47A07B;
  border-color: #47A07B;
}
.cta-primary {
  display: inline-block;
  background: #47A07B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 4px;
  padding: 12px 30px;
  margin-left: 32px;
  box-shadow: 0 2px 9px rgba(44,62,80,0.10);
  transition: background 0.18s, box-shadow 0.2s, transform 0.13s;
  text-align: center;
  border: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #2C3E50;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  display: inline-block;
  background: #2C3E50;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
  padding: 10px 24px;
  margin-top: 28px;
  box-shadow: 0 2px 5px rgba(44,62,80,0.07);
  transition: background 0.16s, box-shadow 0.18s;
  border: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #47A07B;
  color: #fff;
}

/* MOBILE BURGER & MENU */
.mobile-menu-toggle {
  display: none;
  background: #F4F7FA;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 2rem;
  color: #2C3E50;
  margin-left: 24px;
  z-index: 51;
  border: none;
  transition: background 0.13s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e3edf5;
  color: #47A07B;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,62,80, 0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.65,0,0.35,1);
  z-index: 105;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: none;
  margin: 24px 34px 14px 0;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #47A07B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 16px 34px;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  box-sizing: border-box;
  padding: 10px 0 10px 24px;
  border-radius: 0 8px 8px 0;
  transition: background 0.18s, color 0.18s, padding 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #47A07B;
  color: #fff;
  padding-left: 36px;
}

/* Responsive header nav */
@media (max-width: 1080px) {
  header .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  header nav {
    gap: 16px;
  }
}
@media (max-width: 890px) {
  header .container {
    flex-direction: row;
  }
  header nav {
    display: none;
  }
  .cta-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* === FOOTER === */
footer {
  background: #2C3E50;
  color: #e6ecf1;
  padding: 32px 0 0 0;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
footer .container {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 0 20px 18px 20px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
footer nav a {
  color: #aac4d1;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: #47A07B;
}
.footer-contact {
  font-size: 0.99rem;
  color: #e3e9f2;
  margin-top: 6px;
}
.footer-contact img {
  width: 19px;
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.8;
}

@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* === SECTION GENERAL LAYOUT === */
section {
  background: none;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-sizing: border-box;
  border-radius: 12px;
}
@media (max-width: 700px) {
  section {
    padding: 28px 8px;
    margin-bottom: 38px;
  }
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
@media (max-width: 950px) {
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

/***** CARD, GRID, FLEX LAYOUTS (FLEXBOX ONLY) *****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 17px rgba(69,88,125,0.12);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  min-width: 270px;
  max-width: 400px;
  transition: box-shadow .16s, transform .17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px rgba(44,62,80,0.18);
  transform: translateY(-2px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid, .top-destinations-grid, .themes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.top-destinations-grid > div, .themes-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 11px rgba(44,62,80,0.063);
  padding: 20px;
  flex: 1 1 210px;
  min-width: 192px;
  max-width: 300px;
  margin-bottom: 20px;
  transition: box-shadow .17s, background .23s;
}
.top-destinations-grid > div:hover, .themes-grid > div:hover {
  background: #F4F7FA;
  box-shadow: 0 6px 25px rgba(44,62,80,0.11);
}

/***** FEATURES & LISTS *****/
ul, ol {
  margin: 0 0 20px 0;
  padding: 0;
}
.features, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 8px;
  padding: 20px 18px;
  box-shadow: 0 2px 10px rgba(44,62,80,0.09);
}
ul > li, ol > li {
  margin-bottom: 18px;
  font-size: 1.07rem;
  line-height: 1.75;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
ul > li img {
  width: 40px; height: 40px;
  margin-right: 14px;
}

/***** TESTIMONIALS & QUOTES *****/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 11px rgba(44,62,80,0.09);
  min-width: 220px;
  max-width: 480px;
  font-size: 1.075rem;
  color: #183049;
  position: relative;
  transition: box-shadow 0.13s, transform 0.12s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 25px rgba(44,62,80,0.16);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card strong, .testimonial-card span {
  font-size: 1rem;
  color: #2C3E50;
  font-weight: 600;
  margin-top: 0;
}
.star-rating {
  font-size: 1.2rem;
  color: #47A07B;
  letter-spacing: 0.1em;
  margin-top: -10px;
}
.featured-quote {
  display: block;
  background: #e8f5f1;
  border-left: 5px solid #47A07B;
  color: #2C3E50;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 18px 32px 18px 22px;
  margin: 30px 0 10px 0;
  border-radius: 7px;
}

/***** HERO & CTA BOXES *****/
.cta-box {
  background: #fff;
  box-shadow: 0 2px 15px rgba(44,62,80,0.10);
  border-radius: 11px;
  padding: 38px 32px 28px 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 32px;
}
.contact-short {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  font-size: 1.14rem;
}
.contact-short p {
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-short img {
  width: 18px;
  opacity: 0.7;
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.contact-info-block img {
  width: 17px; margin-right: 9px; opacity: 0.76;
}

/***** BLOG POST LIST & CATEGORIES *****/
.blog-post-list {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blog-post-list li {
  background: #fff;
  border-radius: 8px;
  padding: 18px 18px 11px 18px;
  box-shadow: 0 2px 10px rgba(44,62,80,0.09);
  font-size: 1.08rem;
  cursor: pointer;
  transition: box-shadow .17s, background .1s;
}
.blog-post-list li:hover {
  background: #E6F5EE;
  box-shadow: 0 4px 16px rgba(44,62,80,0.13);
}
.categories-filter {
  font-size: 1rem;
  margin: 10px 0 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.categories-filter a {
  color: #47A07B;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 3px;
  transition: background 0.14s, color 0.14s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: #e3edf5;
  color: #2C3E50;
}

.authors-highlight {
  background: #e3edf5;
  padding: 14px 20px;
  border-radius: 6px;
  color: #395571;
  margin-top: 12px;
  font-weight: 600;
}

/***** GOOGLE MAP EMBED BLOCK *****/
.google-map-embed {
  background: #e3edf5;
  padding: 17px 18px;
  border-radius: 8px;
  margin-top: 18px;
  font-style: italic;
  color: #395571;
  font-size: 1.02rem;
}

/***** COOKIES CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #fff;
  border-top: 2px solid #47A07B;
  box-shadow: 0 -2px 16px rgba(44,62,80,0.09);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 25px 24px 22px 24px;
  justify-content: space-between;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2C3E50;
  transition: transform 0.4s cubic-bezier(.7,.4,.2,1), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 5px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  transition: background 0.16s,color 0.16s,box-shadow 0.18s;
  box-shadow: 0 2px 9px rgba(44,62,80,0.07);
  margin-right: 4px;
}
.cookie-banner .accept-all {
  background: #47A07B;
  color: #fff;
}
.cookie-banner .accept-all:hover { background: #2C3E50; }
.cookie-banner .reject-all {
  background: #E8EFF3;
  color: #2C3E50;
}
.cookie-banner .reject-all:hover { background: #b3c6d4; }
.cookie-banner .settings {
  background: #fff;
  color: #395571;
  border: 1.5px solid #47A07B;
}
.cookie-banner .settings:hover { background: #E6F5EE; }

/***** COOKIE MODAL *****/
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: rgba(44,62,80, 0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 13px;
  padding: 36px 28px 30px 28px;
  min-width: 340px;
  max-width: 98vw;
  box-shadow: 0 7px 44px rgba(44,62,80,0.16);
  color: #2C3E50;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalPopIn .28s cubic-bezier(.7,.4,.2,1);
}
@keyframes modalPopIn {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 23px;
  font-size: 1.6rem;
  background: none;
  color: #2C3E50;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #47A07B;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #e8f5f1;
  padding: 12px 18px;
  border-radius: 7px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #47A07B;
}
.cookie-category .category-desc {
  font-size: 0.95rem;
  color: #395571;
  margin-left: 12px;
}
.cookie-category.essential {
  background: #cde8df;
  color: #324555;
  font-weight: 600;
}

/***** RESPONSIVE ========== *****/
@media (max-width: 1020px) {
  .cta-box { padding: 34px 14px 22px 14px; }
}
@media (max-width: 900px) {
  .cta-box { padding: 24px 8px 16px 8px; }
}
@media (max-width: 650px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.07rem; }
  .testimonial-card { padding: 13px 10px; }
  .cta-box { gap: 13px; }
  .card, .feature-item, .themes-grid > div, .top-destinations-grid > div {
    padding: 13px 7px;
    min-width: 0;
    width: 100%;
    max-width: 100vw;
  }
  .google-map-embed { font-size: 0.97rem; }
}

/***** FLEX DIRECTION ON MOBILE *****/
@media (max-width: 768px) {
  .content-wrapper, .content-grid, .card-container, .features, .top-destinations-grid, .themes-grid, .contact-short {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/***** MICRO-INTERACTIONS & TRANSITIONS *****/
section, .card, .testimonial-card, .feature-item, .cta-box {
  transition: box-shadow 0.19s cubic-bezier(.44,.15,.22,1), background 0.14s;
}
a, button, .cta-primary, .cta-secondary {
  transition: color 0.16s, background 0.17s, box-shadow 0.16s, transform 0.12s;
}

/***** UTILITY CLASSES *****/
.d-none { display: none !important; }
.d-block { display: block !important; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }

/***** OVERRIDE FOR EXTERNAL ICONS ETC. *****/
img[alt^="icon"], img[src*="icon-"] {
  vertical-align: middle;
  width: 25px;
  height: 25px;
  object-fit: contain;
  margin-right: 8px;
  display: inline-block;
}

/***************************************
* Forms & Inputs (future-proof)
***************************************/
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px;
  border: 1.5px solid #e3edf5;
  border-radius: 4px;
  margin-bottom: 14px;
  background: #fff;
  color: #2C3E50;
  box-sizing: border-box;
  width: 100%;
  outline: none;
  transition: border-color 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #47A07B;
}

/***************************************
* Accessibility
***************************************/
a:focus-visible, button:focus-visible, .cta-primary:focus-visible, .cta-secondary:focus-visible {
  outline: 2px solid #47A07B;
  outline-offset: 2px;
}

/***************************************
* Misc: Hide scroll on mobile menu open
***************************************/
body.mobile-menu-open {
  overflow: hidden;
}
