/* =========================================================
   CSS RESET & BASE 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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  background: #F5F6F8;
  color: #222B3A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; background: none; border: none; cursor: pointer; }
:root {
  --color-primary: #222B3A;
  --color-secondary: #A7D0E6;
  --color-accent: #F5F6F8;
  --color-gold: #C1A254;
  --color-gold-light: #F3E5C6;
  --color-dark: #1a222b;
}


/* =========================================================
   TYPOGRAPHY HIERARCHY
   ========================================================= */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #222B3A;
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
}
h1 { font-size: 2.75rem; line-height: 1.13; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.35; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, li, blockquote { font-size: 1rem; color: #222B3A; }
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: #222B3A;
  margin-bottom: 10px;
  quotes: "\201E" "\201C";
}
strong { font-weight: bold; }
.subheadline {
  color: #222B3A;
  opacity: .7;
  font-size: 1.2rem;
  margin-bottom: 28px;
  font-weight: 500;
}

@media (max-width: 992px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.1rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1rem; }
}


/* =========================================================
   LAYOUT CONTAINERS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Universal section spacing */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 18px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 24px 8px;
  }
  .content-wrapper { gap: 22px; }
}


/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
header {
  background: #fff;
  box-shadow: 0 4px 24px rgba(34,43,58,0.04);
  border-bottom: 1.5px solid #E8E8EA;
  position: relative;
  z-index: 20;
}
.logo img {
  height: 48px;
  width: auto;
  vertical-align: middle;
  transition: filter .2s;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  min-height: 70px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #222B3A;
  opacity: .88;
  padding: 8px 10px;
  transition: color .18s, opacity .18s;
  border-radius: 8px;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-gold);
  opacity: 1;
  background: #F5F6F8;
  outline: none;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gold);
  color: #222B3A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  padding: 12px 30px;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(193,162,84,0.13);
  border: none;
  transition: background .23s, color .19s, box-shadow .17s;
  cursor: pointer;
  margin-left: 10px;
  text-shadow: 0 1px #f9f8f7;
}
.btn-primary:hover, .btn-primary:focus {
  background: #b9913a;
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(193,162,84,0.19);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-gold);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 11px 28px;
  border-radius: 20px;
  border: 2px solid var(--color-gold);
  transition: background .22s, color .17s;
  margin-left: 0;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-gold);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #222B3A;
  background: none;
  border: none;
  margin-left: 18px;
  z-index: 21;
  transition: color .22s;
}
.mobile-menu-toggle:focus { outline: 2px solid var(--color-gold); }
@media (max-width: 1100px) {
  .main-nav { gap: 16px; }
  header .container { gap: 6px; }
}
@media (max-width: 920px) {
  .main-nav { gap: 10px; }
}
@media (max-width: 850px) {
  .main-nav a { font-size: 0.93rem; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* =================== MOBILE MENU ========================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 38px;
  background: #fff;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 80;
  padding: 28px 32px 24px 32px;
  box-shadow: 2px 0 24px 0 rgba(34,43,58,0.09);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.67,.31,.41,.88);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.5rem;
  background: none;
  color: #222B3A;
  border: none;
  padding: 9px 18px;
  cursor: pointer;
  transition: color .18s;
  z-index: 81;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--color-gold); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #222B3A;
  font-size: 1.23rem;
  padding: 13px 0;
  border-radius: 12px;
  transition: background .17s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-gold-light);
  color: var(--color-gold);
}
@media (max-width: 480px) {
  .mobile-menu {
    padding: 16px 8px 16px 14px;
  }
  .mobile-nav a { font-size: 1.04rem; }
}


/* =========================================================
   HERO, FEATURE, CARD & FLEX COMPONENTS
   ========================================================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-item {
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(34,43,58,0.06);
  padding: 28px 22px 20px 22px;
  border-bottom: 3px solid var(--color-gold);
  transition: transform .2s, box-shadow .2s;
}
.feature-item:hover, .feature-item:focus-within {
  transform: translateY(-4px) scale(1.013);
  box-shadow: 0 8px 32px 0 rgba(193,162,84,0.16);
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 6px;
  filter: drop-shadow(0 4px 7px #F3E5C6);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(34,43,58,0.07);
  padding: 22px 18px 20px 18px;
  flex: 1 1 275px;
  min-width: 210px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 2px solid var(--color-secondary);
  transition: border-color .18s, transform .19s, box-shadow .2s;
}
.service-item:hover, .service-item:focus-within {
  border-bottom: 2px solid var(--color-gold);
  transform: translateY(-3px) scale(1.009);
  box-shadow: 0 8px 26px 0 rgba(193,162,84,0.09);
}
.service-item h3, .service-item h2 { margin-bottom: 4px; }
.service-price {
  color: var(--color-gold);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.11rem;
  margin-top: 12px;
}

/* Card Alignment components */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(34,43,58,0.1);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 20px;
}
.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;
}
.text-section {
  flex: 1 1 320px;
  min-width: 250px;
  background: transparent;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(193,162,84,0.15), 0 1px 3px 0 rgba(34,43,58,0.05);
  margin-bottom: 20px;
  border-left: 4px solid var(--color-gold);
  max-width: 100%;
  transition: box-shadow .22s, border .15s;
}
.testimonial-card blockquote {
  color: #222B3A;
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0.93;
}
.testimonial-attribution {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1rem;
  margin-left: 10px;
  opacity: 0.98;
}

@media (max-width: 1050px) {
  .feature-grid, .service-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list {
    gap: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 14px;
  }
  .card { padding: 16px 8px; }
}
@media (max-width: 768px) {
  .service-list, .feature-grid { flex-direction: column; gap: 13px; }
  .content-grid { flex-direction: column; }
  .text-image-section { flex-direction: column; gap: 18px; }
}


/* ============== TABLES & PRICING ======================== */
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 18px 0 rgba(34,43,58,0.09);
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-table th, .pricing-table td {
  padding: 15px 12px;
  text-align: left;
  border-bottom: 1px solid #ececec;
}
.pricing-table th {
  background: var(--color-gold-light);
  color: #222B3A;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 770px) {
  .pricing-table table, .pricing-table thead, .pricing-table tbody, .pricing-table th, .pricing-table td, .pricing-table tr {
    display: block;
  }
  .pricing-table tr { margin-bottom: 15px; }
  .pricing-table th, .pricing-table td {
    padding: 10px 6px;
    text-align: left;
    border-bottom: 1px solid #edeaea;
  }
}


/* ======== MISC FLEX STRUCTURES FOR CONTENT/PROCESSES =====*/
.process-overview {
  flex: 1 1 240px;
  min-width: 210px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 7px 0 rgba(193,162,84,0.09);
  padding: 18px 14px;
  margin-bottom: 20px;
}
.steps-overview {
  flex: 1 1 260px;
  min-width: 210px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 7px 0 rgba(34,43,58,0.06);
  padding: 18px 14px;
  margin-bottom: 20px;
}
.address-map, .contact-details {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 7px 0 rgba(34,43,58,0.06);
  padding: 18px 14px;
  margin-bottom: 20px;
}
.faq {
  flex: 1 1 300px;
  min-width: 220px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 7px 0 rgba(193,162,84,0.09);
  padding: 18px 14px;
  margin-bottom: 20px;
}

.success-message, .thank-you-message {
  background: #fff;
  border-radius: 12px;
  padding: 18px 18px;
  box-shadow: 0 1px 7px 0 rgba(34,43,58,0.06);
  margin-bottom: 20px;
}

.guarantees {
  background: #FAFAF2;
  border-radius: 11px;
  border-left: 4px solid var(--color-gold);
  padding: 14px 14px 14px 28px;
  box-shadow: 0 1px 8px 0 rgba(193,162,84,0.05);
  margin-bottom: 13px;
}

/* =============== FOOTER ============================== */
footer {
  background: #fff;
  border-top: 1.5px solid #E8E8EA;
  padding: 42px 0 26px 0;
}
.footer-logo {
  margin-bottom: 18px;
}
.footer-logo img {
  height: 44px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-menu a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--color-gold);
  padding: 7px 5px;
  border-radius: 7px;
  transition: color .16s, background .18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #222B3A;
  background: var(--color-gold-light);
}
.contact-info {
  font-size: .97rem;
  color: #222B3A;
  opacity: .84;
  margin-top: 12px;
}
.contact-info a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color .19s;
}
.contact-info a:hover, .contact-info a:focus {
  color: var(--color-gold);
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start !important;
  }
  .footer-menu {
    gap: 10px;
  }
  .footer-logo img { height: 38px; }
}


/* ====================== COOKIES BANNER & MODAL ========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 120;
  background: #fff;
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 -6px 22px 0 rgba(34,43,58,0.14);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: cookieSlideUp .6s cubic-bezier(.5,.18,.61,.97);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222B3A;
  font-size: 1rem;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background .23s, color .18s, border .17s;
  outline: none;
  margin: 0;
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-gold);
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #b9913a;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #f5f6f8;
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: var(--color-gold);
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: var(--color-gold);
  border: none;
  text-decoration: underline;
  font-weight: 600;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  text-decoration: none;
  color: #b9913a;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  z-index: 4000;
  background: rgba(34,43,58,0.21);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .32s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 40px 0 rgba(34,43,58,0.22);
  min-width: 320px;
  max-width: 400px;
  padding: 32px 30px 24px 30px;
  position: relative;
  animation: modalScaleIn .31s cubic-bezier(.5,.21,.65,.8);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modalScaleIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.41rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222B3A;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 20px;
  height: 20px;
}
.cookie-category input[disabled] {
  opacity: .5;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 8px;
  right: 9px;
  font-size: 1.65rem;
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  transition: color .16s;
  padding: 5px 9px;
}
.cookie-modal .modal-close:hover { color: #b9913a; }

@media (max-width: 540px) {
  .cookie-modal {
    min-width: 95vw;
    max-width: 98vw;
    padding: 18px 7px 12px 12px;
  }
}


/* =================== RESPONSIVE ========================== */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 890px) {
  .container { max-width: 98vw; }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 7px;
  }
  .content-wrapper, .feature-list, .service-list, .feature-grid {
    gap: 16px;
  }
  .feature-item, .service-item {
    max-width: 100%;
    min-width: 0;
    border-radius: 13px;
  }
}

/* ===================== UTILS ============================ */
.hide { display: none !important; }
.mt-2 { margin-top: 8px; } .mt-3 { margin-top: 12px; } .mt-4 { margin-top: 18px; } .mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 12px; } .mb-4 { margin-bottom: 18px; }

::-webkit-scrollbar {
  width: 8px;
  background: #f5f6f8;
}
::-webkit-scrollbar-thumb {
  background: #E8E8EA;
  border-radius: 5px;
}

/* ========================= HOVER EFFECTS & MICROINTERACTIONS ====================== */
a, .btn-primary, .btn-secondary, button, .main-nav a, .footer-menu a, .service-item, .feature-item {
  transition: color .19s, background .21s, box-shadow .18s, border .16s, transform .17s;
}

input, select, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #E8E8EA;
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  transition: border .2s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-gold);
  outline: none;
}

/* ======================== LUXURY TOUCHES ========================= */
hr {
  border: none;
  border-top: 2px solid var(--color-gold-light);
  margin: 32px 0;
}
.card, .feature-item, .service-item, .testimonial-card, .process-overview, .address-map, .steps-overview, .text-section, .faq, .guarantees, .success-message, .thank-you-message, .contact-details {
  box-shadow: 0 1px 7px 0 rgba(193,162,84,0.06), 0 1px 3px 0 rgba(34,43,58,0.05);
  border-radius: 14px;
}

/* Small golden detail line on top headings */
h1, h2, h3 {
  position: relative;
  padding-left: 0.2em;
}
h1:before, h2:before, h3:before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 4px;
  background: var(--color-gold);
  border-radius: 2px;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  bottom: 2px;
}
@media (max-width: 570px) {
  h1:before, h2:before, h3:before { width: 8px; }
}

/* ================ FOCUS STYLES ACCESSIBILITY ============ */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

/* ===================== END ===================== */