/* 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,
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 {
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: #FAF9F7;
  color: #222;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #1C3D5A;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD447;
  outline: none;
}

ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1.4em;
}
li + li {
  margin-top: 0.375em;
}

/* Brand font scale */
h1 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 2.6rem;
  margin-bottom: 24px;
  font-weight: 700;
  color: #1C3D5A;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #1C3D5A;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'Georgia', serif;
  font-size: 1.375rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #33475B;
}
h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: #4D6B89;
  margin-bottom: 8px;
}
p, blockquote {
  font-size: 1.06rem;
  font-family: 'Georgia', serif;
  color: #222;
  margin-bottom: 1.2em;
  line-height: 1.7;
}
blockquote {
  font-style: italic;
  position: relative;
  padding-left: 1.5em;
  border-left: 3px solid #FFD447;
  margin-bottom: 0.8em;
  color: #222;
}

strong {
  font-weight: 700;
}

/* Layout Spacing */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section,
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section,
  main section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 10px;
  }
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(60,44,15,0.11);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  min-width: 270px;
  max-width: 350px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px rgba(60,44,15,0.16);
  transform: translateY(-2px) scale(1.01);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(44,44,44,0.12);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  margin-bottom: 20px;
  min-width: 270px;
  max-width: 700px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 36px rgba(44,44,44,0.16);
  transform: translateY(-2px) scale(1.015);
}
.stars {
  color: #FFD447;
  font-size: 1.12em;
  padding: 0.2em 0 0.4em 0;
  letter-spacing: 0.08em;
}

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

/* Feature Grids (About, Home, Guide types, Tips) */
.feature-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.feature-grid > div, .team-grid > div {
  background: #F5F7FA;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,44,44,0.08);
  padding: 22px 18px 18px 18px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.15s;
}
.feature-grid > div:hover, .team-grid > div:hover {
  box-shadow: 0 8px 32px rgba(44,44,44,0.11);
  transform: translateY(-2px) scale(1.012);
}
.fun-fact {
  font-size: 0.98rem;
  background: #fff9e5;
  color: #795800;
  border-left: 3px solid #FFD447;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 6px;
}

.quick-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 6px;
}
.quick-links li {
  list-style: none;
  margin: 0;
}
.quick-links a {
  background: #fff;
  border: 1px solid #1C3D5A;
  border-radius: 6px;
  padding: 6px 18px;
  color: #1C3D5A;
  text-decoration: none;
  display: block;
  font-family: 'Georgia', serif;
  font-size: 1.04rem;
  transition: background 0.16s, color 0.2s;
}
.quick-links a:hover, .quick-links a:focus {
  background: #FFD447;
  color: #222;
}

/* Checklist/tips/faq */
.checklist li::before {
  content: '✓';
  color: #FFD447;
  margin-right: 0.7em;
  font-weight: bold;
  font-size: 1.12em;
}
.faq-list li {
  margin-bottom: 16px;
}
.tips-list li {
  list-style-type: disc;
}

/* Contact Info Block */
.contact-info-box {
  background: #F5F7FA;
  border-radius: 12px;
  padding: 20px 18px 12px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info-box img {
  vertical-align: middle;
  height: 1.3em;
  margin-right: 7px;
}

.map-embed {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(44,44,44,0.06);
  margin-top: 14px;
}

/* Thank You Message */
.thankyou-message {
  background: #fff;
  border: 1.2px solid #E9E4DA;
  border-radius: 14px;
  padding: 32px 20px;
  box-shadow: 0 2px 16px rgba(44,44,44,0.07);
  margin-top: 22px;
  text-align: left;
}

/* Main Button Styling */
.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 600;
  font-size: 1.14rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 11px 26px;
  border: none;
  transition: background 0.18s, color 0.2s, box-shadow 0.15s, transform 0.12s;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 12px;
  min-width: 150px;
}
.btn.primary {
  background: #1C3D5A;
  color: #FFD447;
  box-shadow: 0 2px 12px rgba(28,61,90,0.09);
}
.btn.primary:hover, .btn.primary:focus {
  background: #FFD447;
  color: #1C3D5A;
  box-shadow: 0 6px 30px rgba(28,61,90,0.13);
  transform: translateY(-2px) scale(1.015);
}
/* Secondary button for cookies banner etc. */
.btn.secondary {
  background: #fff;
  color: #1C3D5A;
  border: 1.4px solid #1C3D5A;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: #F5F7FA;
  color: #222;
  border-color: #FFD447;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(28,61,90,0.07);
  border-bottom: 1px solid #E9E4DA;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px 20px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
header a img {
  height: 34px;
  width: auto;
  margin-right: 18px;
}
header nav a {
  color: #1C3D5A;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.02rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 4px 2px 3px 2px;
  border-radius: 3px;
  transition: color 0.16s, background 0.17s;
}
header nav a:hover, header nav a:focus {
  color: #FFD447;
  background: #1C3D5A;
  outline: none;
}
header .btn.primary {
  margin-left: 18px;
}
.mobile-menu-toggle {
  background: #1C3D5A;
  color: #FFD447;
  border: none;
  border-radius: 7px;
  font-size: 1.7em;
  padding: 6px 14px 7px 14px;
  cursor: pointer;
  display: none;
  margin-left: 20px;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD447;
  color: #1C3D5A;
}
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  header .btn.primary {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 61, 90, 0.97);
  z-index: 2200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.76,0,0.24,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #FFD447;
  font-size: 2.2em;
  border: none;
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
  z-index: 2250;
  padding: 0 10px;
  transition: color 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 52px 0 0 32px;
}
.mobile-nav a {
  color: #FFD447;
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.24em;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.15s, background 0.15s;
  padding: 10px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #1C3D5A;
  background: #FFD447;
  border-radius: 5px;
  padding-left: 9px;
}
@media (max-width: 450px) {
  .mobile-nav {
    margin-left: 10px;
  }
}

/* FOOTER */
footer {
  background: #1C3D5A;
  color: #ffd447;
  padding: 40px 0 28px 0;
  border-top: 2px solid #FFD447;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a {
  color: #FFD447;
  text-decoration: underline;
  transition: color 0.2s;
}
footer a:hover, footer a:focus {
  color: #fff;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
footer img {
  height: 32px;
  width: auto;
}
footer address {
  font-style: normal;
  color: #fff9e5;
  font-size: 0.97em;
  margin-top: 3px;
  line-height: 1.6;
}
.footer-meta {
  font-size: 0.93em;
  color: #fff9e5;
  margin-top: 15px;
}
@media (max-width: 978px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  footer nav {
    margin: 10px 0;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff;
  color: #222;
  border-top: 2px solid #FFD447;
  box-shadow: 0 -3px 20px rgba(28,61,90,0.11);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px 18px 16px;
  gap: 12px;
  transition: transform 0.35s cubic-bezier(0.84,0,0.16,1), opacity 0.25s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  color: #222;
  font-size: 1.03em;
  margin-bottom: 8px;
}
.cookie-banner-actions {
  display: flex;
  gap: 15px;
}
.cookie-banner .btn {
  padding: 7px 18px;
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 0;
}

/* Cookie Settings Modal */
#cookie-modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(28,61,90,0.78);
  z-index: 10001;
}
#cookie-modal.open {
  display: flex;
  animation: fadeInModal 0.35s;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity:1; }
}
.cookie-modal-content {
  background: #fff;
  color: #222;
  border-radius: 18px;
  padding: 34px 30px 24px 30px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 8px 40px rgba(28,61,90,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h2 {
  font-size: 1.26rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
  font-family: 'Georgia', serif;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1.06em;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: #d2dbe5;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle[data-checked="true"] {
  background: #FFD447;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 2.3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(44,44,44,0.08);
  transition: left 0.21s cubic-bezier(0.58,0,0.33,1.02);
}
.cookie-toggle[data-checked="true"]::after {
  left: 17px;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.cookie-modal-content .btn {
  margin-top: 0;
  margin-bottom: 0;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 1.6em;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #222;
}

/* Responsive Layouts */
@media (max-width: 900px) {
  .feature-grid, .team-grid {
    gap: 16px;
  }
  .feature-grid > div, .team-grid > div {
    min-width: 47vw;
    max-width: 90vw;
    padding: 16px 12px 12px 12px;
  }
}
@media (max-width: 620px) {
  .feature-grid, .team-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div, .team-grid > div{
    min-width: 0;
    max-width: 100vw;
  }
  .content-wrapper, .text-section {
    max-width: 95vw;
    padding: 0;
  }
}
@media (max-width: 540px) {
  .card {
    padding: 18px 8px;
    min-width: 0;
  }
}

/* Ensure minimum margin between all major blocks */
main section + section, .section + .section {
  margin-top: 16px!important;
}
.content-wrapper + .content-wrapper {
  margin-top: 24px;
}

/* Misc helpers */
.bg-accent {
  background: #F5F7FA;
}
.bg-primary {
  background: #1C3D5A;
  color: #FFD447;
}
.bg-secondary {
  background: #FFD447;
  color: #1C3D5A;
}

/* Visually Hide but accessible */
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Accessibility Focus States */
a:focus, button:focus, .btn:focus {
  outline: 2.5px dashed #FFD447;
  outline-offset: 2px;
}

/*---------------------*/
/* Elegant Classic EFFECTS */
/*---------------------*/
.card,
.testimonial-card,
.feature-grid > div,
.team-grid > div,
.thankyou-message,
.contact-info-box {
  box-shadow: 0 2px 12px rgba(60,44,15,0.09);
  border: 1.5px solid #E9E4DA;
  /* Slight border for classic touch */
}
.card,
.feature-grid > div,
.team-grid > div,
.thankyou-message,
.contact-info-box,
.fun-fact {
  border-radius: 12px;
}

/* Classic blockquote quote mark */
blockquote::before {
  content: '\201C';
  font-size: 2.2em;
  color: #FFD447;
  font-family: 'Georgia', serif;
  position: absolute;
  left: 0.05em;
  top: -0.55em;
  opacity: 0.44;
}

/* Smooth fade-in for cards/sections */
@media (prefers-reduced-motion: no-preference) {
  .card, .feature-grid > div, .testimonial-card, .thankyou-message {
    opacity: 0;
    transform: translateY(22px);
    animation: cardFadeIn 0.9s cubic-bezier(0.27,0,0.24,1) .06s forwards;
  }
  @keyframes cardFadeIn {
    to {
      opacity: 1;
      transform: none;
    }
  }
}

/*---------------------*/
/* PRINT STYLES */
/*---------------------*/
@media print{
  header, footer, .mobile-menu, .cookie-banner, #cookie-modal{display:none!important}
  body, main { color:#222!important; background:#fff!important; }
  .section, main section { padding:0!important; margin:0!important; }
}
