/* ---------------------------------------------------------
   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,
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;
  font-size: 16px;
  min-height: 100%;
}

body {
  background: #F7F6F1; /* accent */
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1A2140;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:before, *:after { box-sizing: inherit; }

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

a:focus {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}

/* ---------------------------------------------------------
   BRAND TYPOGRAPHY
--------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #24366E;
  margin-bottom: 16px;
  line-height: 1.15;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}

p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
}

strong {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #24366E;
}

.subheadline {
  font-size: 1.25rem;
  color: #534a2f;
  letter-spacing: 0.01em;
  margin-bottom: 26px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* VISUAL HIERARCHY */
.section h1, .section h2 {
  border-left: 5px solid #B89E3B;
  padding-left: 18px;
  letter-spacing: 0.01em;
}

/* ---------------------------------------------------------
   LAYOUT BASICS
--------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Section Spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-section {
  max-width: 700px;
}

/* Cards, Cards Container, Flex wrappers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  box-shadow: 0 2px 20px 0 rgba(36,54,110,0.06);
  border: 1.5px solid #E8E3D3;
  transition: box-shadow 0.26s, transform 0.26s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(36,54,110,0.14);
  transform: translateY(-2px) scale(1.015);
}
.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 {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 24px 24px 24px;
  margin-bottom: 24px;
  border-radius: 15px;
  box-shadow: 0 2px 16px 0 rgba(36,54,110,0.10);
  border: 1.5px solid #EEE7C4;
  transition: box-shadow 0.22s, border-color 0.22s;
  color: #1A2140;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(36,54,110,0.18);
  border: 1.5px solid #B89E3B;
}

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

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
  justify-content: flex-start;
}
.feature-grid li {
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 270px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 12px 0 rgba(36,54,110,0.07);
  padding: 28px 20px 22px 20px;
  border-left: 5px solid #B89E3B;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.19s, border-color 0.18s;
}
.feature-grid li:hover {
  border-left-color: #FFD700;
  box-shadow: 0 5px 16px 0 rgba(36,54,110,0.15);
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.benefit-grid li {
  flex: 1 1 240px;
  min-width: 220px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 11px;
  border-left: 4px solid #B89E3B;
  box-shadow: 0 1px 8px 0 rgba(36,54,110,0.07);
  color: #24366E;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.blog-post-preview {
  flex: 1 1 310px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(36,54,110,0.07);
  padding: 28px 22px 20px 22px;
  margin-bottom: 20px;
  border: 1.5px solid #E4E0CB;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.blog-post-preview:hover {
  border-color: #B89E3B;
  box-shadow: 0 5px 18px 0 rgba(184,158,59,0.13);
}

/* Card shadow for .section, cards, and callouts */
.section, .card, .testimonial-card, .blog-post-preview, .feature-grid li, .benefit-grid li {
  box-shadow: 0 1.5px 8px 0 rgba(36,54,110,0.05);
}

/* ---------------------------------------------
   NAVIGATION
--------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(34,44,70,0.04);
  position: relative;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 14px 18px;
  min-height: 68px;
  gap: 22px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  color: #24366E;
  font-size: 1.04rem;
  margin-right: 2px;
  transition: color 0.2s, border-bottom 0.21s;
  padding: 2px 0;
  position: relative;
}
.main-nav a:not(.btn-primary):hover,
.main-nav a:not(.btn-primary):focus {
  color: #B89E3B;
  border-bottom: 2px solid #B89E3B;
}
.main-nav .btn-primary {
  margin-left: 30px;
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #24366E;
  font-size: 2.1rem;
  padding: 4px 10px;
  cursor: pointer;
  display: none;
  z-index: 61;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover {
  color: #B89E3B;
}

/* ---------------------------------------------
   BUTTONS & INTERACTIONS
--------------------------------------------- */
.btn-primary, .main-nav .btn-primary, .btn-accent {
  background: #24366E;
  color: #FFD700;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  border: none;
  padding: 12px 30px;
  border-radius: 28px;
  font-size: 1.09rem;
  display: inline-block;
  box-shadow: 0 1.5px 8px 0 rgba(36,54,110,0.08);
  cursor: pointer;
  text-align: center;
  position: relative;
  transition: background 0.21s, color 0.21s, box-shadow 0.19s, transform 0.13s;
  outline: none;
}
.btn-primary:hover, .main-nav .btn-primary:hover, .btn-primary:focus, .btn-accent:hover, .btn-accent:focus {
  background: #B89E3B;
  color: #24366E;
  box-shadow: 0 4px 18px 0 rgba(36,54,110,0.11);
  transform: translateY(-1px) scale(1.03);
}

.btn-accent {
  background: #B89E3B;
  color: #24366E;
  font-weight: 600;
}
.btn-accent:hover,
.btn-accent:focus {
  background: #FFD700;
}

/* ---------------------------------------------
   HERO STYLES
--------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #24366E 0%, #3C538C 100%);
  color: #F7F6F1;
  padding: 66px 0 66px 0;
  border-bottom: 6px solid #B89E3B;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.hero h1, .hero h2, .hero .subheadline {
  color: #fff;
}
.hero .btn-primary {
  background: #FFD700;
  color: #24366E;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(36,54,110,0.15);
}
.hero .btn-primary:hover {
  background: #B89E3B;
  color: #fff;
}

/* ---------------------------------------------
   BLOG GRID
--------------------------------------------- */
.blog-grid {
  margin-top: 8px;
}
.blog-post-preview a {
  color: #15A66D;
  font-weight: 600;
  margin-top: 10px;
  transition: color 0.18s;
}
.blog-post-preview a:hover,
.blog-post-preview a:focus {
  color: #B89E3B;
  border-bottom: 1px solid #B89E3B;
}

/* ---------------------------------------------
   CTAs & BANNER CALLS
--------------------------------------------- */
.cta-banner, .cta-section {
  background: #24366E;
  color: #FFD700;
  text-align: center;
  border-radius: 15px;
  margin: 38px 0 0 0;
  padding: 45px 25px;
  box-shadow: 0 2px 18px 0 rgba(36,54,110,0.14);
}
.cta-banner .btn-primary, .cta-section .btn-primary {
  background: #FFD700;
  color: #24366E;
  margin-top: 18px;
}
.cta-banner .btn-primary:hover { background: #B89E3B; color: #fff; }

/* ---------------------------------------------
   STAR RATING
--------------------------------------------- */
.star-rating {
  color: #B89E3B;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.21rem;
  letter-spacing: 2px;
  margin-top: -8px;
}

/* ---------------------------------------------
   FORMS & CONTACT DETAILS
--------------------------------------------- */
.contact-details {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details p {
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #202B53;
  margin: 0 0 2px 0;
}
.contact-details img {
  width: 24px;
  height: 24px;
}
.location-map {
  margin-top: 14px;
  font-style: italic;
  font-size: 0.98rem;
  color: #534a2f;
}

/* ---------------------------------------------
   FOOTER
--------------------------------------------- */
footer {
  background: #fff;
  color: #3C538C;
  margin-top: 60px;
  border-top: 5px solid #B89E3B;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 18px 20px 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #3C538C;
  opacity: 0.98;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #B89E3B;
}
.footer-contact {
  font-size: 0.98rem;
  color: #1A2140;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.footer-branding img {
  height: 38px;
}
@media (min-width: 801px) {
  footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact { max-width: 38%; }
  .footer-nav { max-width:35%; }
  .footer-branding { max-width: 18%; }
}

/* ---------------------------------------------
   MOBILE NAVIGATION (BURGER MENU)
--------------------------------------------- */
.mobile-menu {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.56,.19,.44,1);
  box-shadow: -7px 0 30px 0 rgba(36,54,110,0.16);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 25px 25px 25px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #24366E;
  font-size: 2.1rem;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px 6px 6px;
  cursor: pointer;
  z-index: 121;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: #B89E3B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 100%;
  margin-top: 44px;
}
.mobile-nav a {
  color: #24366E;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  padding: 13px 0 13px 5px;
  border-radius: 10px;
  transition: background 0.22s, color 0.18s;
}
.mobile-nav a:hover {
  background: #F7F6F1;
  color: #B89E3B;
}
.mobile-nav a.btn-primary {
  margin-top: 18px;
  background: #FFD700;
  color: #24366E;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(36,54,110,0.08);
}
.mobile-nav a.btn-primary:hover {
  background: #B89E3B;
  color: #fff;
}

/* Show/hide nav for responsive */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-close {
    display: none;
  }
}

/* ---------------------------------------------
   COOKIE CONSENT BANNER
--------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 -3px 25px 0 rgba(36,54,110,0.13);
  border-top: 2px solid #B89E3B;
  display: flex;
  align-items: flex-start;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 24px 22px 22px;
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform 0.33s cubic-bezier(.71,1.38,.35,.84);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 7px;
}
.cookie-banner .btn-primary {
  padding: 10px 24px;
  font-size: 0.97rem;
  border-radius: 17px;
  background: #24366E;
  color: #FFD700;
}
.cookie-banner .btn-primary:hover {
  background: #B89E3B;
  color: #fff;
}
.cookie-banner .btn-accent {
  background: #B89E3B;
  color: #24366E;
  border-radius: 17px;
  padding: 10px 22px;
  font-size: 0.97rem;
  margin-left: 2px;
  transition: background 0.13s;
}
.cookie-banner .btn-accent:hover { background: #FFD700; }
.cookie-banner .btn-outline {
  background: #fff;
  color: #24366E;
  border: 1.8px solid #B89E3B;
  border-radius: 17px;
  padding: 10px 22px;
  font-size: 0.97rem;
  transition: background 0.12s, border 0.13s;
}
.cookie-banner .btn-outline:hover { background: #FFD700; border-color: #FFD700; }

/* Cookie modal (popup) */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 310;
  width: 100vw;
  height: 100vh;
  background: rgba(36,54,110,0.33);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.39s;
  pointer-events: none;
  opacity: 0;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 34px 30px 27px 32px;
  box-shadow: 0 8px 48px 0 rgba(36,54,110,0.16);
  max-width: 400px;
  min-width: 260px;
  z-index: 320;
  color: #1A2140;
}
.cookie-modal h3 {
  font-size: 1.23rem;
  color: #B89E3B;
  margin-bottom: 18px;
}
.cookie-modal .cookie-categories {
  margin: 15px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 500;
  color: #24366E;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal input[type="checkbox"]:disabled + span {
  color: #bababa;
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 25px;
}
.cookie-modal .btn-primary, .cookie-modal .btn-outline, .cookie-modal .btn-accent {
  padding: 9px 18px;
  font-size: 1.01rem;
}

/* ---------------------------------------------
   RESPONSIVE DESIGN (Mobile-first)
--------------------------------------------- */
@media (max-width: 1200px) {
  .container { max-width: 1002px; }
}
@media (max-width: 940px) {
  .container { max-width: 98vw; }
  .feature-grid, .blog-grid, .content-grid { gap: 20px; }
}
@media (max-width: 820px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .card, .blog-post-preview, .testimonial-card { padding: 22px 13px; }
}
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  .content-wrapper { gap: 19px; }
  .section { padding: 30px 9px; }
  .hero { padding: 44px 0; }
  .main-nav { display: none; }

  .feature-grid, .blog-grid, .benefit-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  .testimonial-card, .card, .blog-post-preview, .feature-grid li, .benefit-grid li {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
  .footer-nav, .footer-contact, .footer-branding {
    max-width: 100% !important;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 560px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.13rem; }
  .card, .testimonial-card, .blog-post-preview { padding: 13px 7px; }
  .hero { padding: 24px 0; }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 23px 12px 15px 12px;
  }
}
@media (max-width: 420px) {
  .hero { padding: 12px 0; }
  .card, .testimonial-card { padding: 8px 0; }
  .footer-branding img { height: 26px; }
}

/* UTILITIES & EFFECTS */
.rounded {
  border-radius: 15px !important;
}
.shadow-gold {
  box-shadow: 0 8px 48px 0 rgba(184,158,59,0.16);
}
/* Gold border embellishment */
.gold-accent {
  border-left: 5px solid #B89E3B !important;
}
.gold-text {
  color: #B89E3B !important;
}

/* ---------------------------------------------
   LUXURY PREMIUM DETAILS
--------------------------------------------- */
hr {
  border: none;
  border-top: 2px solid #B89E3B;
  margin: 34px 0;
}

/* Callout for info */
.info-callout {
  background: #fffde8;
  border-left: 6px solid #B89E3B;
  border-radius: 8px;
  color: #24366E;
  padding: 18px 20px;
  margin: 20px 0;
}

/* Subtle animation for attention elements */
@keyframes gold-fade {
  0% { background: #fff6cf; }
  50% { background: #FFD700; }
  100% { background: #fff6cf; }
}
.animate-gold {
  animation: gold-fade 2.7s ease-in-out infinite;
}

/* ---------------------------------------------
   MISC (spacing)
--------------------------------------------- */
.mt-32 { margin-top: 32px; }
.mt-24 { margin-top: 24px; }
.mt-18 { margin-top: 18px; }
.mb-32 { margin-bottom: 32px; }
.mb-24 { margin-bottom: 24px; }
.mb-18 { margin-bottom: 18px; }
.mb-7 { margin-bottom: 7px; }

/* END OF COMPREHENSIVE PREMIUM LUXURY CSS */
