/* --- 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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Arial', 'Helvetica Neue', Arial, sans-serif;
  background: #F9FAFB;
  color: #1A3858;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- LUXURY PREMIUM BRANDING --- */
:root {
  --primary: #1A3858;
  --secondary: #E5E9F0;
  --accent: #FBB040;
  --dark: #151B26;
  --light: #FFFFFF;
  --card-bg: #FAFBFD;
  --border: #DBDDE5;
  --shadow: 0 8px 32px rgba(26,56,88,0.13), 0 1.5px 5px rgba(251,176,64,0.04);
  --gold: #FBB040;
  --grey: #808995;
  --radius: 12px;
}

/* Font imports (Montserrat for display) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
h1, h2, h3, .cta, .primary {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 18px; line-height: 1.15; }
h2 { font-size: 1.5rem;  font-weight: 600; margin-bottom: 14px; }
h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 8px; }
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
p {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 1rem;
}
strong, b {
  font-weight: 600;
  color: var(--dark);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: var(--accent);
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

/* --- HEADER --- */
header {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px 0 rgba(26,56,88,0.03);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
}
.logo img {
  height: 44px;
  margin-right: 8px;
}

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1rem;
  padding: 8px 0;
  font-weight: 500;
  position: relative;
  transition: color .18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--accent);
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.22s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
  margin-top: 3px;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}

/* CTA BUTTONS */
.cta, .primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--light);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 14px 34px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(26,56,88,.07);
  transition: background .18s, box-shadow .2s, color .12s, transform .14s;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.01em;
  position: relative;
  margin-top: 8px;
}
.cta.primary {
  background: var(--primary);
  color: var(--light);
  border: 2px solid var(--accent);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 4px 18px rgba(251,176,64,0.14);
  transform: translateY(-2px) scale(1.025);
}
.cta.secondary {
  background: var(--light);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--accent);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--light);
  color: var(--primary);
  font-size: 2.2rem;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  transition: background .15s;
  margin-left: 8px;
  z-index: 1202;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--secondary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(26, 56, 88, 0.99);
  z-index: 1200;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity .35s cubic-bezier(.7,0,.3,1), transform .4s cubic-bezier(.7,0,.3,1);
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: var(--accent);
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 20px 22px 0 0;
  cursor: pointer;
  z-index: 1300;
  transition: color .16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff8dc;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  gap: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--light);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 18px 0;
  transition: color .16s, background .15s;
  border-radius: 8px;
  width: 90vw;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: rgba(235,203,111,0.10);
}

/* Main navigation mobile behavior */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* --- MAIN STRUCTURE & SPACING --- */
main {
  margin-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* --- CARD CONTAINER, CARDS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* --- FLEXBOX UTILITIES --- */
.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 28px;
  background: #fffbe9;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1.5px solid #f5e2a3;
  box-shadow: 0 2px 12px 0 rgba(251,176,64,0.11);
  color: #272b2f;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  position: relative;
}
.testimonial-card p {
  color: #25282c;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 0.99rem;
  font-weight: 500;
  margin-left: 10px;
}

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

/* --- LISTS & TABLES --- */
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 1rem;
  line-height: 1.7;
}
li {
  margin-bottom: 8px;
  padding-left: 2px;
}
ul > li {
  position: relative;
  padding-left: 22px;
}
ul > li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
ol > li {
  padding-left: 0px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(26,56,88,0.07);
  margin: 22px 0 30px 0;
  overflow: hidden;
}
thead th {
  background: var(--primary);
  color: var(--light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-align: left;
  padding: 14px 10px 14px 18px;
  border: none;
}
tbody td {
  border-bottom: 1px solid #ece5cf;
  padding: 13px 10px 13px 18px;
  color: var(--primary);
  font-size: 1rem;
}
tfoot td {
  padding: 11px 10px;
}
table tr:last-child td {
  border-bottom: none;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--light);
  padding-top: 38px;
  padding-bottom: 38px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -3px 16px rgba(26,56,88,0.04);
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 4px 0;
  transition: color .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fffbe4;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  color: #E5E9F0;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .98rem;
}
.footer-contact img {
  height: 18px;
  width: 18px;
}

/* --- FORMS, FAQ, DT/DD --- */
dl {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 24px;
}
dt {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: var(--primary);
}
dd {
  margin-bottom: 12px;
  padding-left: 5px;
  color: var(--grey);
  font-size: 1rem;
}

/* --- CONTACT INFOS --- */
.contact-infos {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.contact-infos li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--primary);
}
.contact-infos img {
  width: 22px;
}
.contact-infos a {
  color: var(--accent);
  word-break: break-all;
  margin-left: 2px;
  font-weight: 500;
}
.contact-infos a:hover, .contact-infos a:focus {
  color: var(--primary);
}

/* --- LUXURY ACCENTS AND DETAILS --- */
section h2 {
  border-left: 5px solid var(--gold);
  padding-left: 17px;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 700;
}
section h3 {
  color: var(--primary);
  font-weight: 600;
}

/* --- BUTTONS, INTERACTIONS --- */
button, input[type="button"], input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  border-radius: var(--radius);
  border: none;
  background: var(--primary);
  color: var(--light);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 30px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(26,56,88,0.08);
  transition: background .16s, color .14s, transform .15s;
}
button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.035);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  header .container {
    gap: 10px;
  }
  .footer-nav {
    gap: 15px;
  }
}
@media (max-width: 880px) {
  .container {
    max-width: 98vw;
    padding-left: 14px;
    padding-right: 14px;
  }

  section, .section {
    padding: 28px 8px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    min-height: 60px;
  }
  .logo img {
    height: 38px;
  }
  .footer-nav {
    gap: 9px;
    font-size: .92rem;
  }
  .content-wrapper {
    gap: 12px;
  }
  .testimonial-card {
    padding: 14px 10px;
    font-size: .98rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  table thead th, table tbody td {
    font-size: .95rem;
    padding-left: 8px;
    padding-right: 8px;
  }
  table {
    font-size: .95rem;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: .96rem; }
  .cta, .primary {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .testimonial-card {
    font-size: .92rem;
  }
}

/* --- MICRO-INTERACTIONS / TRANSITIONS --- */
.card, .testimonial-card, .cta, .primary, .main-nav a, .footer-nav a {
  transition: box-shadow .17s, background .16s, color .17s, border-color .15s, transform .13s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(26,56,88,0.19);
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.02);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe8;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -2px 14px rgba(251,176,64,0.11);
  color: var(--primary);
  font-size: 1rem;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 18px 20px 24px;
  animation: slideUpCookie .6s cubic-bezier(.73,0,.22,1);
}
@keyframes slideUpCookie {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 1 1 0%;
  margin-right: 18px;
  color: #62521a;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button, .cookie-banner .cta {
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 18px;
  cursor: pointer;
  transition: background .15s, color .12s, box-shadow .14s;
  min-width: 110px;
}
.cookie-banner .accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--primary);
  color: var(--light);
}
.cookie-banner .reject {
  background: #edeae1;
  color: #4e493a;
  border: 1px solid #e5c469;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--primary);
  color: var(--light);
  border: 1px solid var(--accent);
}
.cookie-banner .settings {
  background: var(--primary);
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--accent);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

/* --- COOKIE MODAL POPUP --- */
.cookie-modal {
  position: fixed;
  z-index: 1400;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26, 56, 88, 0.73);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .36s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fffbe8;
  padding: 36px 30px 30px 30px;
  border-radius: 18px;
  box-shadow: 0 4px 42px rgba(251,176,64,0.22), 0 2px 10px rgba(26,56,88,0.09);
  max-width: 420px;
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: fadeInModal .5s;
}
@keyframes fadeInModal {
  from { transform: scale(0.89) translateY(90px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  padding-left: 0;
  border-left: none;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-modal .toggle {
  width: 46px;
  height: 24px;
  border-radius: 12px;
  background: #ede9da;
  position: relative;
  transition: background .18s;
  margin-left: 4px;
  margin-right: 10px;
}
.cookie-modal .toggle.on {
  background: var(--accent);
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  transition: left .17s, background .12s;
}
.cookie-modal .toggle.on .cookie-modal .toggle-slider {
  left: 25px;
  background: var(--gold);
}
.cookie-modal .modal-actions {
  margin-top: 16px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .modal-close {
  align-self: flex-end;
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 1.7rem;
  padding: 4px 7px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  color: var(--accent);
}

/* --- OVERLAP & Z-INDEX --- */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 1300;
}

/* --- MISC --- */
::-webkit-scrollbar {
  width: 8px;
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
img {
  max-width: 100%;
  display: block;
}

/* --- UTILITY --- */
.mt-1   { margin-top: 8px; }
.mt-2   { margin-top: 16px; }
.mt-3   { margin-top: 24px; }
.mb-1   { margin-bottom: 8px; }
.mb-2   { margin-bottom: 16px; }
.mb-3   { margin-bottom: 24px; }
.center { text-align: center; }

/* --- END OF CSS --- */
