/* ---------------- CSS RESET & NORMALIZE ------------------ */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #EDEEEF;
  color: #143958;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  background: none;
  border: none;
}
:focus-visible {
  outline: 2px solid #CDA349;
  outline-offset: 2px;
}

/* ---------------- LUXURY-PREMIUM PALETTE ------------------ */
:root {
  --color-primary: #143958;
  --color-secondary: #EDEEEF;
  --color-accent: #84BC8C;
  --color-gold: #CDA349;
  --color-dark: #12202A;
  --color-grey: #B7BBC2;
  --color-white: #fff;
  --color-black: #000;
}

/* ---------------- TYPOGRAPHY ------------------ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #143958;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.15rem;
  line-height: 1.3;
  margin-bottom: 16px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 12px;
}
p, li, span, address {
  font-size: 1rem;
  color: #143958;
  line-height: 1.7;
}
strong {
  font-weight: 600;
  color: #143958;
}

/* ---------------- LAYOUT CONTAINERS ------------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  background: rgba(255,255,255,0.95);
  border-radius: 22px;
  box-shadow: 0 3px 24px 0 rgba(20,57,88, 0.06);
  padding: 40px 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  background: #fff;
}
.map-placeholder {
  margin-top: 24px;
  border-radius: 12px;
  border: 1px solid var(--color-grey);
  padding: 24px 16px;
  color: #143958;
  background: #FAFAFA;
  font-size: 1rem;
  font-style: italic;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(20,57,88,0.08);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(20,57,88,0.18);
  transform: translateY(-3px);
}
.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;
}
.testimonials-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  flex: 1 1 250px;
  min-width: 230px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(20,57,88, 0.10);
  border-left: 5px solid var(--color-gold);
  margin-bottom: 20px;
  color: #143958;
  position: relative;
  transition: box-shadow 0.25s;
}
.testimonial-card p {
  color: #143958;
  font-weight: 500;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-dark);
  font-size: 0.98rem;
  font-weight: 400;
  opacity: 0.92;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(205,163,73, 0.16), 0 2px 14px 0 rgba(20,57,88, 0.12);
}

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

/* ---------------- HEADER ------------------ */
header {
  width: 100%;
  background: linear-gradient(90deg, #fff 70%, #F3ECE2 100%);
  box-shadow: 0 4px 24px 0 rgba(20,57,88, 0.06);
  position: sticky;
  top: 0;
  z-index: 1100;
  padding: 0 0 0 0;
  min-height: 76px;
}
header > a img {
  height: 48px;
  margin: 12px 20px 12px 0;
}
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 0 24px;
  min-height: 76px;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 3px solid transparent;
  transition: border-color 0.18s, color 0.25s;
  color: #143958;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  border-bottom: 3px solid var(--color-gold);
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  background: var(--color-gold);
  color: #143958;
  border-radius: 24px;
  padding: 12px 30px;
  font-size: 1.01rem;
  margin-left: 16px;
  box-shadow: 0 2px 10px 0 rgba(205,163,73, 0.08);
  border: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s, transform 0.12s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: #AD882A;
  color: #fff;
  box-shadow: 0 5px 24px 0 rgba(205,163,73, 0.18);
  transform: translateY(-2px) scale(1.03);
}

/* ------------------- MOBILE MENU ------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #143958;
  border: none;
  margin-left: 16px;
  cursor: pointer;
  z-index: 1201;
  padding: 7px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #E8E1CF;
  color: var(--color-gold);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 32px 0 rgba(20,57,88,0.12);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.86,0,0.07,1);
  z-index: 2000;
  padding: 28px 30px 20px 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #143958;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 2px 2px;
  border-radius: 6px;
  transition: background 0.15s, color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #EDEEEF;
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 12px 0 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.22s;
  color: #143958;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
/* Overlay to darken background when menu open */
body.menu-open:after {
  content: '';
  display: block;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(20,57,88,0.18);
  z-index: 1100;
  pointer-events: none;
  transition: opacity 0.38s;
}
body.menu-open {
  overflow: hidden;
}

/* -------------- HERO & SECTION SPACING -------------- */
main section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
/* Special container usage for distinct sections where needed */

/* -------------- LISTS & FEATURE BULLETS -------------- */
ul {
  list-style: none;
  padding-left: 0;
}
.content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.content-wrapper li,
.text-section li {
  position: relative;
  padding-left: 28px;
}
.content-wrapper li:before,
.text-section li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gold);
}
.content-wrapper ul li strong {
  color: var(--color-primary);
}

/* -------------- DEFINITION LISTS --------------------- */
dl {
  margin-bottom: 12px;
}
dt {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  margin-bottom: 5px;
  color: #143958;
}
dd {
  margin-bottom: 18px;
  margin-left: 0;
  font-size: 1rem;
  color: #143958;
}

/* ----------------- FOOTER ------------------------- */
footer {
  background: #143958;
  color: #fff;
  margin-top: 48px;
  padding: 0 0 0 0;
  width: 100%;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  border-bottom: 1px solid #2B4866;
  padding: 36px 0 18px 0;
}
.footer-wrapper > div, .footer-menu {
  margin-bottom: 12px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 7px;
  transition: color 0.19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-gold);
}
.footer-address address {
  color: #fff;
  font-style: normal;
  margin-bottom: 3px;
}
.footer-address a {
  color: var(--color-gold);
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  justify-content: center;
  transition: background 0.2s;
  border: 1.5px solid #CDA349;
}
.footer-social a:hover {
  background: #CDA349;
}
.footer-social img {
  width: 21px;
  height: 21px;
  display: block;
  filter: grayscale(25%) brightness(55%) sepia(1) hue-rotate(35deg) saturate(2.4);
}
.footer-legal {
  width: 100%;
  text-align: right;
  font-size: 0.92rem;
  color: #B7BBC2;
  margin-top: 12px;
  padding-bottom: 10px;
}

/* ---------------- LINKS & BUTTONS ----------------- */
a, button {
  transition: color 0.21s, background 0.20s, box-shadow 0.20s, border 0.20s;
}
a:active, button:active {
  opacity: 0.84;
}
.btn {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 9px 0 rgba(20,57,88,.13);
  transition: background 0.22s, color 0.22s, box-shadow 0.19s, transform 0.13s;
}
.btn:hover, .btn:focus {
  background: var(--color-gold);
  color: #143958;
  box-shadow: 0 4px 24px 0 rgba(205,163,73, 0.15);
  transform: translateY(-2px) scale(1.05);
}

/* -------------- COOKIE CONSENT BANNER --------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #fff;
  color: #143958;
  box-shadow: 0 -4px 22px 0 rgba(20,57,88, 0.13);
  z-index: 4000;
  padding: 24px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: cookieSlideUp 0.9s cubic-bezier(0.68,0,0.33,1);
}
@keyframes cookieSlideUp {
  0% { transform: translateY(100%); opacity: 0; }
  98% { opacity: 1; }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  color: #143958;
  font-size: 1rem;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn, .cookie-set-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  background: var(--color-gold);
  color: #143958;
  box-shadow: 0 1px 5px 0 rgba(205,163,73, 0.08);
  transition: background 0.28s, color 0.28s;
}
.cookie-btn:hover, .cookie-btn:focus, .cookie-set-btn:hover, .cookie-set-btn:focus {
  background: #AD882A;
  color: #fff;
}
.cookie-btn.reject {
  background: #B7BBC2;
  color: #143958;
}
.cookie-btn.reject:hover {
  background: #9298A7;
  color: #fff;
}
.cookie-set-btn {
  background: #fff;
  color: #143958;
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 1px 5px 0 rgba(205,163,73, 0.08);
}
.cookie-set-btn:hover {
  background: var(--color-accent);
  color: #fff;
  border: 1.5px solid var(--color-accent);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.98);
  z-index: 4100;
  min-width: 350px;
  max-width: 95vw;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 60px 0 rgba(20,57,88,0.14);
  padding: 36px 28px 24px 28px;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: cookieModalIn 0.36s cubic-bezier(0.90,0,0.18,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: translate(-50%, 100%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h3 {
  margin-bottom: 2px;
  color: var(--color-primary);
  font-size: 1.22rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.category-label {
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  color: var(--color-primary);
}
.toggle-switch {
  position: relative;
  width: 36px;
  height: 21px;
  display: inline-block;
}
.toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #B7BBC2;
  border-radius: 24px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--color-gold);
}
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.19s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(14px);
}

.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 23px; top: 18px;
  font-size: 1.7rem;
  background: none;
  color: #143958;
  border: none;
  cursor: pointer;
  opacity: 0.78;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--color-gold);
  background: #EDEEEF;
}

/* Cookie modal buttons at bottom */
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}

/* Overlay for modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(20,57,88,0.23);
  z-index: 4050;
  animation: fadeInOverlay 0.19s;
}
.cookie-modal-overlay.open {
  display: block;
}
@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* -------------------- RESPONSIVE DESIGN --------------------- */
@media (max-width: 1100px){
  .container {
    max-width: 96vw;
  }
  header {
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .footer-wrapper {
    gap: 18px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.18rem; }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper {
    padding: 22px 10px;
    border-radius: 15px;
  }
  header {
    flex-direction: row;
    gap: 14px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    font-size: 0.99rem;
    padding: 10px 16px;
    margin-left: 4px;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0 8px 0;
  }
  .footer-legal {
    text-align: left;
    font-size: 0.88rem;
  }
  .testimonials-wrapper {
    flex-direction: column;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 600px){
  h1 { font-size: 1.17rem; }
  h2 { font-size: 1.05rem; }
  .content-wrapper {
    padding: 11px 4px;
  }
  .section {
    padding: 16px 2px;
  }
  .cookie-modal {
    min-width: 98vw;
    padding: 19px 8px 16px 8px;
    border-radius: 10px;
  }
}

/* -------------------- MISCELLANEOUS / DETAILS ------------------ */
::-webkit-scrollbar { width: 11px; background: #EDEEEF; }
::-webkit-scrollbar-thumb { background: #CDA349; border-radius: 22px; }
::-webkit-scrollbar-thumb:hover { background: #AD882A; }

hr {
  border: none;
  border-bottom: 1.5px solid #CDA349;
  margin: 32px 0;
}

/* -------------- FOCUS VISIBLE/ACCESSIBILITY ------------- */
.menu-open .main-nav,
.menu-open .cta-btn {
  pointer-events: none;
  filter: blur(1px) brightness(92%);
}

/* -------------- ANIMATIONS/MICRO-INTERACTIONS ------------- */
.cta-btn, .btn, .footer-social a, .mobile-menu-toggle, .mobile-menu-close, .cookie-btn, .cookie-set-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.11s;
}
.cta-btn:active, .btn:active, .footer-social a:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(0.98);
}
.testimonial-card {
  transition: box-shadow 0.20s, transform 0.17s;
}
.testimonial-card:active {
  transform: scale(0.99);
}

/* --------------- SELECTION COLOR -------------- */
::selection {
  background: #CDA349;
  color: #fff;
}

/* --------------- GOLD ENHANCEMENTS -------------- */
h1, h2 {
  position: relative;
  padding-bottom: 6px;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  margin-top: 7px;
}
h1:after {
  width: 44px;
}
h2:after {
  width: 32px;
}

/* --- End of CSS --- */
