/* ============================== */
/*      CSS RESET & NORMALIZER     */
/* ============================== */
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, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F6FA;
  color: #234158;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #234158;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #BFA46B;
  outline: none;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 1.25em;
}
li {
  margin-bottom: 8px;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
input, textarea {
  font-family: inherit;
  font-size: 100%;
  box-sizing: border-box;
}
hr {
  border: 0;
  border-top: 1px solid #dee2e8;
  margin: 32px 0;
}

/* Hide scrollbars for smoother overlays on mobile */
body.menu-open {
  overflow: hidden;
}

/* ============================ */
/*          TYPOGRAPHY          */
/* ============================ */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  line-height: 1.18;
  font-weight: 700;
  color: #234158;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
  color: #234158;
}
h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 12px;
  color: #234158;
}
p, .subheadline {
  font-size: 1rem;
  line-height: 1.7;
  color: #41586c;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.15rem;
  color: #234158;
  margin-bottom: 24px;
}
strong {
  font-weight: 600;
}

/* Typography scale for responsive */
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  h3, .h3 { font-size: 1.12rem; }
}

/* ================================ */
/*         STRUCTURED LAYOUT        */
/* ================================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

.text-section {
  max-width: 790px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(35, 65, 88, 0.08);
  margin-bottom: 20px;
  padding: 30px 24px;
  position: relative;
  min-width: 280px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s, transform 0.23s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 4px 18px 0 rgba(35,65,88,0.18);
  transform: translateY(-2px) scale(1.017);
}

.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;
  }
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(50,64,90,0.09);
  min-width: 250px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.20s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 4px 22px 0 rgba(35, 65, 88, 0.16);
  transform: translateY(-2px) scale(1.013);
}
.testimonial-card p {
  color: #234158;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.72;
}
.testimonial-meta {
  color: #41586c;
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 6px;
}

/* Features and Items */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background:#fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(35,65,88,0.08);
  padding: 22px 20px 18px 20px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 190px;
  max-width: 250px;
}
.feature img {
  width: 46px;
  margin-bottom: 8px;
  filter: grayscale(0) opacity(.9);
}
.feature h3 {
  margin-bottom: 7px;
}

@media (max-width: 992px) {
  .features-grid {
    justify-content: center;
    gap:18px;
  }
  .feature {
    min-width: 160px;
    max-width: 45%;
  }
}
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 13px;
  }
  .feature {
    max-width: 100%;
    padding: 18px 12px 14px 12px;
  }
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top:8px;
  margin-bottom:20px;
  color: #234158;
}
.values-list li {
  background: #F5F6FA;
  border-left: 4px solid #BFA46B;
  padding: 14px 22px;
  border-radius: 5px;
  font-size: 1.03rem;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  justify-content: flex-start;
}
.service {
  flex: 1 1 340px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 2px 10px rgba(35,65,88,0.08);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 22px;
  margin-bottom: 20px;
}
.service img {
  width:58px;
  min-width:44px;
}
.service h3 {
  margin-bottom:4px;
}
.service-price {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 12px;
  background: #234158;
  color: #fff;
  border-radius: 15px;
  font-size: .96rem;
  font-weight: 500;
}
@media (max-width: 900px) {
  .services-list {
    flex-direction: column;
    gap: 13px;
  }
  .service {
    flex-direction: column;
    gap: 11px;
    padding: 18px 10px;
  }
}

.event-list {
  list-style-position: inside;
  margin-bottom: 24px;
}
.event-list li {
  padding: 13px 0 12px 0;
  border-bottom: 1px solid #e1e6ed;
  color: #234158;
  font-size:1.06rem;
}
.event-highlights h3 {
  margin-top: 12px;
}
.event-highlights ul li {
  color: #234158;
  margin-bottom: 6px;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}
.contact-details > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #234158;
}
.contact-details img {
  width: 28px;
}
.contact-details a {
  color: #234158;
  font-weight: 600;
  text-decoration: underline;
}

.cta-section {
  display: flex;
  align-items: center;
  gap: 18px;
}

@media (max-width: 600px) {
  .contact-details {
    flex-direction: column;
    gap: 10px;
  }
  .cta-section {
    flex-direction: column;
    gap:10px;
  }
}

/* ======================= */
/*     BUTTONS & CTA      */
/* ======================= */
.cta-btn {
  background: #234158;
  color: #fff;
  border-radius: 50px;
  padding: 13px 32px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 0 0 transparent;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.18s;
  margin-top: 8px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #BFA46B;
  color: #234158;
  box-shadow: 0 3px 18px 0 rgba(191,164,107,0.18);
  transform: translateY(-2px) scale(1.04);
}

button, .button {
  background: #BFA46B;
  color: #234158;
  font-weight: 600;
  border-radius: 8px;
  padding: 10px 28px;
  box-shadow: none;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.12s, transform 0.13s;
}
button:hover, .button:hover, button:focus, .button:focus {
  background: #234158;
  color: #fff;
  box-shadow: 0 2px 10px rgba(35,65,88,0.10);
  transform: translateY(-1px) scale(1.045);
}

/* ============================= */
/*        HEADER & NAVBAR        */
/* ============================= */
header {
  background: #fff;
  box-shadow: 0 1px 14px rgba(35,65,88,0.055);
  position: sticky;
  top: 0;
  z-index: 110;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  width: 100%;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Lato', Arial, sans-serif;
  color: #234158;
  font-size: 1.01rem;
  font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .17s, border-bottom .19s;
}
header nav a:hover, header nav a:focus {
  color: #BFA46B;
  border-bottom: 2px solid #BFA46B;
}
header img {
  height: 46px;
  width: auto;
}
@media (max-width: 992px) {
  header .container {
    flex-wrap: wrap;
    min-height: 58px;
  }
}
@media (max-width: 768px) {
  header nav, header .cta-btn {
    display: none;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
}


/* =============================== */
/*      MOBILE MENU NAVIGATION     */
/* =============================== */
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 18px;
  z-index: 251;
  font-size: 2.22rem;
  background: #234158;
  color: #fff;
  padding: 8px 19px 8px 15px;
  border-radius: 7px;
  transition: background .19s, color .16s, transform .12s;
  border: 1px solid #d1d6df;
  display: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background:#BFA46B;
  color: #234158;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 250;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.48,.89,.7,1.01);
  box-shadow: -4px 0 22px 0 rgba(35,65,88,0.16);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #234158;
  color: #fff;
  font-size: 1.85rem;
  padding: 7px 16px;
  border-radius: 6px;
  z-index: 252;
  border: 1px solid #e1e1e1;
  transition: background .17s, color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background:#BFA46B;
  color: #234158;
}
.mobile-nav {
  margin-top: 65px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}
.mobile-nav a {
  width: 100%;
  font-size: 1.18rem;
  padding: 17px 32px;
  border-bottom: 1px solid #e6e9f2;
  color: #234158;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.19s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5F6FA;
  color: #BFA46B;
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* Overlay for mobile menu */
.mobile-menu-bg {
  position: fixed;
  z-index: 201;
  top: 0;
  left:0;
  width:100vw;
  height:100vh;
  background: rgba(16,28,46,0.24);
  backdrop-filter: blur(2.3px);
  display: none;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-menu.open ~ .mobile-menu-bg {
  display: block;
  opacity: 1;
}

/* =============================== */
/*            HERO AREA            */
/* =============================== */
.hero {
  background: linear-gradient(90deg,#F5F6FA 54%,#e8edf3 100%);
  padding: 60px 0 50px 0;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.hero .content-wrapper {
  max-width: 670px;
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 24px 0;
    min-height: 180px;
  }
  .hero .content-wrapper {
    gap: 10px;
  }
}


/* =================*/
/*      FOOTER      */
/* =================*/
footer {
  background: #234158;
  color: #fff;
  padding-top: 32px;
  padding-bottom: 32px;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
}
.footer-navigation {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.footer-navigation a {
  color: #fff;
  font-size: 1rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.17s;
}
.footer-navigation a:hover,
.footer-navigation a:focus {
  border-bottom: 1.5px solid #BFA46B;
  color: #BFA46B;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 500;
}
.footer-brand img {
  height: 32px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-navigation {
    gap:16px;
  }
}
@media (max-width: 600px) {
  footer {
    padding-top:18px;
    padding-bottom:20px;
  }
  .footer-brand img {
    height:22px;
  }
}

/* ============================ */
/*  COOKIE CONSENT BANNER/MODAL */
/* ============================ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10010;
  background: #234158;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 32px;
  box-shadow: 0 -3px 25px 0 rgba(35,65,88,0.10);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.26s cubic-bezier(.36,.71,.75,1.01), opacity 0.23s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner__text {
  font-size: 1rem;
  color: #fff;
  margin-right: 20px;
  max-width: 480px;
}
.cookie-banner__btn {
  background: #BFA46B;
  color: #234158;
  font-size: 1.07rem;
  font-weight: 700;
  border-radius: 18px;
  padding:10px 26px;
  border: none;
  margin-right: 9px;
  margin-left: 0;
  margin-bottom: 0;
  transition: background .17s, color .17s, box-shadow .17s, transform .11s;
}
.cookie-banner__btn:last-child {
  margin-right:0;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: #234158;
  color: #fff;
  box-shadow:0 2px 12px rgba(191,164,107,0.09);
  transform: scale(1.04);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
    padding: 18px 10px 18px 10px;
  }
  .cookie-banner__text {
    margin-right:0;
    max-width: 100%;
  }
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 54%;
  transform: translate(-50%,-55%) scale(0.95);
  background:#fff;
  color: #234158;
  border-radius:14px;
  z-index: 11010;
  box-shadow: 0 8px 52px rgba(35,65,88,0.19);
  min-width: 320px;
  max-width: 95vw;
  width: 410px;
  padding:36px 28px 28px 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .19s, transform .24s cubic-bezier(.35,.68,.66,1.18);
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-55%) scale(1);
}
.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: #234158;
  color:#fff;
  font-size:1.35rem;
  padding:4px 12px;
  border-radius:6px;
  border:1px solid #e1e1e1;
  transition: background .16s, color .16s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #BFA46B;
  color: #234158;
}
.cookie-modal__heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 13px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e2e6ec;
}
.cookie-modal__category:last-child {
  border-bottom: none;
}
.cookie-modal__label {
  font-size:1rem;
  font-weight:500;
}
.cookie-toggle {
  width: 46px;
  height: 24px;
  border-radius: 14px;
  background: #e4e7ef;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle.enabled {
  background: #BFA46B;
}
.cookie-toggle__handle {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(35,65,88,0.11);
  transition: left 0.16s;
}
.cookie-toggle.enabled .cookie-toggle__handle {
  left: 25px;
}
.cookie-modal__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal__footer .button {
  background: #234158;
  color: #fff;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 1rem;
}
.cookie-modal__footer .button:hover,
.cookie-modal__footer .button:focus {
  background: #BFA46B;
  color: #234158;
}
@media (max-width:520px) {
  .cookie-modal {
    padding: 18px 6vw 18px 8vw;
    width: 98vw;
    min-width:180px;
  }
}

/* =============================== */
/*    MICRO-INTERACTIONS/ANIM     */
/* =============================== */
.fade-in {
  animation: fadeIn .45s cubic-bezier(.63,1.53,.51,1) 1;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}
.scale-up {
  animation: scaleUp .29s ease 1;
}
@keyframes scaleUp {
  0% {transform: scale(0.94); opacity:0.72;}
  100% {transform: scale(1); opacity:1;}
}

/* ================================ */
/*    GENERAL RESPONSIVE RULES      */
/* ================================ */
@media (max-width: 1200px) {
  .container {
    max-width: 920px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 760px;
  }
}
@media (max-width: 600px) {
  .container {
    max-width: 98vw;
    padding-right: 5px;
    padding-left: 5px;
  }
}

/* ===================== */
/*    UTILITY CLASSES    */
/* ===================== */
.mt-0    { margin-top: 0!important; }
.mt-32   { margin-top: 32px!important; }
.mb-0    { margin-bottom: 0!important; }
.mb-24   { margin-bottom: 24px!important; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.flex-1 { flex: 1 1 0; }

/* Hide visually but keep accessible */
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; border:0!important; padding:0!important; }


/* ===================== */
/*     OVERRIDE FOR      */
/*    DARK-TEXT DEMANDS  */
/* ===================== */
.testimonials-slider, .testimonial-card {
  background: transparent;
}
.testimonial-card {
  background: #fff;
  color: #234158;
  box-shadow: 0 2px 10px rgba(70,89,110,0.10);
}
.testimonial-card p, .testimonial-meta {
  color: #234158;
}

/* ================== */
/*      PRINTING      */
/* ================== */
@media print {
  header, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, footer {
    display: none!important;
  }
  .container, .section {
    max-width: 100%!important;
    padding: 0!important;
    margin: 0!important;
  }
  body {
    color: #222;
    background: #fff;
  }
}
