/*============================================================
  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,
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FAFAF8;
  color: #222239;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #16213E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B1A664;
  text-decoration: underline;
}
ul, ol {
  list-style: disc inside;
  margin-left: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/*------------------------------------------------------------
  TYPOGRAPHY
------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.15;
  color: #16213E;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; }

p, li, blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222239;
  margin-bottom: 16px;
}
blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: #4C5161;
  border-left: 4px solid #F1C40F;
  background: #F9F6F1;
  margin: 24px 0;
  padding: 16px 32px;
  border-radius: 8px;
}
strong, b {
  font-weight: 700;
  color: #16213E;
}

/*============================================================
  CONTAINERS & LAYOUTS
============================================================*/
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(22, 33, 62, 0.08);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
    border-radius: 12px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  flex: 1 1 270px;
  min-width: 260px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(22, 33, 62, 0.10);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 32px rgba(22,33,62,0.18);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F9F9F5;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(22, 33, 62, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 24px rgba(22, 33, 62, 0.19);
  transform: translateY(-2px) scale(1.01);
  z-index: 2;
}
.testimonial-card p {
  font-size: 1.10rem;
  font-family: 'Cormorant Garamond', serif;
  color: #1A2241;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.testimonial-info span {
  font-size: 0.98rem;
  color: #33333D;
  opacity: 0.88;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-info img {
  width: 18px;
  vertical-align: middle;
  margin-right: 2px;
}

.features-grid, .services-list, .tour-list {
  /* Unify feature/tour/service grids */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.features-grid > div, .services-list > div, .tour-list ul {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(22,33,62,0.07);
  padding: 24px 18px;
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.features-grid > div:hover, .services-list > div:hover, .tour-list ul:hover {
  box-shadow: 0 6px 30px rgba(22,33,62,0.13);
  transform: translateY(-2px) scale(1.015);
  z-index: 2;
}
.features-grid img {
  width: 44px;
  margin-bottom: 12px;
}
.tour-list ul {
  list-style: disc inside;
  background: #FBFAF7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(22,33,62,0.03);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 16px 14px;
  min-width: 190px;
  flex: 1 1 240px;
}

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

@media (max-width: 968px) {
  .features-grid, .services-list, .tour-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .features-grid, .services-list, .tour-list {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .features-grid > div, .services-list > div, .tour-list ul {
    min-width: 0;
    width: 100%;
    padding: 18px 10px;
    border-radius: 10px;
  }
  .content-wrapper {
    max-width: 98vw;
  }
}

/*============================================================
  HEADER, NAVIGATION & LOGO
============================================================*/
header {
  background: #FFFFFF;
  box-shadow: 0 2px 24px rgba(22,33,62,0.07);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px 18px 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #16213E;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.2s;
  border-bottom: 1.5px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
  color: #B1A664;
  border-color: #F1C40F;
}
.btn.btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 30px;
  font-size: 1rem;
  background: #16213E;
  color: #F1C40F;
  border: none;
  border-radius: 24px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(22,33,62,0.07);
  transition: background 0.13s, color 0.13s, transform 0.15s, box-shadow 0.17s;
  cursor: pointer;
  margin-left: 24px;
  letter-spacing: 0.02em;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #10172C;
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 14px rgba(22,33,62,0.14);
  outline: none;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #16213E;
  cursor: pointer;
  margin-left: 24px;
  transition: color 0.18s, transform 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #F1C40F;
  outline: none;
  transform: scale(1.13);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
    margin-left: 20px;
  }
  .btn.btn-primary {
    margin-left: 18px;
    padding: 10px 20px;
  }
}

@media (max-width: 850px) {
  header .container {
    padding: 12px 10px;
  }
  .logo img {
    height: 32px;
  }
}
@media (max-width: 768px) {
  .main-nav, .btn.btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*============================================================
  MOBILE MENU
============================================================*/
.mobile-menu {
  position: fixed;
  z-index: 600;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,33,62,0.91);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(.54,.01,0,1), opacity 0.23s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.mobile-menu-close {
  color: #F1C40F;
  font-size: 2.2rem;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 28px 26px 16px 0;
  cursor: pointer;
  transition: color 0.18s, transform 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #FFFFFF;
  outline: none;
  transform: scale(1.13);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100vw;
  align-items: flex-start;
  margin-top: 18px;
  padding: 0 40px;
}
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #FFF7E4;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  letter-spacing: 0.01em;
  transition: color 0.15s, border-color 0.15s, background 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F1C40F;
  background: rgba(241,196,15,0.10);
  border-bottom: 2px solid #F1C40F;
  outline: none;
}

@media (max-width: 480px) {
  .mobile-nav {
    padding: 0 14px;
    gap: 12px;
  }
  .mobile-menu-close {
    margin-right: 10px;
    font-size: 2rem;
  }
}

/*============================================================
  HERO SECTIONS
============================================================*/
.hero {
  background: linear-gradient(90deg, #F9F8F4 0%, #ECE8DC 98%);
  padding: 48px 0 40px 0;
  margin-bottom: 56px;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  text-align: center;
  padding: 0 10px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.7rem;
  color: #16213E;
  margin-bottom: 20px;
  letter-spacing: 0.015em;
}
.hero p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #353647;
  font-size: 1.16rem;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  .hero {
    padding: 20px 0 24px 0;
    margin-bottom: 32px;
  }
  .hero h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 16px;
  }
}

/*============================================================
  BUTTONS & LINKS
============================================================*/
.btn {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 24px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  background: #16213E;
  color: #F1C40F;
  cursor: pointer;
  transition: background 0.16s, color 0.14s, transform 0.16s;
  box-shadow: 0 2px 8px rgba(22,33,62,0.07);
  text-align: center;
}
.btn:hover, .btn:focus {
  background: #10172C;
  color: #fff;
  transform: scale(1.035);
  outline: none;
}

@media (max-width: 480px) {
  .btn, .btn.btn-primary {
    padding: 10px 14px;
    font-size: 0.98rem;
  }
}

/*============================================================
  FORMS (for potential future use)
============================================================*/
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
}
input, textarea, select {
  border-radius: 7px;
  border: 1px solid #D4D6DB;
  padding: 10px 16px;
  background: #fff;
  color: #222239;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F1C40F;
  outline: none;
  box-shadow: 0 0 0 1.5px #F1C40F;
}

/*============================================================
  FOOTER
============================================================*/
footer {
  background: #F1F1ED;
  padding: 40px 0 16px 0;
  border-top: 2px solid #ECE8DD;
  font-size: 0.95rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.footer-logo img {
  height: 38px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: #16213E;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  opacity: 0.92;
  padding: 4px 0;
  transition: color 0.14s, text-decoration 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B1A664;
  text-decoration: underline;
}
.footer-contact{
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #292A36;
  font-size: 0.97rem;
  line-height: 1.8;
}
.footer-contact img {
  vertical-align: middle;
  width: 17px;
  margin-right: 6px;
}
.footer-contact a {
  color: #16213E;
  border-bottom: 1px dotted #C5C8DC;
  transition: color 0.15s;
}
.footer-contact a:hover {
  color: #F1C40F;
}
@media (max-width: 900px) {
  footer .container {
    gap: 22px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-logo img {
    height: 31px;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 24px 0 10px 0;
  }
  .footer-logo img {
    height: 22px;
  }
}

/*============================================================
  UTILITIES
============================================================*/
.hide {
  display: none !important;
}
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/*============================================================
  COOKIE CONSENT BANNER
============================================================*/
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 308px;
  max-width: 95vw;
  background: #fffdfa;
  color: #222239;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(22,33,62,0.13);
  padding: 28px 32px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.39s, visibility 0.25s;
}
.cookie-banner.show {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.cookie-banner p {
  margin-bottom: 10px;
  font-size: 0.99rem;
  color: #222239;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 22px;
  border-radius: 16px;
  font-size: 1rem;
  border: 1.5px solid #ECCB56;
  background: #FFF7E1;
  color: #16213E;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.15s, transform 0.15s;
  margin: 0 6px 0 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F1C40F;
  color: #16213E;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.primary {
  background: #16213E;
  color: #F1C40F;
  border-color: #16213E;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #F1C40F;
  color: #16213E;
}
@media (max-width: 540px) {
  .cookie-banner {
    min-width: 0;
    max-width: 97vw;
    padding: 18px 8px 12px 8px;
    border-radius: 10px;
  }
  .cookie-buttons {
    gap: 6px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,33,62,0.48);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.show {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(22,33,62,0.18);
  padding: 36px 40px 22px 40px;
  max-width: 400px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopIn 0.38s cubic-bezier(.25,.75,.45,1.1);
}
@keyframes modalPopIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.93); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal h3 {
  margin-bottom: 10px;
  color: #16213E;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #222239;
}
.cookie-toggle {
  width: 46px;
  height: 22px;
  border-radius: 14px;
  background: #D4D6DB;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  width: 20px;
  height: 20px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 1px;
  box-shadow: 0 1px 2px rgba(22,33,62,0.06);
  transition: left 0.19s;
}
.cookie-toggle.active {
  background: #F1C40F;
}
.cookie-toggle.active .slider {
  left: 23px;
}
.cookie-modal .cookie-btn {
  margin-top: 16px;
  align-self: flex-end;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 18px 8px 10px 8px;
    border-radius: 10px;
  }
}

/*============================================================
  SPECIAL ELEMENT STYLING
============================================================*/
/* Text links in .text-section lists or main content */
.text-section a, .content-wrapper a:not(.btn):not(.logo):not(.footer-logo) {
  color: #16213E;
  border-bottom: 1.5px solid #ECCB56;
  transition: color 0.18s, border-color 0.16s;
}
.text-section a:hover, .content-wrapper a:not(.btn):hover {
  color: #F1C40F;
  border-color: #F1C40F;
  text-decoration: none;
}
strong {
  color: #16213E;
}

/* Lists in cards and text-sections */
.card ul, .text-section ul, .content-wrapper ul {
  list-style: disc inside;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #292A36;
  padding-left: 3px;
  margin-bottom: 12px;
  margin-top: 4px;
  font-size: 1rem;
}
.card ul li, .text-section ul li, .content-wrapper ul li {
  margin-bottom: 6px;
}

/* Responsive Typography */
@media (max-width: 400px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.98rem; }
}

/* Small decorative separator for classic elegance */
hr {
  border: none;
  border-top: 1.5px solid #ECE8DC;
  margin: 24px 0;
}

/*============================================================
  ANIMATIONS, INTERACTIONS & TRANSITIONS
============================================================*/
.section, .card, .testimonial-card, .features-grid > div, .services-list > div, .tour-list ul {
  transition: box-shadow 0.22s, transform 0.21s;
}

a, .btn, .cookie-btn {
  transition: color 0.15s, background 0.15s, border 0.13s, box-shadow 0.18s, transform 0.15s;
}

/* Section fade-in effect */
.section, .hero {
  animation: fadeInSection 0.74s cubic-bezier(.29,.71,.24,1.03);
}
@keyframes fadeInSection {
  0% { opacity: 0; transform: translateY(24px);} 
  100% { opacity: 1; transform: none; }
}

/*============================================================
  RESPONSIVENESS
============================================================*/
@media (max-width: 700px) {
  body { font-size: 15px; }
  .hero .content-wrapper, .content-wrapper {
    padding: 0 6px;
    max-width: 98vw;
  }
}
@media (max-width: 450px) {
  h1 { font-size: 1.15rem; }
  .card, .features-grid > div, .testimonial-card, .section {
    padding: 13px 6px;
  }
}

/*============================================================
  OVERRIDE BROWSER AUTOFILL (classic look)
============================================================*/
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-text-fill-color: #16213E !important;
}

/*============================================================
  END OF STYLES
============================================================*/