/* =======================
   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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fafbfc;
  color: #232323;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
:focus {
  outline: 2px solid #b76b00;
  outline-offset: 2px;
}

/* ===============
   ROOT COLORS & VARIABLES
   =============== */
:root {
  --brand-primary: #104e8b;
  --brand-secondary: #ffffff;
  --brand-accent: #b76b00;
  --brand-bg: #f5f7fa;
  --brand-gold: #b76b00;
  --brand-text: #1a1a1a;
  --brand-heading: #131a26;
  --brand-shadow: 0 2px 12px rgba(16,78,139,0.05);
  --card-shadow: 0 4px 20px rgba(16,78,139,0.07);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* ===============
   GENERAL LUXURY / PREMIUM BASE
   =============== */
body {
  background: var(--brand-bg);
  color: var(--brand-text);
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 100vh;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-secondary);
  border-radius: 24px;
  box-shadow: var(--brand-shadow);
}

/* ==========================
   TYPOGRAPHY – Luxury scale
   ========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-heading);
  margin-bottom: 12px;
  line-height: 1.13;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -.5px;
}
h3 {
  font-size: 1.375rem;
}
h4 {
  font-size: 1.16rem;
}
p, ul, ol, li, span, label {
  color: var(--brand-text);
  font-size: 1rem;
  font-family: var(--font-body);
}
strong {
  color: var(--brand-primary);
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 1em;
}

/* ===================
   FLEXBOX LAYOUTS
   =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 18px;
  background: var(--brand-secondary);
  box-shadow: var(--card-shadow);
  padding: 32px 28px;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.25s;
  position: relative;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(16,78,139,0.15);
}
.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;
  justify-content: center;
}

@media (max-width: 768px) {
  .content-grid,
  .card-container,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #f8f9fc;
  border-radius: 16px;
  padding: 30px 22px;
  box-shadow: 0 2px 14px rgba(183,107,0,0.03);
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 24px 0;
}
.service-cards > div {
  background: #f8f9fc;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(183,107,0,0.04);
  flex: 1 1 260px;
  min-width: 230px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-left: 4px solid var(--brand-gold);
}

/* ===========
   HERO
   =========== */
.hero {
  background: linear-gradient(120deg,#fff,#f5efe4 92%);
  padding: 60px 0 72px 0;
  position: relative;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 8px 40px 0 rgba(16,78,139,0.05);
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  gap: 24px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.75rem;
  color: var(--brand-primary);
  letter-spacing: -1.5px;
}
.hero h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brand-gold);
}
.hero p {
  margin-bottom: 20px;
  color: #353535;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .hero {
    padding: 38px 0 32px 0;
    border-radius: 0 0 24px 24px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.35rem;
  }
  .hero .content-wrapper,
  .section .content-wrapper {
    gap: 18px;
    padding: 0;
  }
}

/* ===============
   BUTTONS (CTA)
   =============== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--brand-accent);
  color: #fff;
  border-radius: 30px;
  border: none;
  padding: 13px 36px;
  font-size: 1.1rem;
  box-shadow: 0 2px 12px rgba(183,107,0,0.10);
  letter-spacing: 0.03em;
  margin-top: 12px;
  transition: background .22s, color .18s, box-shadow .2s, transform .14s;
  cursor: pointer;
  border-bottom: 3px solid #f5b941;
}
.cta-button:hover, .cta-button:focus {
  background: #ffbd48;
  color: var(--brand-primary);
  box-shadow: 0 4px 20px rgba(183,107,0,0.21);
  transform: translateY(-2px) scale(1.03);
  border-bottom: 3px solid var(--brand-gold);
}

/*  ================
    HEADER & NAVIGATION
    ================ */
header {
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(16,78,139,.06);
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 102;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 7px;
  transition: color .18s, background .16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-gold);
  background: rgba(183,107,0,0.08);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  cursor: pointer;
  margin-left: 16px;
  transition: color .17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--brand-gold);
}

/* ==========
  MOBILE NAV 
  ========== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 32px rgba(16,78,139,0.14);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  padding: 28px 16px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.65,.05,.36,1);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0%);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--brand-primary);
  cursor: pointer;
  margin-bottom: 20px;
  transition: color .16s;
}
.mobile-menu-close:hover {
  color: var(--brand-gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.12rem;
  padding: 12px 4px;
  color: var(--brand-primary);
  border-radius: 7px;
  transition: color 0.19s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(183,107,0,0.09);
  color: var(--brand-gold);
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Fix body scroll when menu open (should be toggled via JS on menu open) */
body.mobile-menu-open {
  overflow: hidden;
}

/* ==================
  FOOTER
  ================== */
footer {
  background: #101828;
  color: #ececec;
  padding: 48px 0 16px 0;
}
footer .container {
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
footer a, .footer-nav a, .footer-contact span {
  color: #fff;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-gold);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
}
.footer-contact img {
  width: 22px; height: 22px; margin-right: 8px; vertical-align: middle;
}
.footer-copy {
  margin-top: 16px;
  color: #bbb;
  font-size: 0.95rem;
}

@media (max-width: 750px) {
  footer .container, .footer-contact, .footer-nav {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonial-slider, .testimonial-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fffefc;
  color: #222;
  border-radius: 17px;
  box-shadow: 0 2px 12px rgba(183,107,0,0.08);
  padding: 30px 26px 24px 26px;
  flex: 1 1 280px;
  min-width: 220px;
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .2s, border .17s;
  border-left: 3px solid var(--brand-accent);
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 22px rgba(183,107,0,0.17);
  border-left: 3px solid #ffb43b;
}
.testimonial-card p {
  color: #221c0e;
  font-size: 1.03rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-weight: 600;
  color: var(--brand-primary);
  font-family: var(--font-display);
}

.ratings-summary {
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-size: 1.13rem;
  margin-top: 10px;
  padding-left: 4px;
}

/* Ensure contrast in testimonial sections */
@media (max-width: 650px) {
  .testimonial-slider {
    flex-direction: column;
  }
}

/* ===========
   FAQ ACCORDION
   =========== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.faq-accordion h3 {
  font-size: 1.20rem;
  font-family: var(--font-display);
  background: #faf3e6;
  padding: 13px 20px 11px 16px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0;
  color: var(--brand-primary);
  cursor: pointer;
  transition: background .14s;
}
.faq-accordion h3:hover {
  background: #fbe2ad;
}
.faq-accordion p {
  background: #fff;
  margin: 0;
  padding: 11px 18px 13px 18px;
  border-radius: 0 0 10px 10px;
  border-bottom: 1px solid #f6e6be;
  color: #17140d;
}
.faq-search-bar {
  width: 100%;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-search-bar input {
  width: 100%;
  padding: 9px 15px;
  border-radius: 9px;
  border: 1px solid #e2ba8f;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #fffbea;
  transition: border .14s;
}
.faq-search-bar input:focus {
  border: 1.5px solid var(--brand-gold);
}

/* ===========
   CONTACT QUICK
   =========== */
.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
}
.contact-quick > div {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  font-size: 1.02rem;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
}
.contact-info img {
  width: 23px;
  height: 23px;
}

@media (max-width: 720px) {
  .contact-info, .contact-quick {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

/* ===========
   PROCESS HIGHLIGHT
   =========== */
.process-highlight {
  background: #fff7ed;
  color: var(--brand-gold);
  border: 1.7px solid #ffe3b1;
  border-radius: 13px;
  padding: 13px 21px;
  font-size: 1.09rem;
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 22px;
}

/* ===========
   COOKIE CONSENT BANNER
   =========== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  background: #fffbe6;
  box-shadow: 0 -4px 18px rgba(16,78,139,0.08);
  padding: 24px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  z-index: 1250;
  font-size: 1rem;
  font-family: var(--font-body);
  border-top: 2.8px solid var(--brand-gold);
  transition: transform .32s cubic-bezier(.85,0,.36,1), opacity .16s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-btn {
  padding: 9px 26px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(183,107,0,0.06);
  transition: background .14s, color .11s, transform .12s;
}
.cookie-btn.accept {
  background: var(--brand-gold);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffb43b;
  color: var(--brand-primary);
  transform: translateY(-2px) scale(1.05);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--brand-accent);
  border: 1.5px solid var(--brand-accent);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fbe2ad;
  color: var(--brand-primary);
}
.cookie-btn.settings {
  background: #f5f7fa;
  color: var(--brand-primary);
  border: 1.5px solid #d1c7b2;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffeccb;
}

/* ===========
   COOKIE MODAL
   =========== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1350;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,78,139,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity .2s;
}
.cookie-modal-overlay.hide {
  pointer-events: none;
  opacity: 0;
}
.cookie-modal {
  background: #fffefc;
  padding: 40px 24px 30px 24px;
  border-radius: 22px;
  box-shadow: 0 8px 64px 0 rgba(16,78,139,0.12);
  max-width: 470px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.48rem;
  color: var(--brand-gold);
  margin-bottom: 4px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.06rem;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-gold);
  border-radius: 6px;
  margin-right: 6px;
}
.cookie-category.essential label {
  font-weight: 700;
  color: var(--brand-primary);
}
.cookie-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal-close {
  margin-left: auto;
  background: none; border: none;
  color: var(--brand-accent);
  font-size: 2rem;
  cursor: pointer;
  transition: color .19s;
  align-self: flex-end;
}
.cookie-modal-close:hover {
  color: #ffb43b;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 25px 7px 15px 7px;
    border-radius: 14px;
    max-width: 340px;
  }
  .cookie-modal-btns {
    flex-direction: column;
    gap: 7px;
  }
}

/* ============
   OTHER GLOBALS
   ============ */
::-webkit-scrollbar {
  width: 12px;
  background: #f8f9fc;
}
::-webkit-scrollbar-thumb {
  background: #c9ab74;
  border-radius: 20px;
}
::selection {
  background: #fde8ba;
  color: var(--brand-primary);
}

/* =========
   MEDIA QUERIES FOR RESPONSIVENESS
   ========= */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
}
@media (max-width: 900px) {
  .feature-grid,
  .service-cards {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .section {
    margin-bottom: 32px;
    padding: 30px 7px;
    border-radius: 11px;
  }
  .card {
    padding: 20px 10px;
    border-radius: 9px;
  }
}

/* Fix: minimum gap between all cards/sections */
.section + .section,
.card + .card, .service-cards > div + div, .feature-grid > div + div {
  margin-top: 24px;
}

/* ==== Custom Gold Details/Accents ==== */
.section,
.card,
.feature-grid > div,
.service-cards > div,
.testimonial-card,
footer {
  box-shadow: 0 4px 16px rgba(183,107,0,0.030), var(--brand-shadow);
}
.feature-grid > div:before, .service-cards > div:before {
  content: '';
  display: block;
  height: 5px;
  width: 42px;
  background: var(--brand-gold);
  border-radius: 5px 13px 7px 7px;
  margin-bottom: 12px;
  opacity: .45;
}
@media (max-width:700px) {
  .feature-grid > div:before, .service-cards > div:before {
    width: 28px;
    margin-bottom: 6px;
  }
}

/* Luxury Gold Text Highlights */
h1 span, h2 span, h3 span, strong.gold {
  color: var(--brand-gold) !important;
}

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

/* =========================
   HIDE/SHOW UTILS
   ========================= */
.hide {
  display: none !important;
}

/* =========================
   END OF STYLE
   ========================= */
