/* ---------------------------------------------------
   CSS RESET & NORMALIZE FOR CROSS-BROWSER BASELINE
--------------------------------------------------- */
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 {
  height: 100%;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F5F7FA;
  color: #111;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
ul li, ol li {
  margin-bottom: 0.3em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
}
th, td {
  padding: 12px 18px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
  font-size: 1rem;
}
th {
  background: #f5f7fa;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1B4399;
}

/* ---------------------------------------------------
   LUXURY PREMIUM COLOR & TYPOGRAPHY SYSTEM
--------------------------------------------------- */
:root {
  --lux-blue: #1B4399;
  --lux-soft-blue: #234eaf;
  --lux-bg: #F5F7FA;
  --lux-white: #fff;
  --lux-dark: #181c23;
  --lux-gold: #C29751;
  --lux-gold-bright: #FFD700;
  --lux-accent: #FFA500;
  --lux-grey: #c5c8ce;
  --lux-shadow: rgba(27, 67, 153, 0.07);
  --lux-shadow-card: 0 6px 24px 0 var(--lux-shadow);
  --lux-radius: 18px;
  --lux-card-bg: #fff;
  --lux-gradient-hover: #fafdff;
  --lux-footer-bg: #14284f;
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
}
@font-face {
  font-family: 'Montserrat';
  font-weight: 600;
  src: local('Montserrat SemiBold'), local('Montserrat-SemiBold'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@700&display=swap');
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--lux-blue);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  line-height: 1.2;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, blockquote, table, .text-section {
  font-size: 1.08rem;
}
blockquote {
  border-left: 4px solid var(--lux-gold);
  margin: 0 0 1em 0;
  padding-left: 24px;
  font-style: italic;
  background: #faf8f3;
}
strong {
  font-weight: 700;
}

/* ---------------------------------------------------
   LUXURY SPACING & MAIN LAYOUT CONTAINERS
--------------------------------------------------- */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-container, .service-cards, .card-grid, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card, .service-card {
  background: var(--lux-card-bg);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-card);
  padding: 34px 24px;
  transition: box-shadow 0.23s, transform 0.23s;
  margin-bottom: 20px;
  position: relative;
  min-width: 230px;
  flex: 1 1 250px;
  border: 1px solid #ece6dc;
}
.card:hover, .service-card:hover {
  box-shadow: 0 10px 34px 0 rgba(194,151,81,0.13);
  border-color: var(--lux-gold);
  transform: translateY(-5px) scale(1.025);
  z-index: 2;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fffbea;
  border: 1px solid #e3d7be;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(210, 178, 98, 0.10);
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  margin: 0 0 8px 0;
  font-style: italic;
  background: transparent;
  border-left: 0 solid transparent;
  color: #12120f;
}
.testimonial-card span {
  color: #3a3e44;
  font-size: 1rem;
}

.personal-highlight {
  background: #fffde8;
  border-left: 4px solid var(--lux-gold);
  padding: 12px 18px;
  border-radius: 10px;
  color: #766336;
  margin: 14px 0 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
}

/* -------- Lists with icons ----------- */
ul li img {
  height: 22px;
  width: 22px;
  vertical-align: middle;
  margin-right: 7px;
}
ul li {
  color: #353943;
  position: relative;
  padding-left: 0.2em;
}

/* ---------------------------------------------------
   BUTTONS & INTERACTIVE ELEMENTS (LUX STYLE)
--------------------------------------------------- */
.cta-btn, .cta-btn:visited {
  display: inline-block;
  background: linear-gradient(88deg, var(--lux-gold) 0%, var(--lux-accent) 100%);
  color: #fffbe7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 999px;
  padding: 14px 36px;
  margin-top: 5px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(213,169,68,0.10);
  outline: none;
  letter-spacing: 0.05em;
  transition: background 0.18s, box-shadow 0.20s, color 0.2s, transform 0.22s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(95deg, var(--lux-gold-bright) 10%, var(--lux-gold) 100%);
  color: var(--lux-blue);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px 0 rgba(213,169,68,0.25);
}
button, .btn {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 16px;
  background: var(--lux-blue);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.21s;
  box-shadow: 0 2px 8px 0 rgba(68,98,158,0.06);
}
.btn-gold {
  background: var(--lux-gold);
  color: #102048;
}
button:hover, .btn:hover, .btn-gold:hover {
  background: var(--lux-accent);
  color: #fff;
  box-shadow: 0 3px 12px 0 rgba(183, 103, 5, 0.20);
}
a.btn-gold {
  background: var(--lux-gold);
  color: #fffbe7;
}
a.btn-gold:hover, a.btn-gold:focus {
  background: var(--lux-accent);
  color: #fff;
}

/* ---------------------------------------------------
   HEADER & MAIN NAVIGATION BAR
--------------------------------------------------- */
header {
  background: var(--lux-white);
  border-bottom: 1px solid #e6eaf2;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 3px 18px -12px rgba(21,40,81,0.07);
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 16px 0;
}
.main-nav a {
  color: var(--lux-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 14px;
  border-radius: 8px;
  letter-spacing: 0.02em;
  transition: color 0.16s, background 0.14s;
}
.main-nav a.cta-btn {
  margin-left: 18px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f2f3f7;
  color: var(--lux-gold);
}
.main-nav img {
  height: 40px;
  width: auto;
  vertical-align: middle;
}

/* --- MOBILE NAV Styling --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 12px;
  background: var(--lux-gold);
  color: var(--lux-white);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 6px;
  font-size: 1.9rem;
  z-index: 161;
  align-items: center;
  justify-content: center;
  transition: background 0.19s;
  box-shadow: 0 2px 8px 0 rgba(194,151,81,0.12);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--lux-accent);
}
.mobile-menu {
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(21,40,81,0.92);
  color: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.68,-0.55,.27,1.55);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: none;
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--lux-gold);
  font-size: 2.1rem;
  border: none;
  margin: 22px 28px 0 0;
  cursor: pointer;
  transition: color 0.19s;
  padding: 6px;
  z-index: 2010;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--lux-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 44px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 12px;
  transition: background 0.17s, color 0.16s;
  z-index: 2020;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--lux-gold);
  color: var(--lux-blue);
}

/* ---------------------------------------------------
   FOOTER
--------------------------------------------------- */
footer {
  background: var(--lux-footer-bg);
  color: #e9eefa;
  margin-top: 70px;
  padding: 0;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 16px 26px 16px;
}
.footer-wrapper img {
  height: 38px;
  margin-bottom: 4px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 18px;
  justify-content: center;
  margin: 2px 0 10px 0;
}
footer nav a {
  color: #e9eefa;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.92;
  padding: 4px 8px;
  border-radius: 7px;
  transition: background 0.17s, color 0.16s, opacity 0.15s;
}
footer nav a:hover {
  background: var(--lux-gold);
  color: var(--lux-blue);
  opacity: 1;
}
.footer-wrapper p {
  font-size: 0.99rem;
  color: #dbdbe0;
  line-height: 1.7;
  text-align: center;
}
.footer-legal {
  margin-top: 8px;
  font-size: 0.94rem;
  color: #c2c7e3;
  opacity: 0.8;
}
.footer-legal a {
  color: #fecb6f;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: #fff;
}

/* ---------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fffbe6;
  color: #483a13;
  padding: 20px 13px 17px 13px;
  box-shadow: 0 -2px 22px 0 rgba(194,151,81,.10);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-top: 2px solid var(--lux-gold);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.07rem;
  animation: cookie-fade-in 0.6s cubic-bezier(.42,0,.58,1);
}
@keyframes cookie-fade-in { from { opacity: 0; transform: translateY(28px);} to { opacity: 1; transform: none; } }
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 6px;
}
.cookie-banner button {
  border-radius: 18px;
  padding: 11px 22px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  margin: 0;
  background: var(--lux-accent);
  color: #fff;
  font-weight: 600;
  transition: background 0.17s, color 0.19s;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  color: var(--lux-gold);
  font-weight: 600;
  border: 1.5px solid var(--lux-gold);
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: var(--lux-gold);
  color: var(--lux-blue);
  border-color: var(--lux-gold);
}

/* -- Cookie Modal Overlay -- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 4000;
  inset: 0 0 0 0;
  background: rgba(27, 67, 153, 0.40);
  animation: cookie-modal-fade-in 0.4s;
}
@keyframes cookie-modal-fade-in { from {
  opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-54%) scale(1);
  background: #fffbe6;
  color: #373239;
  padding: 36px 26px 28px 26px;
  border-radius: 16px;
  box-shadow: 0 8px 38px 0 rgba(194,151,81,0.17);
  min-width: 320px;
  max-width: 92vw;
  z-index: 4300;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-fade-in 0.42s cubic-bezier(.44,0,.58,1);
}
.cookie-modal h3 {
  color: var(--lux-blue);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
  font-size: 1.38rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-categories label {
  font-family: inherit;
  font-size: 1.06rem;
  color: #4d4532;
  margin-right: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0.91;
}
.cookie-category-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #d3c297;
  border-radius: 12px;
  position: relative;
  transition: background 0.19s;
  outline: none;
}
.cookie-category-toggle:checked {
  background: var(--lux-gold);
}
.cookie-category-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2.3px;
  top: 2.3px;
  width: 15px;
  height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.20s cubic-bezier(.45,0,.7,1.3);
  box-shadow: 0 1px 5px 0 rgba(27,67,153, 0.07);
}
.cookie-category-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-modal .modal-btn-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  background: var(--lux-gold);
  color: #fffbe7;
}
.cookie-modal .btn:hover {
  background: var(--lux-accent);
  color: #fff;
}

/* ---------------------------------------------------
   RESPONSIVE DESIGN: MOBILE-FIRST, MEDIA QUERIES
--------------------------------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 13px;
    font-size: 1rem;
  }
  .content-wrapper, .card-container, .service-cards {
    gap: 15px;
  }
  .section {
    padding: 32px 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    max-width: 100vw;
    padding: 0 5vw;
  }
  .card-container, .service-cards, .card-grid, .content-grid, .features {
    flex-direction: column;
    gap: 20px;
  }
  .card, .service-card {
    min-width: 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-wrapper {
    padding: 24px 8px;
    gap: 19px;
  }
  .section {
    padding: 30px 5px;
    margin-bottom: 40px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  h3 {
    font-size: 1.05rem;
  }
  .card, .service-card {
    padding: 19px 8px;
  }
  .footer-wrapper img {
    height: 28px;
  }
  .cookie-modal {
    padding: 16px 7px 13px 8px;
    min-width: 0;
  }
}

/* ---------------------------------------------------
   MICRO-INTERACTIONS, TRANSITIONS, HOVERS
--------------------------------------------------- */
.card, .service-card, .testimonial-card, .footer-wrapper, .cta-btn, button, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
  will-change: transform, box-shadow, opacity, background;
}
h1, h2, h3, h4, .cta-btn, .card, .service-card, .testimonial-card {
  -webkit-font-smoothing: antialiased;
}
.cta-btn, button, .btn, .btn-gold {
  user-select: none;
  outline: 0;
}
.cta-btn:active, .btn:active, button:active {
  transform: scale(0.98);
}
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 7px;
  border: 1px solid #e4e7f3;
  padding: 8px 10px;
  transition: border 0.15s;
}
input:focus, select:focus, textarea:focus {
  border: 1.5px solid var(--lux-accent);
  outline: none;
}

/* ---------------------------------------------------
   TABLES: LUXURY PREMIUM STYLE
--------------------------------------------------- */
table {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 #f2ede3;
  overflow: hidden;
  background: #fff;
  margin: 20px 0 20px 0;
}
th, td {
  border-bottom: 1px solid #f2ede3;
}
th {
  background-color: #f5e9c7;
  color: var(--lux-blue);
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}
td {
  font-size: 1.00rem;
  color: #47423a;
}

/* ---------------------------------------------------
   MISC: BREADCRUMBS, BADGE, HORIZONTAL LINE
--------------------------------------------------- */
.breadcrumbs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--lux-grey);
  margin-bottom: 15px;
}
.badge-gold {
  color: #fffbe7;
  background: var(--lux-gold);
  border-radius: 11px;
  font-size: 0.99rem;
  padding: 6px 14px;
  display: inline-block;
  margin-left: 7px;
}
hr {
  border: none;
  border-top: 1.5px solid #e8e4df;
  margin: 34px 0 25px 0;
}

/* ---------------------------------------------------
   SCROLLBAR (OPTIONAL FOR MODERN BROWSERS)
--------------------------------------------------- */
body::-webkit-scrollbar {
  width: 12px;
  background: #f3f3ea;
}
body::-webkit-scrollbar-thumb {
  background: var(--lux-gold);
  border-radius: 7px;
}

/* ---------------------------------------------------
   PRINT OPTIMIZATION
--------------------------------------------------- */
@media print {
  .main-nav, .mobile-menu-toggle, .footer-wrapper, .cookie-banner, .cookie-modal, .cookie-modal-backdrop { display: none !important; }
  body { background: #fff !important; color: #111 !important; }
}
