/* ===========================
   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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  background: #FAFAFA;
  color: #131418;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  letter-spacing: 0.02em;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
ul, ol {
  list-style: none;
}


/* ===========================
   LUXURY PREMIUM THEME COLORS
   =========================== */
:root {
  --color-primary: #2054A6;
  --color-secondary: #84B93E;
  --color-accent: #FFFFFF;
  --color-premium-gold: #C6A664;
  --color-dark: #131418;
  --color-mid: #29456A;
  --color-bg-light: #FAFAFA;
  --color-bg-card: #FFFFFF;
  --color-border: #E6E0D4;
  --color-muted: #A7A699;
  --color-premium-gradient: #F1E9D3;
}

/* ===========================
   FONTS: Montserrat (Display), Roboto (Body)
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
    color: var(--color-dark);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, li, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}
em {
  font-style: italic;
}

/* ===========================
   LAYOUT CONTAINERS
   =========================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.text-section {
  max-width: 850px;
  margin-bottom: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* ===========================
   FLEXBOX-BASED SPACING
   =========================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  background: var(--color-bg-card);
  border-radius: 18px;
  box-shadow: 0 4px 22px -8px rgba(30,30,35,0.08), 0 1.5px 0 0 var(--color-premium-gold);
  border: 1px solid var(--color-border);
  flex: 1 1 270px;
  max-width: 350px;
  min-width: 230px;
  min-height: 225px;
  padding: 30px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  transition: box-shadow 0.2s;
}
.feature img {
  width: 36px;
  height: 36px;
}
.feature h3 {
  color: var(--color-primary);
  font-size: 1.15rem;
  margin: 0;
}
.feature p {
  color: var(--color-dark);
  font-size: 1rem;
  line-height: 1.6;
}
.feature:hover {
  box-shadow: 0 8px 40px -12px rgba(198,166,100,0.15), 0 2px 0 0 var(--color-premium-gold);
  border-color: var(--color-premium-gold);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-card);
  border-radius: 18px;
  box-shadow: 0 4px 18px -8px rgba(30,30,35,0.09);
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  padding: 32px 24px 26px 24px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.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 30px 22px 30px;
  margin-bottom: 20px;
  background: var(--color-bg-card);
  border-radius: 16px;
  box-shadow: 0 2px 18px -6px rgba(30,30,35,0.10);
  border: 1px solid var(--color-premium-gold);
  min-width: 260px;
  max-width: 550px;
  color: var(--color-dark);
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px -10px rgba(198,166,100,0.22);
  border-color: var(--color-primary);
}
.testimonial-card p {
  font-size: 1.13rem;
  color: var(--color-dark);
  line-height: 1.65;
}
.testimonial-card strong {
  color: var(--color-premium-gold);
  font-weight: 700;
  font-size: 1rem;
}

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

.section > .container > .content-wrapper:last-child {
  margin-bottom: 0 !important;
}

/* ===========================
   NAVIGATION & HEADER
   =========================== */
header {
  background: var(--color-bg-card);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 0;
  height: 82px;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 2px 10px -4px rgba(32,84,166,0.04);
}
header > a > img {
  height: 48px;
  margin-left: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 36px;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-dark);
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-premium-gold);
  background: rgba(32,84,166,0.06);
}

.cta-button {
  background: var(--color-premium-gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 12px 30px;
  border-radius: 28px;
  border: none;
  margin-left: 28px;
  box-shadow: 0 2px 8px -3px rgba(198,166,100,0.13);
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-shadow: 0 1px 0 rgba(81,55,0,0.05);
  transition: background 0.18s, color 0.18s, transform 0.16s;
  border: 1.5px solid var(--color-premium-gold);
}
.cta-button:hover,
.cta-button:focus {
  background: var(--color-dark);
  color: var(--color-premium-gold);
  border-color: var(--color-dark);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-right: 18px;
  margin-left: 12px;
}
.mobile-menu {
  display: none;
}

/* =============
   MOBILE MENU
   ============= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19,20,24,0.95);
  z-index: 9999;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(0.82,0.19,0.21,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
  display: flex;
}
.mobile-menu-close {
  border: none;
  background: none;
  color: var(--color-premium-gold);
  font-size: 2.25rem;
  padding: 24px 18px 10px 18px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 10001;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 36px;
  margin-top: 26px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.28rem;
  color: #fff;
  padding: 10px 0;
  border-radius: 6px;
  transition: color 0.1s, background 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-premium-gold);
  background: rgba(198,166,100,0.09);
}

/* Hide nav on mobile, show burger */
@media (max-width: 980px) {
  .main-nav {
    display: none !important;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu.open {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: #191A1C;
  color: #D6D4CC;
  padding: 0;
  border-top: 2px solid var(--color-premium-gold);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-top: 36px;
  padding-bottom: 22px;
}
footer a {
  color: #fff;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 15px;
}
.footer-nav a {
  color: #F4EDDD;
  opacity: 0.86;
  padding: 2px 0;
  transition: color 0.17s, opacity 0.17s;
}
.footer-nav a:hover {
  color: var(--color-premium-gold);
  opacity: 1;
}
.footer-contact {
  color: #D6D4CC;
  font-size: 0.95rem;
  margin-top: 8px;
  opacity: 0.83;
  line-height: 1.7;
}
footer img {
  height: 52px;
  margin-bottom: 10px;
  display: block;
}

/* ===========================
   LISTS WITH ICONS
   =========================== */
.content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: 0;
}
.content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  line-height: 1.6;
}
.content-wrapper ul li img {
  width: 26px;
  height: 26px;
}

/* ===========================
   BUTTON BASE STYLE
   =========================== */
button, .cta-button {
  outline: none;
  border: none;
}
button:focus-visible, .cta-button:focus-visible {
  box-shadow: 0 0 0 3px var(--color-premium-gold), 0 0 2px #fafafa;
}

/* ===========================
   MICROS, INTERACTIONS, ETC.
   =========================== */
a, .cta-button, .feature, .card, .testimonial-card, button {
  transition: background 0.17s, box-shadow 0.19s, border 0.15s, color 0.16s, transform 0.12s;
}


/* ===========================
   COOKIE CONSENT BANNER
   =========================== */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #23200F;
  color: #fff3e1;
  box-shadow: 0 -2px 28px -8px rgba(64,52,22,0.12);
  z-index: 10000;
  padding: 26px 18px 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  font-size: 1rem;
  border-top: 2px solid var(--color-premium-gold);
  animation: cookieSlideIn 1s cubic-bezier(0.6,0.4,0.24,1);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100px); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-content {
  flex: 1 1 320px;
  color: #fff3e1;
}
.cookie-consent-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 26px;
  border-radius: 26px;
  font-weight: 700;
  border: 1.5px solid var(--color-premium-gold);
  background: var(--color-premium-gold);
  color: #fff;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, border 0.14s;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--color-dark);
  color: var(--color-premium-gold);
}
.cookie-btn.secondary {
  background: #23200F;
  color: var(--color-premium-gold);
  border-color: var(--color-premium-gold);
}
.cookie-btn.secondary:hover,
.cookie-btn.secondary:focus {
  background: var(--color-premium-gold);
  color: #fff;
}
.cookie-btn.settings {
  background: none;
  color: var(--color-premium-gold);
  border-color: #736241;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: var(--color-premium-gold);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 11000;
  transform: translate(-50%, -50%) scale(1);
  background: #23200F;
  color: #fff3e1;
  padding: 38px 32px 32px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 60px -10px rgba(64,52,22,0.19);
  min-width: 330px;
  max-width: 95vw;
  max-height: 95vh;
  overflow-y: auto;
  animation: cookieModalOpen 0.7s cubic-bezier(0.68,0.18,0.15,1);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes cookieModalOpen {
  0% { transform: translate(-50%,56%) scale(0.7); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-premium-gold);
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-modal-category {
  padding: 14px 0 14px 0;
  border-bottom: 1px solid #3C3320;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-modal-category.essential {
  opacity: 0.85;
  font-style: italic;
}
.category-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  position: relative;
  border-radius: 14px;
  background: #594a28;
  outline: none;
  border: none;
  transition: background 0.15s;
  cursor: pointer;
}
.category-toggle:checked {
  background: var(--color-premium-gold);
}
.category-toggle:before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left 0.17s;
}
.category-toggle:checked:before {
  left: 22px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 14px;
  justify-content: flex-end;
}

@media (max-width: 680px) {
  .cookie-consent {
    flex-direction: column;
    gap: 18px;
    padding: 20px 8px 16px 8px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    min-width: 90vw;
    padding: 22px 10px 16px 10px;
  }
}


/* ===========================
   RESPONSIVENESS & FLEX
   =========================== */
@media (max-width: 1024px) {
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 850px) {
  .feature-grid, .card-container, .content-grid {
    gap: 18px;
  }
  .feature, .card {
    min-width: 200px;
    padding: 20px 13px 16px 13px;
  }
  .testimonial-card {
    padding: 15px 12px 14px 12px;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    flex-direction: row;
    align-items: center;
    padding: 0;
  }
  header > a > img {
    height: 37px;
    margin-left: 5px;
  }
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .content-wrapper, .text-section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    margin-bottom: 36px;
    padding: 30px 4px;
  }
  .feature,
  .card,
  .testimonial-card {
    min-width: 98vw;
    max-width: 100vw;
    border-radius: 12px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
    padding: 20px 10px 14px 10px;
  }
}

/* ===========================
   MISC
   =========================== */
::-webkit-scrollbar {
  width: 12px;
  background: #EFEFEF;
}
::-webkit-scrollbar-thumb {
  background: #DED3B7;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C6A664;
}
::-webkit-selection {
  background: var(--color-premium-gold);
  color: #fff;
}
::selection {
  background: var(--color-premium-gold);
  color: #fff;
}

/* ===========================
   LUXURY/PREMIUM EFFECTS
   =========================== */
.section {
  background: linear-gradient(96deg, #FFF 0%, #F9F5ED 80%);
  border-radius: 22px;
  box-shadow: 0 4px 26px -10px rgba(198,166,100,0.08);
  border: 1.5px solid #F1E9D3;
}

.feature:before {
  content: '';
  position: absolute;
  display: block;
  left: 20px;
  top: 12px;
  width: 26px;
  height: 2.5px;
  background: var(--color-premium-gold);
  border-radius: 3px;
  opacity: 0.06;
  z-index: 0;
}

.feature h3:after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-premium-gold);
  margin-top: 6px;
  border-radius: 1px;
  opacity: 0.13;
}
/* Add gentle gold underline to CTA-like links */
a.cta-button, .footer-nav a {
  box-shadow: 0 2px 0 0 var(--color-premium-gold);
}

input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1.5px solid var(--color-premium-gold);
  background: #fff;
  padding: 10px 15px;
  margin-bottom: 11px;
  outline: none;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-primary);
}

/* ===========================
   ACCESSIBILITY (CONTRAST)
   =========================== */
.testimonial-card,
.testimonial-card p,
.testimonial-card strong {
  background: #fff !important;
  color: #181817 !important;
}

.cookie-consent, .cookie-modal {
  color-scheme: dark;
}

/* ===========================
   PRINT OVERRIDE
   =========================== */
@media print {
  header, footer, .cookie-consent, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  .container { max-width: 99vw; }
  .section { box-shadow: none !important; }
}

