/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #244067;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #244067;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
  font-weight: 700;
}
a:hover, a:focus {
  color: #BFA77A;
  outline: none;
}

/* TYPOGRAPHY – BOLD & MODERN */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #244067;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
h2 {
  font-size: 1.65rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}
.subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #244067;
  margin-bottom: 20px;
}
p, ul, ol, dl, address {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 18px;
  color: #244067;
}
strong, b {
  font-weight: 700;
}
ul, ol {
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 10px;
}

dl, dt, dd {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
dl {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}
dt {
  font-weight: 700;
  margin-bottom: 2px;
}
dd {
  margin-left: 0;
  margin-bottom: 8px;
  color: #BFA77A;
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 14px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}
.text-section {
  max-width: 760px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 28px 0 rgba(36,64,103,0.04),0 1.5px 4.5px 0 rgba(191,167,122,0.03);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 10px 0 rgba(36,64,103,0.07);
  padding: 29px 26px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 7px 24px 0 rgba(36,64,103,0.12);
}

.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: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #F7F6F3;
  border-radius: 18px;
  box-shadow: 0 3px 12px 0 rgba(36,64,103,0.05);
  min-width: 240px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px 0 rgba(36,64,103,0.10);
  transform: translateY(-3px) scale(1.03);
}
.testimonial-card p {
  color: #244067;
  font-size: 1.1rem;
  font-weight: 600;
}
.testimonial-card span {
  color: #bfa77a;
  font-size: 0.98rem;
  font-style: italic;
}
.star-rating {
  color: #BFA77A;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 18px 0;
  padding-left: 0;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  background: #EDE9E3;
  color: #244067;
  border-radius: 13px;
  padding: 13px 18px;
  box-shadow: 0 1px 5px 0 rgba(36,64,103,0.06);
  font-size: 1.05rem;
}
.feature-list li img {
  width: 32px;
  height: 32px;
}

.service-list {
  list-style: none;
  margin-top: 16px;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.service-list li {
  padding: 11px 0 11px 0;
  border-left: 3px solid #BFA77A;
  background: #F7F6F3;
  border-radius: 9px;
  padding-left: 22px;
  color: #244067;
  font-weight: 500;
}

.price-list {
  margin-top: 10px;
  margin-bottom: 25px;
}

.service-comparison {
  margin-top: 18px;
  background: #EDE9E3;
  border-radius: 13px;
  padding: 13px 18px;
}

.tour-highlights, .history-timeline {
  margin-top: 16px;
  background: #EDE9E3;
  border-radius: 13px;
  padding: 13px 18px;
}
.tour-highlights ul,
.history-timeline ul {
  list-style: disc inside;
  margin-top: 8px;
  margin-bottom: 0;
  padding-left: 17px;
}
.tour-highlights li, .history-timeline li {
  color: #244067;
  font-weight: 500;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.11rem;
  font-weight: 700;
  padding: 15px 36px;
  background: #244067;
  color: #fff;
  border-radius: 28px;
  letter-spacing: 0.7px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2.5px 10px 0 rgba(36,64,103,0.09);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
  outline: none;
  margin-top: 6px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #BFA77A;
  color: #244067;
  box-shadow: 0 7px 24px rgba(191,167,122,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* HEADER / NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(36,64,103,0.04);
  position: relative;
  z-index: 12;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  justify-content: flex-start;
  padding: 0 17px;
  height: 74px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #244067;
  padding: 3px 9px;
  border-radius: 7px;
  transition: background 0.2s, color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #BFA77A;
  color: #fff;
}
.main-nav a.btn-primary {
  margin-left: 17px;
  padding: 11px 25px;
  font-size: 1rem;
  border-radius: 24px;
}
.main-nav img {
  height: 48px;
  width: auto;
}

/* =============== MOBILE NAV =============== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 16px;
  z-index: 120;
  background: #244067;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(36,64,103,.09);
  transition: background 0.17s, transform 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #bfa77a;
  color: #244067;
  transform: scale(1.05);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 300px;
  max-width: 90vw;
  background: #fff;
  z-index: 130;
  transform: translateX(-110%);
  transition: transform 0.37s cubic-bezier(.62,0,.16,1);
  box-shadow: 8px 0 18px 0 rgba(36,64,103,0.12);
  display: flex;
  flex-direction: column;
  padding: 38px 22px 0 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #244067;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.7rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 22px;
  transition: background 0.17s, transform 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #BFA77A;
  color: #244067;
  transform: scale(1.07);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 15px;
}
.mobile-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #244067;
  padding: 13px 9px 13px 9px;
  border-radius: 12px;
  transition: background 0.18s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EDE9E3;
  color: #BFA77A;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 11px;
    padding: 0 5px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* =============== FOOTER =============== */
footer {
  background: #244067;
  padding: 40px 0 16px 0;
  color: #fff;
}
.footer-content {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.footer-content img {
  width: 58px;
  height: auto;
  margin-bottom: 13px;
}
.footer-nav, .footer-utility-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-nav {
  gap: 13px;
}
.footer-nav a, .footer-utility-nav a {
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  background: transparent;
  border-radius: 7px;
  padding: 5px 10px;
  transition: background 0.18s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus, .footer-utility-nav a:hover, .footer-utility-nav a:focus {
  background: #BFA77A;
  color: #244067;
}
.footer-content address {
  font-style: normal;
  color: #F7F6F3;
  font-size: 1rem;
  margin-top: 18px;
}
.footer-content address img {
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

/* =============== GEOMETRIC DECORATION (EXTRA BOLD) =============== */
section:not(:last-child) {
  position: relative;
  overflow: visible;
}
section::after {
  content: '';
  display: block;
  position: absolute;
  right: -32px;
  top: 26px;
  width: 56px;
  height: 56px;
  background: #BFA77A;
  opacity: 0.10;
  border-radius: 12px 26px 24px 12px;
  z-index: 2;
}
section:nth-child(2)::after {
  left: -22px;
  right: unset;
  top: 38px;
  background: #244067;
  opacity: 0.09;
}
section:last-child::after {
  display: none;
}
@media (max-width:600px) {
  section::after {
    width: 27px;
    height: 27px;
    top: 10px;
    right: -7px;
  }
}

/* =============== COOKIE BANNER =============== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #244067;
  color: #fff;
  box-shadow: 0 -3px 16px rgba(36,64,103,0.13);
  padding: 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  z-index: 800;
  gap: 28px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  justify-content: space-between;
  transition: transform 0.35s;
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
}
.cookie-text {
  flex: 1 1 auto;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.cookie-btn.accept {
  background: #BFA77A;
  color: #244067;
}
.cookie-btn.reject {
  background: transparent;
  color: #fff;
  border: 2px solid #BFA77A;
}
.cookie-btn.settings {
  background: #244067;
  color: #fff;
  border: 2px solid #BFA77A;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ede9e3;
  color: #244067;
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  background: rgba(36,64,103,0.38);
  transition: opacity 0.32s;
  opacity: 0;
  pointer-events: none;
}
#cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 17px 46px rgba(36,64,103,0.17);
  min-width: 290px;
  max-width: 94vw;
  max-height: 94vh;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.33rem;
  color: #244067;
  margin-bottom: 0;
}
.cookie-modal-content ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 10px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-weight: 700;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #ede9e3;
  border-radius: 24px;
  position: relative;
  cursor: pointer;
  margin-left: 4px;
  transition: background 0.19s;
  display: flex;
  align-items: center;
  border: 1px solid #bfa77a;
}
.cookie-toggle input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.cookie-toggle span {
  position: absolute;
  left: 3px;
  top: 2.3px;
  width: 19px;
  height: 19px;
  background: #bfa77a;
  border-radius: 50%;
  transition: transform 0.18s, background 0.18s;
}
.cookie-toggle input[type=checkbox]:checked+span {
  background: #244067;
  transform: translateX(20px);
}
.cookie-category.disabled label {
  color: #bbb;
  opacity: 0.7;
}
.cookie-modal-close {
  background: transparent;
  color: #244067;
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 15px; right: 20px;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 50%;
  transition: background 0.17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #BFA77A33;
}
.cookie-modal-actions {
  display: flex;
  gap: 17px;
  justify-content: flex-end;
  margin-top: 14px;
}

/* LEGAL SECTIONS (COPY PAGES) */
.legal-section {
  padding: 44px 30px;
  background: #f7f6f3;
  border-radius: 23px;
  box-shadow: 0 2px 10px 0 rgba(36,64,103,0.04);
}

/* MEDIA QUERIES & RESPONSIVE FLEX */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding: 0 6vw;
  }
  .footer-content {
    max-width: 98vw;
    padding: 0 6vw;
  }
}
@media (max-width: 880px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .section {
    margin-bottom: 34px;
    padding: 25px 7px;
  }
  .feature-list li {
    padding: 10px 12px;
    font-size: 1rem;
    gap: 10px;
  }
  .footer-content address {
    font-size: 0.97rem;
  }
  .testimonial-card {
    padding: 15px;
  }
}
@media (max-width: 610px) {
  h1 {
    font-size: 1.45rem;
    margin-bottom: 8px;
  }
  h2 {
    font-size: 1.04rem;
    margin-bottom: 6px;
  }
  .subheadline {
    font-size: 1rem;
    margin-bottom: 14px;
  }
  .footer-content img {
    width: 37px;
  }
}
@media (max-width: 510px) {
  .footer-content {
    gap: 13px;
    padding: 0 2vw;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    padding: 17px 8px;
  }
  .cookie-buttons {
    gap: 8px;
  }
  .cookie-modal-content {
    padding: 22px 7vw 17px 7vw;
  }
}
@media (max-width:375px) {
  .cookie-modal-content h2 {
    font-size: 1rem;
  }
}

/* FOCUS VISIBLE ENHANCEMENT */
:focus {
  outline: 2px solid #BFA77A;
  outline-offset: 1px;
}

/* MICRO-INTERACTIONS */
.btn-primary:active,
.main-nav a:active,
.mobile-menu-toggle:active,
.mobile-menu-close:active {
  transform: scale(0.97) translateY(1px);
}

/* SELECTION for Bold Contrasts */
::selection {
  background: #BFA77A;
  color: #244067;
}

/* Hide scrollbar for mobile-nav if overflow */
.mobile-nav {
  max-height: 55vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #BFA77A #EDE9E3;
}
.mobile-nav::-webkit-scrollbar {
  width: 6px;
}
.mobile-nav::-webkit-scrollbar-thumb {
  background: #BFA77A;
  border-radius: 5px;
}
.mobile-nav::-webkit-scrollbar-track {
  background: #EDE9E3;
  border-radius: 5px;
}

/* Extra spacing for all cards and testimonial lists */
.card-container > *, .content-grid > *, .testimonial-card {
  margin-bottom: 20px;
}

/* Extra: Hide cookie modal by default, show via class */
#cookie-modal { display: none; }
#cookie-modal.open { display: flex; }

/* Extra fix for ul,ol in .feature-list or .text-section */
.text-section ul, .text-section ol {
  margin-top: 6px;
  margin-bottom: 14px;
  padding-left: 21px;
}
.text-section ul li {
  padding-left: 0;
  background: none;
  margin-bottom: 7px;
}

/* Decorative shapes for high contrast (only as background, never content) */
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: -26px;
  bottom: 12px;
  width: 44px;
  height: 19px;
  background: #244067;
  opacity: 0.06;
  border-radius: 9px 17px 9px 11px;
  z-index: 0;
}

@media (max-width:620px){
  .section::before{display:none;}
}
