/* ========= CSS RESET & NORMALIZE (Mobile First) ========= */
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;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #f9f8f6;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
  outline: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}
button {
  cursor: pointer;
}

/* ========= FONT IMPORTS ========= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500&display=swap');

/* ========= CSS VARIABLES ========= */
:root {
  --lux-primary: #203864;
  --lux-secondary: #E74C3C;
  --lux-accent: #F1EDEE;
  --lux-gold: #B9975B;
  --lux-dark: #1A2436;
  --lux-black: #212121;
  --lux-white: #fff;
  --lux-gray-light: #f6f5f1;
  --lux-gray-mid: #b4bec9;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ========= LUXURY PREMIUM BASE ========= */
body {
  background: var(--lux-accent);
  color: var(--lux-dark);
  font-size: 1rem;
  font-family: var(--font-body);
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
section {
  background: var(--lux-white);
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(32, 56, 100, 0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* ========= HEADER/NAVIGATION ========= */
header {
  background: var(--lux-white);
  border-bottom: 1.5px solid var(--lux-gold);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 76px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: none;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  padding: 4px 6px;
  color: var(--lux-dark);
  position: relative;
  transition: color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--lux-gold);
}
.btn-primary {
  display: inline-block;
  padding: 12px 36px;
  background: var(--lux-gold);
  color: var(--lux-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(185,151,91, 0.16);
  letter-spacing: 0.01em;
  border: 1.5px solid var(--lux-gold);
  transition: 
    background 0.22s cubic-bezier(.19,1,.22,1),
    color 0.22s cubic-bezier(.19,1,.22,1),
    box-shadow 0.22s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--lux-dark);
  color: var(--lux-gold);
  border: 1.5px solid var(--lux-gold);
  box-shadow: 0 6px 24px rgba(185,151,91, 0.16);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: block;
  font-size: 2rem;
  color: var(--lux-gold);
  background: none;
  border: none;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.15s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--lux-gold);
  color: var(--lux-white);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: var(--lux-dark);
  box-shadow: -6px 0 24px 0 rgba(32,56,100,0.08);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(.76,0,.24,1), opacity 0.22s;
  transform: translateX(0);
}
.mobile-menu.open {
  left: 0;
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--lux-gold);
  font-size: 2.2rem;
  margin: 24px 28px 0 0;
  border-radius: 0.5em;
  border: none;
  transition: background 0.12s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--lux-gold);
  color: var(--lux-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 60px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: var(--lux-white);
  font-family: var(--font-display);
  font-size: 1.31rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  border-radius: 10px;
  padding: 8px 16px;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--lux-gold);
  color: var(--lux-dark);
}

/* DESKTOP NAVIGATION */
@media (min-width: 960px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .btn-primary {
    margin-left: 12px;
  }
}

/* ========= HERO & HEADINGS ========= */
h1, .hero-title {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--lux-primary);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
h2 {
  font-family: var(--font-display);
  color: var(--lux-dark);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h3 {
  font-family: var(--font-display);
  color: var(--lux-gold);
  font-size: 1.23rem;
  font-weight: 700;
  margin-bottom: 9px;
}
h4, h5, h6 {
  font-family: var(--font-body);
}
.text-section h3 {
  color: var(--lux-gold);
  font-size: 1.14rem;
  margin-top: 18px;
}
p {
  font-size: 1.14rem;
  color: #23282C;
  margin-bottom: 14px;
  line-height: 1.6;
}
strong {
  font-weight: 700;
}

/* ========= SECTION, CARD, FLEX PATTERNS ========= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--lux-white);
  border-radius: 22px;
  box-shadow: 0 4px 18px 0 rgba(32,56,100,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1.5px solid var(--lux-accent);
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 15px 36px 0 rgba(185,151,91,0.14);
  transform: translateY(-2px) scale(1.012);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f9f8f6;
  border-radius: 16px;
  border-left: 5px solid var(--lux-gold);
  box-shadow: 0 2.5px 12px rgba(32,56,100,0.07);
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
  min-width: 0;
}
.testimonial-card p {
  color: var(--lux-black);
  font-size: 1.15rem;
  flex: 1 1 auto;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-info {
  font-size: 1.03rem;
  color: var(--lux-primary);
  font-weight: 500;
  margin-left: 12px;
}

.partner-logos {
  display: flex;
  gap: 36px;
  align-items: center;
  margin-top: 24px;
}
.partner-logos img {
  height: 36px;
  filter: grayscale(0.25) brightness(0.98);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--lux-accent);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(185,151,91,0.06);
  padding: 20px;
  min-width: 185px;
}

/* ========= ICONS INSIDE LISTS/FEATURES ========= */
ul li img {
  display: inline-block;
  height: 32px;
  width: 32px;
  margin-bottom: 7px;
  margin-right: 12px;
  vertical-align: middle;
}
ul > li > strong, ul > li > h3 {
  display: block;
}
ul > li {
  margin-bottom: 20px;
  font-size: 1.09rem;
  color: #23282c;
}

/* ========= CONTENT STRUCTURE PADDING ========= */
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul {
  margin-top: 5px;
  margin-bottom: 12px;
  padding-left: 0;
  gap: 13px;
}
.text-section ul li {
  padding-left: 0;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #41474e;
}
.text-section a {
  color: var(--lux-secondary);
  text-decoration: underline;
}
.text-section a:hover,
.text-section a:focus {
  color: var(--lux-gold);
}

/* ========= FOOTER ========= */
footer {
  background: var(--lux-white);
  border-top: 1.5px solid var(--lux-gold);
  margin-top: 48px;
  padding: 28px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.footer-nav a {
  color: var(--lux-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.99rem;
  padding: 3px 10px;
  border-radius: 6px;
  transition: background 0.15s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--lux-gold);
  color: var(--lux-white);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-brand img {
  height: 32px;
  width: auto;
}
.footer-brand span {
  color: var(--lux-gray-mid);
  font-size: 0.92rem;
}

/* ========= HOVER & MICRO-INTERACTIONS ========= */
a, .btn-primary, button, .main-nav a, .mobile-nav a {
  transition: background 0.16s, color 0.18s, box-shadow 0.17s, border 0.16s;
}

/* ========= RESPONSIVE DESIGN ========= */
@media (max-width: 960px) {
  .main-nav, .btn-primary {
    display: none;
  }
  header .container {
    gap: 8px;
    height: 64px;
  }
  .logo img {
    height: 36px;
  }
}
@media (max-width: 768px) {
  h1, .hero-title { font-size: 1.7rem; }
  h2 { font-size: 1.32rem; }
  section, .section { padding: 28px 8px; }
  .container { max-width: 100vw; padding: 0 7px; }
  .content-grid, .card-container, .partner-logos, .footer-nav, .footer-brand {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 14px;
  }
  .mobile-nav {
    margin-top: 30px;
    padding-left: 18px;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  .footer-nav { gap: 9px !important; }
  .footer-brand { gap: 7px !important; }
  .logo img { height: 24px; }
  .footer-brand img { height: 22px; }
  section, .section { padding: 17px 2px; }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: var(--lux-dark);
  color: var(--lux-white);
  box-shadow: 0 -8px 36px rgba(32,56,100,0.13);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 20px 12px 22px 12px;
  font-size: 1.07rem;
  animation: fadeInUp 0.9s cubic-bezier(.26,1,.31,1);
}
.cookie-consent-banner p {
  color: var(--lux-white);
  margin-bottom: 8px;
}
.cookie-consent-actions {
  display: flex;
  gap: 15px;
  margin-top: 7px;
}
.cookie-btn {
  background: var(--lux-gold);
  color: var(--lux-white);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 18px;
  padding: 8px 26px;
  border: none;
  outline: none;
  font-size: 1rem;
  margin-right: 7px;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--lux-gold);
  border: 1.5px solid var(--lux-gold);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--lux-white);
  color: var(--lux-gold);
  border: 1.5px solid var(--lux-gold);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--lux-gold);
  color: var(--lux-white);
}

/* Cookie Modal */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3000;
  align-items: center;
  justify-content: center;
  background: rgba(32,56,100, 0.50);
  animation: fadeIn 0.37s;
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: var(--lux-white);
  border-radius: 22px;
  box-shadow: 0 7px 30px #20386440;
  padding: 38px 26px 30px 26px;
  max-width: 98vw;
  min-width: 280px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: flex-start;
  animation: fadeInUp 0.41s cubic-bezier(.28,1,.41,1);
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.22rem;
  color: var(--lux-primary);
  margin-bottom: 12px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
}
.cookie-category label {
  font-weight: 500;
  color: var(--lux-dark);
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--lux-gold);
  border-radius: 3px;
  border: 1.5px solid var(--lux-dark);
  margin-right: 7px;
}
.cookie-category input[disabled], .cookie-category input:disabled {
  accent-color: var(--lux-gold);
  background: var(--lux-gray-mid);
  opacity: 0.6;
}
.cookie-modal-close {
  position: absolute;
  top: 19px;
  right: 23px;
  background: transparent;
  color: var(--lux-gold);
  font-size: 1.5rem;
  border: none;
  border-radius: 50%;
  transition: background 0.13s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  background: var(--lux-gold);
  color: var(--lux-white);
}
.cookie-modal-footer {
  margin-top: 14px;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width:520px) {
  .cookie-modal-content { padding: 17px 6vw 14px 6vw; min-width: 0; }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ========== UTILITIES ========== */
.lux-divider {
  width: 60px;
  height: 4px;
  background: var(--lux-gold);
  border-radius: 2px;
  margin: 14px 0;
}

/* ========== CUSTOM SCROLLBAR ========== */
body::-webkit-scrollbar {
  width: 10px;
  background: var(--lux-white);
}
body::-webkit-scrollbar-thumb {
  background: var(--lux-gold);
  border-radius: 14px;
}

/* ========== HTML ELEMENTS OVERRIDES ========== */
hr {
  border: none;
  border-top: 1.5px solid var(--lux-gold);
  margin: 22px 0;
}

/* ========== FOCUS & ACCESSIBILITY ========== */
a:focus, .btn-primary:focus, button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--lux-secondary);
  outline-offset: 1px;
}

/* ========== FORM ELEMENTS (IF NEEDED) ========== */
input, select, textarea {
  border-radius: 7px;
  padding: 10px 14px;
  background: var(--lux-accent);
  border: 1.5px solid var(--lux-gold);
  font-size: 1rem;
  color: var(--lux-dark);
  margin-bottom: 14px;
}
input:focus, textarea:focus {
  border-color: var(--lux-gold);
}

/* ========== OVERLAY Z-INDEX ========== */
.mobile-menu,
#cookie-modal,
.cookie-consent-banner {
  z-index:1100;
}

/* ========== NO ABSOLUTE FOR CONTENT FLEX ITEMS ========== */
/* Only decorative elements can be absolutely positioned if ever used. */