/* ===== 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F5F5F7;
  color: #23272E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 24px;
}
a {
  color: #21336C;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: #C7A048;
  text-decoration: underline;
}
button, .btn-primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: #21336C;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 14px 32px;
  box-shadow: 0 2px 14px 0 rgba(33,51,108,0.10);
  cursor: pointer;
  transition: background 0.23s, box-shadow 0.23s, color 0.16s;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  outline: none;
}
.btn-primary {
  background: #21336C;
  color: #FFF7EB;
  border: 2px solid #C7A048;
  box-shadow: 0 4px 24px 0 rgba(33,51,108,0.10), 0 1px 0 #C7A048;
  border-radius: 28px;
}
button:hover, .btn-primary:hover,
button:focus, .btn-primary:focus {
  background: #C7A048;
  color: #21336C;
  box-shadow: 0 8px 36px -2px rgba(199,160,72,0.18);
  border-color: #C7A048;
}
/* ====== BRAND & LUXURY PREMIUM COLORS ====== */
:root {
  --color-primary: #21336C;
  --color-secondary: #217C57;
  --color-accent: #FFF7EB;
  --color-bg: #F5F5F7;
  --color-gold: #C7A048;
  --color-black: #181A1D;
  --color-grey: #EDECF2;
  --color-shadow: rgba(33,51,108,0.08);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 10px; }
p, ul, ol, li, span, small { font-family: 'Roboto', Arial, sans-serif; font-size: 1rem; color: #23272E; }
p { margin-bottom: 18px; }

@media (max-width: 1024px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.10rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
}

strong, b {
  font-weight: 700;
  color: var(--color-primary);
}

/* ====== LUXURY PREMIUM SEPARATOR ====== */
hr {
  border: none;
  border-top: 2px solid var(--color-gold);
  width: 80px;
  margin: 32px auto;
  opacity: 0.20;
}

/* ============ CONTAINERS & SECTIONS ============ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 var(--color-shadow);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

/* ========== FLEXBOX LAYOUTS & GAPS ========== */
.card-container, .card-grid, .card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 32px 24px;
  transition: box-shadow 0.20s, border 0.15s;
  border: 1.5px solid var(--color-gold);
}
.card:hover, .card:focus {
  box-shadow: 0 4px 32px -2px var(--color-shadow);
  border-color: var(--color-gold);
}
.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;
}

/* ================ HERO SECTIONS ================ */
.hero {
  padding: 72px 0 64px 0;
  background: linear-gradient(90deg, #fff 60%, var(--color-accent) 100%);
  border-bottom: 1.5px solid var(--color-gold);
  box-shadow: 0 8px 24px -12px var(--color-shadow);
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  z-index: 1;
}
.hero h1 {
  color: var(--color-primary);
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  max-width: 504px;
  color: var(--color-secondary);
}

/* ========== FEATURES & SERVICES ========== */
.features, .services {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 var(--color-shadow);
}
.features .feature-list, .services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
  list-style: none;
}
.features .feature-list li, .services .service-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFF7EB;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  padding: 32px 24px;
  min-width: 240px;
  max-width: 370px;
  gap: 15px;
  border-left: 5px solid var(--color-gold);
  transition: box-shadow 0.17s, border-color 0.16s;
}
.features .feature-list li:hover, .services .service-list li:hover {
  box-shadow: 0 8px 28px -8px var(--color-shadow);
  border-left: 5px solid var(--color-primary);
}
.features img, .service-list img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
}
.price {
  display: inline-block;
  color: var(--color-gold);
  font-size: 1.10rem;
  font-weight: bold;
  margin-left: 10px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 24px 0 var(--color-shadow);
}
.testimonials .content-wrapper {
  gap: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FAF9F5;
  border-radius: 16px;
  padding: 20px 32px 20px 26px;
  margin-bottom: 20px;
  gap: 12px;
  box-shadow: 0 1px 8px 0 var(--color-shadow);
  border-left: 6px solid var(--color-gold);
  transition: box-shadow 0.15s, border-color 0.15s;
  color: #23272E;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #181A1D;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: var(--color-primary);
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 18px -6px var(--color-shadow);
  border-left: 6px solid var(--color-primary);
}

/* ======== CTA (CALL TO ACTION) ======== */
.call-to-action {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-primary);
  border-radius: 26px;
  color: #FFF7EB;
  box-shadow: 0 2px 18px 0 var(--color-shadow);
}
.call-to-action h2, .call-to-action p {
  color: #FFF7EB;
}
.call-to-action .btn-primary {
  background: #C7A048;
  color: var(--color-primary);
  border: none;
  box-shadow: 0 4px 24px 0 rgba(199,160,72,0.10);
}
.call-to-action .btn-primary:hover, .call-to-action .btn-primary:focus {
  background: #fff;
  color: var(--color-gold);
  box-shadow: 0 8px 24px -4px rgba(199,160,72,0.22);
}

/* ========== FAQ + LEGAL SECTIONS ========== */
.faq-section {
  background: #f8f4ed;
  border-left: 4px solid var(--color-gold);
  border-radius: 14px;
  padding: 22px 22px 16px 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 var(--color-shadow);
  color: #23272E;
}
.legal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 var(--color-shadow);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.legal h1, .legal h2 {
  color: var(--color-primary);
}
.legal ul {
  list-style-type: disc;
  margin: 16px 0 24px 28px;
}

/* ========== TEAM MEMBERS ========= */
.team-member {
  background: #FFF7EB;
  border-left: 5px solid var(--color-gold);
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 20px 28px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
}

/* ========== CONTACT / CONFIRMATION ========== */
.contact ul, .contact .text-section, .confirmation {
  margin-bottom: 24px;
}
.confirmation {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 16px 0 var(--color-shadow);
  padding: 44px 22px;
  text-align: center;
}
.confirmation h1 {
  color: var(--color-gold);
  margin-bottom: 18px;
}
.confirmation .btn-primary {
  margin: 28px auto 0 auto;
}

/* ========== FOOTER ========== */
footer {
  background: var(--color-primary);
  color: #FFF7EB;
  padding: 42px 0 10px 0;
  margin-top: 64px;
  border-top: 2px solid var(--color-gold);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #FFF7EB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.88;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-gold);
  background: rgba(255,255,255,0.10);
  opacity: 1;
}
.footer-info {
  text-align: center;
  color: #FFF7EB;
  font-size: 1rem;
  opacity: 0.73;
}

/* ============= MAIN NAVIGATION ============= */
header {
  background: #fff;
  border-bottom: 2px solid var(--color-gold);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  position: relative;
  z-index: 30;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 14px 20px 14px 20px;
  justify-content: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.19s, color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  background: #F6EDDD;
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 16px;
  display: block;
}
/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 19px;
  right: 24px;
  background: var(--color-primary);
  color: #FFF7EB;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 var(--color-shadow);
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,51,108,0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.65,0,0.35,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 26px;
  right: 24px;
  z-index: 2200;
  cursor: pointer;
  box-shadow: 0 1px 12px 0 #8882;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: var(--color-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin: 96px 0 0 36px;
}
.mobile-nav a {
  color: #FFF7EB;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.23rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.18s, background 0.18s;
  min-width: 180px;
  display: inline-block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(255,255,255,0.10);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 10px;
    padding: 8px 8px 8px 8px;
  }
  .main-nav img {
    height: 34px;
    margin-right: 10px;
  }
}
@media (max-width: 880px) {
  .main-nav a:not(:first-child) {
    display: none;
  }
  .main-nav a.btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 600px) {
  .main-nav img {
    height: 29px;
  }
  footer {
    padding: 26px 0 6px 0;
  }
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  min-height: 72px;
  background: #FFF7EB;
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 -2px 12px 0 var(--color-shadow);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 22px 20px 18px 20px;
  z-index: 5000;
  font-size: 1.02rem;
  color: var(--color-primary);
  transition: transform 0.25s, opacity 0.20s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner button {
  margin-left: 12px;
  margin-right: 6px;
  border-radius: 20px;
  padding: 9px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  box-shadow: 0 1px 8px 0 var(--color-shadow);
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-banner .btn-settings {
  background: #fff;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-primary);
  color: #FFF7EB;
  border-color: var(--color-gold);
}

/* ========== COOKIE SETTINGS MODAL ========== */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%) scale(0.98);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 40px 0 rgba(33,51,108,0.25);
  z-index: 5500;
  max-width: 96vw;
  width: 410px;
  padding: 36px 24px 22px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.19s;
  color: #23272E;
  border: 2px solid var(--color-gold);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.25rem;
  margin-bottom: 10px;
  margin-top: 0;
}
.cookie-modal ul {
  margin: 0 0 14px 20px;
  padding: 0;
}
.cookie-modal li {
  margin-bottom: 10px;
  font-size: 1rem;
  list-style: disc inside;
}
.cookie-modal .cookie-toggle {
  margin-left: 12px;
  accent-color: var(--color-gold);
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  font-size: 1rem;
  background: var(--color-primary);
  color: #FFF7EB;
  border: none;
  border-radius: 18px;
  padding: 8px 18px;
  transition: background 0.17s, color 0.17s;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.6rem;
  cursor: pointer;
  opacity: 0.75;
  transition: color 0.17s, opacity 0.17s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: var(--color-gold);
  opacity: 1;
}

/* ========== RESPONSIVE FLEXBOX COMPONENTS ========== */
@media (max-width: 900px) {
  .features .feature-list,
  .services .service-list,
  .card-container, .card-grid, .card-list {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .container,
  .section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .features,
  .services,
  .testimonials,
  .call-to-action, .legal, .confirmation {
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .content-wrapper,
  .features .feature-list,
  .services .service-list,
  .card-container, .card-grid, .card-list,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .section, .features, .services, .testimonials, .call-to-action, .confirmation, .legal {
    margin-bottom: 30px;
    padding: 20px 5px;
    border-radius: 15px;
  }
  .footer-info, .footer-nav {
    font-size: 0.93rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 8px 14px 8px;
    font-size: 0.96rem;
    border-radius: 0;
  }
  .cookie-modal {
    width: 95vw;
    max-width: 99vw;
    padding: 22px 7px 14px 7px;
    font-size: 0.98rem;
  }
}
/* ========== MISC + MICRO-INTERACTIONS ========== */
.card, .features .feature-list li, .services .service-list li, .testimonial-card, .team-member {
  transition: box-shadow 0.19s, border-color 0.17s, background 0.16s;
}
.card:active, .features .feature-list li:active, .services .service-list li:active {
  background: #F6EDDD;
  box-shadow: 0 2px 12px 0 var(--color-gold);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-gold);
  box-shadow: 0 2px 8px 0 var(--color-shadow);
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* ===== SCROLLBAR (luxury detail) ===== */
body::-webkit-scrollbar {
  width: 12px;
  background: #EDECF2;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 8px;
}

/* ========== UTILITY CLASSES ========== */
.d-none { display: none!important; }
.nowrap { white-space: nowrap; }
.mt-2 { margin-top: 8px!important; }
.mt-4 { margin-top: 16px!important; }
.mb-2 { margin-bottom: 8px!important; }
.mb-4 { margin-bottom: 16px!important; }
.mx-auto { margin-left: auto!important; margin-right: auto!important; }
.text-center { text-align: center!important; }
.text-right { text-align: right!important; }

/* ========== PRINT OPTIMIZATION ========== */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none!important; }
  body { background: #fff; color: #23272E; }
  .section, .call-to-action, .features, .testimonials, .services { box-shadow: none!important; background: #fff!important; }
}
