/* ----------------------------------------------------------
  CSS RESET & BASE TYPOGRAPHY FOR LUXURY/PREMIUM EXPERIENCE
------------------------------------------------------------ */
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, main, 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; height: 100%; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #2B2F38;
  background-color: #F6F7FB;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: #24507A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #CFAE53; }

/* ----------------------------------------------------------
  BRAND VARIABLES (FALLBACKS SUPPORTED)
------------------------------------------------------------ */
:root {
  --lux-primary: #24507A;
  --lux-secondary: #F6F7FB;
  --lux-accent: #FFD65A;
  --lux-accent-dark: #CFAE53;
  --lux-premium-text: #2B2F38;
  --lux-subtle-text: #7A7B84;
  --lux-card-bg: #fff;
  --lux-border: #E5E8EF;
  --lux-shadow: 0 3px 24px rgba(36, 80, 122, 0.06);
  --lux-radius: 18px;
  --lux-radius-sm: 9px;
  --lux-shadow-btn: 0 2px 8px rgba(36,80,122,0.05);
}

/* ----------------------------------------------------------
  FONTS (PREMIUM MODERN COMBINATION)
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--lux-primary);
  letter-spacing: -0.01em;
}
h1   { font-size: 2rem; line-height: 1.18; margin-bottom: 20px; }
h2   { font-size: 1.5rem; margin-bottom: 16px; }
h3   { font-size: 1.125rem; margin-bottom: 12px; }
@media (min-width: 600px) { h1 { font-size: 2.5rem; } h2 { font-size: 2rem; } }
@media (min-width: 1024px) { h1 { font-size: 3rem; } h2 { font-size: 2.25rem; } }

p, li, td, th {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--lux-premium-text);
  margin-bottom: 0.8em;
}
strong { font-weight: 700; }
ul, ol { margin-left: 1.4em; margin-bottom: 1.5em; }
ul li, ol li { margin-bottom: 0.5em; }

hr {
  border: none;
  border-top: 1px solid var(--lux-border);
  margin: 2rem 0;
}

/* ----------------------------------------------------------
  CONTAINER, SECTION AND LAYOUTS (ONLY FLEXBOX)
------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.text-section {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--lux-card-bg);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow);
  padding: 32px 30px 24px 30px;
  position: relative;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 8px 34px rgba(36,80,122,0.13);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1.5px solid var(--lux-border);
  border-radius: var(--lux-radius-sm);
  box-shadow: 0 4px 22px rgba(36,80,122,0.08);
  min-width: 240px;
  max-width: 385px;
  margin-bottom: 20px;
  margin-right: 20px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  border-color: var(--lux-accent-dark);
  box-shadow: 0 8px 40px rgba(36,80,122,0.16);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 20px;
  border-radius: var(--lux-radius-sm);
  box-shadow: 0 2px 8px rgba(36,80,122,0.04);
  border: 1.5px solid var(--lux-border);
  min-width: 210px;
}

/* Card-grid for pricing, testimonials, etc */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* Prevent overlap, add white space */
section, .section, .content-wrapper, .card, .testimonial-card {
  margin-bottom: 20px;
}

/* ----------------------------------------------------------
  HEADER/NAVIGATION: Premium & Responsive
------------------------------------------------------------ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1.5px 14px rgba(36,80,122,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 24px;
  min-height: 70px;
  z-index: 100;
}
header > a img {
  height: 46px;
  margin: 16px 0;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  color: var(--lux-primary);
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--lux-accent-dark);
}

.cta-header {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #fff;
  background: var(--lux-primary);
  padding: 9px 26px 10px 26px;
  border-radius: 26px;
  box-shadow: var(--lux-shadow-btn);
  letter-spacing: 0.04em;
  margin-left: 34px;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border: 2px solid var(--lux-primary);
  position: relative;
}
.cta-header:hover, .cta-header:focus {
  background: var(--lux-accent);
  color: var(--lux-primary);
  box-shadow: 0 3px 16px rgba(205,162,62, 0.09);
  border-color: var(--lux-accent);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--lux-primary);
  font-size: 2.1rem;
  cursor: pointer;
  display: none;
  margin-left: 24px;
  z-index: 500;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  background: rgba(36,80,122,0.07);
  outline: none;
}

/* ----------------------------------------------------------
  MOBILE NAVIGATION (BURGER MENU)
------------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,80,122,0.90);
  transition: transform 0.38s cubic-bezier(.47,1.64,.41,.8);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 0;
  transform: translateX(100%);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.42s cubic-bezier(.47,1.64,.41,.8), opacity 0.18s;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--lux-accent);
  font-size: 2.5rem;
  cursor: pointer;
  margin: 30px 30px 0 0;
  z-index: 10002;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(255,255,255,0.10);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-end;
  margin: 48px 38px 0 0;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.42rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 11px 22px 11px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.16s;
  margin-right: 10px;
  display: block;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--lux-accent);
  color: var(--lux-primary);
}

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .cta-header { margin-left: 18px; }
}
@media (max-width: 950px) {
  header { flex-wrap: wrap; }
  .main-nav { gap: 10px; }
}
@media (max-width: 750px) {
  .main-nav, .cta-header {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header { padding: 0 10px; }
  header > a img { height: 38px; }
}
@media (max-width: 426px) {
  .mobile-nav a {
    font-size: 1.13rem;
    padding: 12px 12px 12px 0;
  }
  .mobile-menu-close { font-size: 2rem; margin: 22px 14px 0 0; }
}

/* ----------------------------------------------------------
  LUXURY HERO & SECTION CTAs
------------------------------------------------------------ */
.cta-main {
  display: inline-block;
  background: linear-gradient(93deg, #FFD65A 10%, #CFAE53 95%);
  color: var(--lux-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 17px 48px;
  border-radius: 30px;
  box-shadow: 0 3px 18px rgba(205,162,62, 0.17);
  margin-top: 18px;
  border: none;
  outline: none;
  transition: background 0.22s, color 0.17s, box-shadow 0.14s;
  text-shadow: none;
  letter-spacing: 0.03em;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.cta-main:hover, .cta-main:focus {
  background: linear-gradient(93deg, #CFAE53 25%, #FFD65A 85%);
  color: #21263B;
  box-shadow: 0 12px 28px rgba(205,162,62, 0.16);
}

@media (max-width: 800px) {
  .cta-main { padding: 16px 30px; font-size: 1rem; }
  section, .section {
    padding: 28px 5px;
  }
}

/* ----------------------------------------------------------
  TABLES (Pricing)
------------------------------------------------------------ */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 1px 10px rgba(63,63,97,0.04);
  border-radius: var(--lux-radius-sm);
  margin-bottom: 30px;
}
thead th {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  background: var(--lux-secondary);
  color: var(--lux-primary);
  border-bottom: 2px solid var(--lux-border);
  padding: 16px 10px;
}
tbody td {
  padding: 14px 10px;
  color: var(--lux-premium-text);
  border-bottom: 1px solid var(--lux-border);
}
tbody tr:last-child td { border-bottom: none; }

/* ----------------------------------------------------------
  ICONS in LISTS (Benefit/Feature Bullets)
------------------------------------------------------------ */
ul li img, .feature-item img {
  width: 26px;
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
}
ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ----------------------------------------------------------
  TESTIMONIAL MINI STARS ROW (Temoignages)
------------------------------------------------------------ */
.testimonial-card div {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-card span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  color: var(--lux-primary);
}
.testimonial-card p {
  color: #28282C;
  font-size: 1.07rem;
}

/* ----------------------------------------------------------
  FOOTER (Premium, Clear)
------------------------------------------------------------ */
footer {
  width: 100%;
  background: #fff;
  border-top: 2px solid var(--lux-border);
  padding: 34px 0 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 40px;
  font-size: 0.99rem;
  z-index: 50;
  position: relative;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--lux-subtle-text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--lux-primary);
}
.footer-contact {
  text-align: center;
  color: var(--lux-subtle-text);
}
.footer-contact a {
  color: var(--lux-accent-dark);
}
footer img {
  margin-bottom: 2px;
  width: 46px; height: auto;
  opacity: 0.94;
}

@media (max-width:650px) {
  .footer-nav { gap: 10px; justify-content: center; }
}

/* ----------------------------------------------------------
  COOKIE CONSENT BANNER & MODAL (PREMIUM)
------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 15000;
  background: #fff6e2;
  color: #372A15;
  box-shadow: 0 -3px 20px rgba(205,162,62, 0.05);
  border-top: 2.5px solid var(--lux-accent);
  padding: 24px 20px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 1rem;
  animation: cookiebannerin 0.56s cubic-bezier(.44,1.35,.47,.91) 1;
}
@keyframes cookiebannerin {
  0%   {transform: translateY(120%); opacity:0;}
  100% {transform: none; opacity:1;}
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  margin-left: 6px;
  cursor: pointer;
  transition: background 0.19s, color 0.17s, box-shadow 0.15s;
  margin-right: 0;
  outline: none;
  background: var(--lux-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(36,80,122,0.04);
}
.cookie-btn.cookie-btn-accept {
  background: linear-gradient(93deg, #FFD65A 10%, #CFAE53 97%);
  color: var(--lux-primary);
  border: 2px solid #CFAE53;
  box-shadow: 0 6px 24px rgba(205,162,62, 0.09);
}
.cookie-btn.cookie-btn-accept:hover, .cookie-btn.cookie-btn-accept:focus {
  background: linear-gradient(93deg, #CFAE53 45%, #FFD65A 98%);
  color: #1c242e;
}
.cookie-btn.cookie-btn-reject {
  background: var(--lux-primary);
  color: #fff;
  border: 2px solid var(--lux-primary);
}
.cookie-btn.cookie-btn-reject:hover, .cookie-btn.cookie-btn-reject:focus {
  background: #1B3450;
}
.cookie-btn.cookie-btn-settings {
  background: #fff;
  color: #775a15;
  border: 2px solid #FFD65A;
}
.cookie-btn.cookie-btn-settings:hover, .cookie-btn.cookie-btn-settings:focus {
  background: #FFD65A;
  color: #1c242e;
}

@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 13px; padding: 16px 8px; }
  .cookie-banner .cookie-banner-actions { gap: 9px; }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(63,73,92,0.28);
  z-index: 15010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 12px 48px rgba(36,80,122,0.15);
  padding: 32px 26px 26px 26px;
  width: 98%;
  max-width: 420px;
  font-size: 1.03rem;
  color: #2B2F38;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookiemodalin 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookiemodalin {
  0% { transform: scale(0.7) translateY(33px); opacity:0; }
  100% { transform: none; opacity:1; }
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--lux-primary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0.9em;
}
.cookie-category label {
  font-weight: 600;
  color: #2B2F38;
  font-size: 1.05rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--lux-accent-dark);
  width: 21px; height: 21px;
}
.cookie-category .cookie-essential {
  font-weight: 700;
  color: var(--lux-premium-text);
}
.cookie-modal-actions {
  display: flex;
  gap: 9px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 26px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #baa330;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #fff6e2;
  border-radius: 22px;
}

/* ----------------------------------------------------------
  FORM ELEMENTS (FORMS, BUTTONS, INPUT)
------------------------------------------------------------ */
input, textarea, select {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 13px 14px;
  background: #F6F7FB;
  border: 1.5px solid var(--lux-border);
  border-radius: 10px;
  color: #2B2F38;
  margin-bottom: 16px;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--lux-accent-dark);
  box-shadow: 0 0 0 2px #ffe6ba;
}
button:focus {
  outline: 2px solid var(--lux-accent-dark);
  outline-offset: 1px;
}

/* ----------------------------------------------------------
  RESPONSIVE LAYOUTS & FLEXBOX ADAPTATION
------------------------------------------------------------ */
@media (max-width: 900px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .card { padding: 18px 10px 14px 12px; }
}
@media (max-width: 950px) {
  .card-container, .card-grid, .content-grid { gap: 14px; }
  .testimonial-card { margin-right: 8px; }
}
@media (max-width: 850px) {
  .content-grid { flex-direction: column; gap: 18px; }
  .card-container { flex-direction: column; gap: 18px; }
}
@media (max-width: 600px) {
  .section { padding: 17px 3px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.22rem; }
}
@media (max-width: 720px) {
  .text-image-section, .content-wrapper { flex-direction: column !important; }
  .content-wrapper, .text-section {
    align-items: flex-start;
    gap: 10px;
  }
  .testimonial-card { min-width: auto; max-width: 100%; width: 100%; }
}

/* ----------------------------------------------------------
  DETAILS, HINTS, SUBTLE EFFECTS
------------------------------------------------------------ */
.section, section .container {
  border-radius: var(--lux-radius-sm);
}
.card, .testimonial-card, .feature-item, table {
  transition: box-shadow 0.19s, border-color 0.11s;
}
.card::before, .testimonial-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px; left: 3px;
  width: 40px; height: 3px;
  background: linear-gradient(90deg, #FFD65A 0%, #24507A 85%);
  border-radius: 3px;
  opacity: 0.10;
  z-index: 0;
}
.testimonial-card::before {
  top:6px; left: 7px; width: 36px; opacity: 0.12;
}

/* ----------------------------------------------------------
  MISC: BREADCRUMB, ALERT, HINT CLASSES
------------------------------------------------------------ */
.breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 0.97rem;
  color: var(--lux-subtle-text);
  margin-bottom: 18px;
}
.alert {
  padding: 14px 20px;
  background: #fffce7;
  border-radius: 11px;
  border: 1.5px solid #ffe1a2;
  font-size: 1rem;
  color: #5A4601;
  margin-bottom: 18px;
}

/* ----------------------------------------------------------
  EXTRA ACCESSIBILITY & PRINT
------------------------------------------------------------ */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .section, section, .container { padding: 0; margin:0; }
  body { background: #fff; color: #1B1B1B; }
}

/* ----------------------------------------------------------
  HOVER/FOCUS ACCESSIBILITY & MICRO-INTERACTIONS
------------------------------------------------------------ */
button, .cta-header, .cta-main, .cookie-btn {
  cursor: pointer;
}
button:active, .cta-header:active, .cta-main:active, .cookie-btn:active {
  transform: translateY(1.5px) scale(0.986);
  opacity: 0.87;
}
main a:not(.cta-main):not(.cta-header):not(.cookie-btn) {
  text-decoration: underline dotted var(--lux-accent-dark);
  text-underline-position: under;
  transition: color 0.16s, text-decoration-color 0.16s;
}
main a:not(.cta-main):not(.cta-header):hover, main a:not(.cta-main):not(.cta-header):focus {
  color: var(--lux-accent-dark);
  text-decoration-color: #FFD65A;
}

/* ----------------------------------------------------------
  SCROLLBAR (For Modern Browsers)
------------------------------------------------------------ */
body::-webkit-scrollbar {
  width: 12px;
  background: #edecec;
}
body::-webkit-scrollbar-thumb {
  background: #DCC56D;
  border-radius: 9px;
}

/* ----------------------------------------------------------
  HIDE ELEMENTS UTILITY CLASS
------------------------------------------------------------ */
.hide, .hidden { display: none !important; }

/* ----------------------------------------------------------
  END OF STYLE.CSS
------------------------------------------------------------ */
