/* === 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, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption, footer, header, hgroup,
main, 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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F9FBFD;
  color: #25415D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #25415D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #b49a5b;
  outline: none;
}

/* === LUXURY PREMIUM PALETTE === */
:root {
  --primary: #25415D;
  --secondary: #F3F7FA;
  --bg-light: #FFFFFF;
  --accent: #60A0B2;
  --gold: #b49a5b;
  --shadow: 0 6px 24px 0 rgba(22,32,53,0.07);
  --radius: 18px;
  --transition: 0.32s cubic-bezier(.4,0,.2,1);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #25415D;
}
h1 {
  font-size: 2.4rem;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

p, ul, li, address {
  color: #294461;
  font-size: 1rem;
  line-height: 1.7;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
}
i, em {
  color: #25415D;
  opacity: 0.82;
}

blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-style: italic;
  color: #25415D;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin: 0 0 16px 0;
  font-size: 1.07rem;
}

/* === CONTAINER LAYOUTS === */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.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: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: box-shadow var(--transition);
  min-width: 260px;
  flex: 1 1 240px;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(180,154,91,0.12);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  border-left: 4px solid var(--gold);
  transition: transform .17s, box-shadow .17s;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 16px 36px 0 rgba(180,154,91,0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* === HEADER/NAVIGATION === */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(22,32,53,0.045);
  position: sticky;
  top: 0;
  z-index: 1002;
  display: flex;
  flex-direction: column;
}
header .container {
  flex-direction: row;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 0;
}
.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.main-nav {
  display: flex;
  gap: 32px;
  margin-left: 34px;
  flex-shrink: 1;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.04rem;
  padding: 9px 0;
  position: relative;
  color: #25415D;
  transition: color .19s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  margin-top: 2px;
  background: var(--gold);
  transition: width .28s;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}
.main-nav a:hover {
  color: var(--gold);
}
.cta-header {
  margin-left: auto;
  margin-right: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: var(--gold);
  color: #fff;
  padding: 11px 28px;
  border-radius: 7px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 3px 15px 0 rgba(180,154,91,0.10);
  transition: background var(--transition), color .16s;
}
.cta-header:hover,
.cta-header:focus {
  background: #fff;
  color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
  margin-left: 22px;
  z-index: 1020;
  padding: 8px;
  line-height: 1;
  transition: background 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #f8f5ed;
  border-radius: 50%;
}

/* === MOBILE MENU OVERLAY === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(37,65,93,0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.5,.1,.1,1);
  z-index: 2002;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 20px 0 0 22px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.2rem;
  cursor: pointer;
  align-self: flex-start;
  z-index: 2003;
  transition: color .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 44px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.36rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 10px 0;
  transition: color .18s;
  border-radius: 5px;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--gold);
  background: rgba(180,154,91,0.10);
}

/* === HERO SECTIONS === */
.hero {
  background: linear-gradient(87deg,#f3f7fa 80%,#fff 100%);
  padding: 0;
  margin-bottom: 52px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  padding-top: 55px;
  padding-bottom: 55px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.hero p {
  color: #466288;
  font-size: 1.17rem;
}

/* === CTA BUTTONS === */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 9px;
  padding: 14px 42px;
  margin-top: 12px;
  outline: none;
  border: none;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 28px 0 rgba(180,154,91,0.07);
  cursor: pointer;
}
.cta-primary {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
}
.cta-primary:hover,
.cta-primary:focus {
  background: #fff;
  color: var(--gold);
  box-shadow: 0 7px 28px 0 rgba(180,154,91,0.19);
}
.cta-secondary {
  background: #fff;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 7px 28px 0 rgba(180,154,91,0.15);
}

button {
  font: inherit;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}

/* === LISTS === */
ul, ol {
  margin-bottom: 18px;
}
li span {
  color: var(--gold);
  font-weight: 600;
  margin-left: 2px;
}

/* === FOOTER === */
footer {
  width: 100%;
  background: #25415D;
  color: #fff;
  padding: 52px 0 32px 0;
  box-shadow: 0 -2px 24px 0 rgba(22,32,53,0.04);
  margin-top: 40px;
}
footer .container {
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
  justify-content: flex-start;
  align-items: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav a {
  color: var(--gold);
  font-size: 1.04rem;
  transition: color .16s;
  padding: 0 2px;
}
.footer-nav a:hover {
  color: #fff;
}
footer address {
  color: #f9e8c9;
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0;
}
footer address a {
  color: #fff;
  text-decoration: underline;
}

/* === TEXT-IMAGE/FEATURES/CONTENT FLEX === */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

/* === RESPONSIVE RULES === */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
    padding: 0 12px;
  }
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 90vw;
  }
  .main-nav {
    gap: 8px;
    font-size: 0.99rem;
    margin-left: 2px;
  }
  .cta-header {
    padding: 9px 16px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .main-nav {
    display: none;
  }
  .cta-header {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    padding: 30px 6px;
    margin-bottom: 32px;
  }
  .container {
    padding: 0 7px;
  }
  .content-grid,
  .card-container,
  .features {
    flex-direction: column;
    gap: 16px;
  }
  .card {
    min-width: unset;
    flex: 1 1 100%;
    padding: 18px 13px;
  }
  .testimonial-card {
    padding: 18px 11px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .mobile-nav {
    margin: 28px 0 0 16px;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero .container {
    padding-top: 28px;
    padding-bottom: 27px;
  }
  .logo img {
    height: 28px;
  }
}

/* === MICRO-INTERACTIONS === */
.card,
.testimonial-card,
.cta-primary,
.cta-secondary,
.main-nav a,
.mobile-nav a,
.cta-header,
.mobile-menu-close,
.mobile-menu-toggle {
  transition: box-shadow .18s, color .19s, background .22s, transform .17s;
}

/* === GOLDEN ACCENTS === */
h1, h2, h3, h4 {
  position: relative;
}
h2:after {
  content: '';
  display: block;
  margin-top: 7px;
  width: 38px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  opacity: .88;
}

/* === FORMS (if present on contact page) === */
input, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  border-radius: 7px;
  border: 1px solid #d9dae2;
  padding: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
  width: 100%;
  transition: border .19s, box-shadow .18s;
  background: #fff;
}
input:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 4px 0 var(--gold);
  outline: none;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff;
  color: #25415D;
  box-shadow: 0 -3px 20px 0 rgba(54,44,7,0.10);
  padding: 22px 17px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(.5,.16,.18,1), opacity 0.28s;
  border-top: 3px solid var(--gold);
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-message {
  flex: 1 1 250px;
  font-size: 0.98rem;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-consent-banner button,
.cookie-consent-banner .cookie-settings-btn {
  border-radius: 7px;
  border: 2px solid var(--gold);
  padding: 9px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: #fff;
  color: var(--gold);
  transition: background .15s, color .15s;
}
.cookie-consent-banner .accept-btn {
  background: var(--gold);
  color: #fff;
}
.cookie-consent-banner .accept-btn:hover, .cookie-consent-banner .accept-btn:focus {
  background: #fff;
  color: var(--gold);
}
.cookie-consent-banner .reject-btn:hover, .cookie-consent-banner .reject-btn:focus {
  background: #fffaf4;
  color: #b49a5b;
}
.cookie-consent-banner .cookie-settings-btn:hover, .cookie-consent-banner .cookie-settings-btn:focus {
  background: #f7f4ed;
  color: var(--gold);
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 13px 5px;
  }
  .cookie-consent-banner .cookie-actions {
    justify-content: flex-start;
    gap: 8px;
  }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(37,65,93,0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  min-width: 310px;
  max-width: 96vw;
  padding: 32px 28px;
  box-shadow: 0 12px 40px 0 rgba(54,44,7,0.14);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  animation: modalZoomIn .45s cubic-bezier(.52,.11,.19,.97);
}
@keyframes modalZoomIn {
  from { transform: scale(.92); opacity: 0; } 
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  font-size: 1.02rem;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #294461;
}
.cookie-category .cookie-toggle {
  appearance: none;
  width: 36px;
  height: 19px;
  border-radius: 11px;
  background: #e6e7ed;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .19s;
}
.cookie-category .cookie-toggle:checked {
  background: var(--gold);
}
.cookie-category .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 2px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px 0 rgba(180,154,91,0.05);
  transition: transform .18s;
}
.cookie-category .cookie-toggle:checked:before {
  transform: translateX(17px);
}
.cookie-category .cookie-required {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-left: 5px;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.cookie-modal-actions button {
  padding: 8px 23px;
  border-radius: 7px;
  border: 2px solid var(--gold);
  background: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--gold);
  transition: background .16s, color .16s;
}
.cookie-modal-actions .accept-btn {
  background: var(--gold);
  color: #fff;
}
.cookie-modal-actions .accept-btn:hover {
  background: #fff;
  color: var(--gold);
}
.cookie-modal-actions .close-btn:hover {
  background: #f8f5ed;
}

@media (max-width: 480px) {
  .cookie-modal-content {
    min-width: unset;
    padding: 13px 6px;
  }
}

/* === THANK YOU PAGE SPECIAL === */
.text-section .cta-primary {
  margin-top: 18px;
}

/* === MISC === */
::-webkit-scrollbar {
  width: 9px;
  background: #ece6d3;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 20px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

/* Accessibility improvements for testimonial contrast */
.testimonial-card,
.testimonial-card blockquote,
.testimonial-card div {
  color: #214265;
  background-color: #fff;
}

/* === END CSS === */
