/* =======================================================
   CSS RESET & NORMALIZE (for maximum browser consistency)
   ======================================================= */
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;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #FAFAFC;
  color: #15304A;
  font-family: Arial, 'Montserrat', sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* =====================
   VARIABLE DEFINITIONS
   ===================== */
:root {
  --primary: #15304A;
  --secondary: #57B894;
  --accent: #F9EEC1;
  --lux-gold: #D4AF37;
  --lux-light-bg: #FBFAF7;
  --lux-dark-bg: #222937;
  --lux-light-gray: #F2F3F6;
  --lux-border: #E5E6E9;
  --black: #181818;
  --heading-font: 'Montserrat', Arial, sans-serif;
  --body-font: Arial, 'Montserrat', sans-serif;
  --font-size-xs: 14px;
  --font-size-s: 16px;
  --font-size-m: 18px;
  --font-size-l: 24px;
  --font-size-xl: 32px;
  --font-size-xxl: 48px;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px 0 rgba(33,36,38,0.09), 0 1.5px 4px rgba(33,36,38,0.06);
  --shadow-small: 0 1px 8px 0 rgba(33,36,38,0.06);
  --transition: 0.3s cubic-bezier(0.65,0,0.35,1);
}

/* =====================
   TYPOGRAPHY HIERARCHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
h1 {
  font-size: var(--font-size-xxl);
  margin-bottom: 24px;
  color: var(--lux-dark-bg);
}
h2 {
  font-size: var(--font-size-xl);
  margin-bottom: 20px;
  color: var(--primary);
}
h3 {
  font-size: var(--font-size-l);
  margin-bottom: 16px;
  color: var(--primary);
}
.headline {
  font-size: var(--font-size-l);
  font-weight: 500;
  color: var(--lux-gold);
  text-shadow: 0 1px 4px rgba(212, 175, 55, 0.1);
  margin-bottom: 8px;
}
.subheadline {
  font-size: var(--font-size-m);
  color: var(--secondary);
  font-weight: 400;
  margin-bottom: 24px;
}
p, li {
  font-family: var(--body-font);
  font-size: var(--font-size-s);
  color: var(--primary);
  margin-bottom: 8px;
}
strong, b {
  color: var(--primary);
  font-weight: 600;
}
.price {
  color: var(--lux-gold);
  font-size: var(--font-size-m);
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

/* =====================
   LAYOUT & CONTAINERS
   ===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.content-wrapper.text-section {
  background: var(--lux-light-bg);
  padding: 32px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  margin-bottom: 40px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  flex: 1 1 320px;
  min-width: 280px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(33,36,38,0.17);
  transform: translateY(-3px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-small);
  padding: 24px 20px;
  margin-bottom: 16px;
}
.features-grid, .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div, .services-grid > div {
  flex: 1 1 210px;
  min-width: 210px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-small);
  padding: 28px 20px 28px 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--lux-gold);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition);
}
.features-grid > div:hover, .services-grid > div:hover {
  box-shadow: 0 6px 28px 0 rgba(212,175,55,0.13);
  background: var(--lux-light-bg);
}
.services-grid > div .price {
  margin-bottom: 0;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(33,36,38,0.07);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  height: 84px;
}
header a img {
  height: 46px;
  width: auto;
  margin-right: 24px;
  border-radius: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.main-nav a {
  font-family: var(--heading-font);
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  position: relative;
  padding: 8px 2px;
  border-radius: 4px;
  opacity: 0.93;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--lux-gold);
  background: var(--lux-light-bg);
  text-decoration: none;
}

.cta-button {
  background: var(--primary);
  color: var(--accent);
  font-family: var(--heading-font);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 30px;
  padding: 14px 36px;
  border: none;
  box-shadow: 0 3px 16px 0 rgba(21,48,74,0.09);
  margin-left: 18px;
  margin-right: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  border-bottom: 3px solid var(--lux-gold);
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--lux-gold);
  color: var(--primary);
  box-shadow: 0 6px 24px 0 rgba(212,175,55,0.16);
  transform: translateY(-3px) scale(1.014);
}

.mobile-menu-toggle {
  display: none;
  font-size: 32px;
  padding: 8px 16px;
  background: transparent;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-left: auto;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--lux-light-bg);
  color: var(--lux-gold);
}

/* ===================
   MOBILE MENU STYLES
   =================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24, 0.97);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: transparent;
  color: var(--accent);
  border: none;
  font-size: 40px;
  margin: 20px 0 20px 20px;
  align-self: flex-start;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--lux-gold);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0 0 32px;
  width: 90%;
}
.mobile-nav a {
  color: var(--accent);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--lux-gold);
  background: rgba(249,238,193,0.08);
}

/* Hide desktop navigation on mobile, show burger */
@media (max-width: 980px) {
  .main-nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =====================
   TESTIMONIALS & CARDS
   ===================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 1.5px 7px 0 rgba(212,175,55,0.09);
  border-left: 4px solid var(--lux-gold);
  margin-bottom: 20px;
  margin-top: 8px;
  color: var(--black);
  font-size: 16px;
}
.testimonial-card p {
  color: var(--primary);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-card div {
  color: var(--secondary);
  font-size: 15px;
  margin-left: 6px;
  font-style: normal;
}

/* ================
   LISTS & DETAILS
   ================ */
ul, ol {
  margin-bottom: 20px;
  margin-left: 18px;
  font-size: 16px;
  color: var(--primary);
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}
ul li:before {
  content: '●';
  position: absolute;
  left: 0px;
  color: var(--lux-gold);
  font-size: 15px;
}

/* ==============
   CONTACT BLOCK
   ==============
*/
.contact-details {
  background: var(--lux-light-bg);
  padding: 24px 22px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  box-shadow: var(--shadow-small);
  margin-bottom: 16px;
}
.contact-details p {
  margin-bottom: 8px;
  color: var(--primary);
}
.contact-details a {
  color: var(--secondary);
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.18s;
}
.contact-details a:hover, .contact-details a:focus {
  color: var(--lux-gold);
}

/* =================
   TEAM PROFILES
   ================= */
.team-profile {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-small);
  padding: 28px 20px;
  margin-bottom: 20px;
  border-left: 4px solid var(--secondary);
}
.team-profile h3 {
  margin-bottom: 8px;
  color: var(--primary);
}
.team-profile p {
  margin-bottom: 0;
  color: var(--primary);
  font-size: 16px;
}

/* =========================
   FOOTER & LEGAL NAVIGATION
   ========================= */
footer {
  background: var(--lux-dark-bg);
  color: var(--accent);
  padding: 30px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.footer-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--accent);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.01em;
  opacity: 0.77;
  padding: 4px 2px;
  transition: color 0.2s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--lux-gold);
  opacity: 1;
}
.branding {
  display: flex;
  align-items: center;
  gap: 15px;
}
.branding img {
  height: 36px;
}
.branding span {
  font-family: var(--heading-font);
  font-size: 16px;
  color: var(--accent);
  opacity: 0.84;
}

/* ==========
   BUTTONS
   ==========
*/
button, .cta-button {
  font-family: var(--heading-font);
  cursor: pointer;
  border: none;
  outline: none;
}
button:active, .cta-button:active {
  opacity: 0.94;
}

/* =============
   MISC ELEMENTS
   ============= */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-thumb {
  background: var(--lux-light-bg);
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: #fff;
}

hr {
  border: none;
  height: 1px;
  background: var(--lux-border);
  margin: 32px 0;
}

/* ===================================================
   COOKIE CONSENT BANNER & MODAL (fixed bottom banner)
   =================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 -2px 20px 0 rgba(21,48,74,0.12);
  z-index: 10000;
  padding: 24px 18px;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  border-top: 2px solid var(--lux-gold);
  transition: transform 0.38s cubic-bezier(0.5,0,0.3,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-message {
  color: var(--primary);
  font-size: 16px;
  flex: 1;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  border: none;
  border-radius: 24px;
  font-size: 15px;
  padding: 12px 32px;
  font-weight: 700;
  box-shadow: 0 2px 9px 0 rgba(21,48,74,0.08);
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.accept {
  background: var(--lux-gold);
  color: var(--primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.reject {
  background: #fff;
  border: 1.5px solid var(--lux-gold);
  color: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #EAECEF;
  color: var(--primary);
}
.cookie-btn.settings {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--lux-gold);
  color: var(--primary);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  z-index: 10001;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21,48,74,0.64);
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.32s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  max-width: 420px;
  box-shadow: 0 12px 44px 0 rgba(33,36,38,0.13);
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-content h3 {
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-cat {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}
.cookie-cat input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--lux-gold);
}
.cookie-cat .cookie-lock {
  font-size: 16px;
  color: #bbb;
  margin-left: 4px;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 24px;
  right: 27px;
  background: transparent;
  font-size: 29px;
  color: var(--primary);
  border: none;
  cursor: pointer;
  z-index: 11;
  padding: 4px 10px;
  border-radius: 10px;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--lux-light-bg);
  color: var(--lux-gold);
}

/* ================
   RESPONSIVE DESIGN
   ================ */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .features-grid, .services-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: var(--font-size-s);
  }
  .container {
    padding: 0 8px;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  .main-nav, .footer-nav {
    gap: 14px;
  }
  header .container {
    padding: 0 10px;
    height: 68px;
  }
  .features-grid, .services-grid {
    flex-direction: column;
    gap: 14px;
  }
  .features-grid > div, .services-grid > div {
    min-width: 160px;
    padding: 20px 12px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .section {
    margin-bottom: 32px;
    padding: 28px 6px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card {
    min-width: 90vw;
    padding: 20px 10px;
  }
  .content-wrapper {
    gap: 8px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 25px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 18px 7px 18px 11px;
  }
  .cookie-banner-message {
    font-size: 15px;
    min-width: 0;
    margin-bottom: 7px;
  }
  .cookie-banner-actions {
    gap: 8px;
  }
  .cookie-modal-content {
    padding: 22px 8px 15px 8px;
    max-width: 95vw;
  }
}

/* ================
   ANIMATION UTILS
   ================ */
.fade-in {
  animation: fadein 0.65s cubic-bezier(0.62,0,0.28,1);
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-in-right {
  animation: slr 0.55s cubic-bezier(0.77,0,0.18,1);
}
@keyframes slr {
  from { transform: translateX(100vw); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.slide-in-bottom {
  animation: slb 0.5s cubic-bezier(0.62,0,0.28,1);
}
@keyframes slb {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ================
   PRINT STYLES
   ================ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #222 !important;
  }
}
section {
  padding: 20px 0;
}