/* ===========================
   CSS Reset & Base Styles
   =========================== */
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,
main, 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8FAFB;
  color: #1e2126;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
strong { font-weight: 600; }

/* ===========================
   Custom Fonts
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #F8FAFB;
  color: #23242e;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1e2126;
}
h1 { font-size: 2.7rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; }
p, li, dl, dt, dd {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #23242e;
  line-height: 1.7;
}

/* Typography - Luxury/Refined */
.section h1,
.section h2 {
  letter-spacing: -1px;
  color: #19568D;
}
h1, h2, .cta-btn {
  text-shadow: 0 2px 8px rgba(25,86,141,0.06);
}


/* ===========================
   Color Palette (Luxury Premium)
   =========================== */
:root {
  --primary: #19568D;      /* blue - brand primary */
  --secondary: #2C963F;    /* green - accent */
  --accent: #E9F4FD;       /* soft blue background */
  --gold: #C7A661;
  --gold-light: #F7E8C2;
  --dark: #23242e;
  --white: #fff;
  --border: #F1ECE2;
}

/* ================================
   Container & General Layout
   ================================ */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0px 4px 18px rgba(199, 166, 97, 0.07);
}
@media (max-width: 900px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}

/* ================================
   Premium Card Layouts & Grids
   ================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(25, 86, 141, 0.06);
  border: 1.5px solid var(--gold-light);
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.card:hover {
  box-shadow: 0 4px 30px rgba(25,86,141,0.12);
  border-color: var(--gold);
  z-index: 2;
}

.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;
}
@media (max-width: 768px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--accent);
  border-radius: 13px;
  padding: 20px 20px 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(39, 39, 39, 0.03);
  border: 1.5px solid #e7e8ed;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.features .feature-grid li {
  flex: 1 1 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--accent);
  border-radius: 13px;
  padding: 24px 18px 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(53, 43, 23, 0.04);
  border: 1.5px solid #e7e8ed;
}
.features .feature-grid img {
  width: 42px;
  margin-bottom: 14px;
}

@media (max-width: 1060px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .features .feature-grid li {
    max-width: 100%;
    width: 100%;
  }
}

/* ================================
   Header & Navigation
   ================================ */
header {
  background: var(--white);
  border-bottom: 1.5px solid #ece4d2;
  box-shadow: 0 2px 16px rgba(199, 166, 97, 0.03);
  padding: 0;
  position: sticky;
  top: 0; z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px;
  min-height: 70px;
}
header a img {
  height: 39px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-left: 40px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark);
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.2s;
}
.main-nav a::after {
  content: "";
  display: block;
  margin: 4px auto 0 auto;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--primary);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 70%;
}

.cta-btn {
  margin-left: auto;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--white);
  background: linear-gradient(93deg, var(--gold) 45%, var(--primary) 97%);
  border-radius: 25px;
  padding: 12px 34px;
  box-shadow: 0 2px 15px rgba(25,86,141,0.12);
  border: none;
  outline: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.26s, box-shadow 0.26s, color 0.22s;
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(93deg, var(--primary) 38%, var(--gold) 98%);
  color: var(--white);
  box-shadow: 0 6px 30px rgba(25,86,141,0.17);
  text-decoration: none;
}

/* Burger menu */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  margin-left: 30px;
  color: var(--primary);
  cursor: pointer;
  outline: none;
  z-index: 51;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover {
  color: var(--gold);
}

/* =========================
   Mobile Navigation Styles
   ========================= */
@media (max-width: 990px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(25, 86, 141, 0.98);
  z-index: 1000;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.52,0.08,0.24,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 2px 36px rgba(25, 86, 141, 0.32);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.35s cubic-bezier(0.52,0.08,0.24,1);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.2rem;
  font-weight: 700;
  position: absolute;
  top: 25px;
  right: 34px;
  cursor: pointer;
  z-index: 1012;
  transition: color 0.18s;
}
.mobile-menu-close:hover { color: var(--gold-light); }
.mobile-nav {
  margin-top: 80px;
  margin-left: 38px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  padding: 10px 0 5px 0;
  border-bottom: 1.5px solid transparent;
  border-radius: 4px;
  min-width: 200px;
  transition: color 0.18s, border-bottom 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
  background: rgba(247,232,194,0.06);
  border-bottom: 1.5px solid var(--gold);
}
/* Ensure mobile nav covers z-index over content */
.mobile-menu {
  box-shadow: 0 8px 32px rgba(25,86,141,0.27), 0 0 0 9000px rgba(0,0,0,0.20);
}

@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =============================
   Hero + Call to Action Section
   ============================= */
.hero {
  background: linear-gradient(62deg, var(--accent) 80%, var(--gold-light) 100%);
  min-height: 370px;
  border-radius: 0 0 25px 25px;
  margin-bottom: 48px;
  box-shadow: 0 1px 25px rgba(25, 86, 141, 0.07);
  display: flex;
  align-items: center;
}
.hero .container, .hero .content-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding-top: 34px;
  padding-bottom: 34px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.3rem;
  margin-bottom: 16px;
}
@media (min-width:560px) {
  .hero h1 { font-size: 2.8rem; }
 }
.hero p {
  color: #3e4752;
  font-size: 1.23rem;
  margin-bottom: 28px;
  max-width: 600px;
}
.hero .cta-btn {
  font-size: 1.17rem;
  padding: 14px 34px;
}

.cta {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(199, 166, 97, 0.09);
  margin-bottom: 40px;
}
.cta .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.cta h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
.cta p {
  color: #213040;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

/*********************************
 Feature/Services Cards
 *********************************/
.service-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.service-list > div {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(25,86,141,0.06);
  padding: 24px 20px;
  min-width: 210px;
  max-width: 340px;
  flex: 1 1 220px;
  border: 1.3px solid #ece4d2;
  transition: box-shadow 0.22s, border-color 0.22s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}
.service-list > div:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 22px rgba(25,86,141,0.12);
}
.service-list img {
  width: 38px; margin-bottom: 10px;
}
.service-list h3 {
  font-size: 1.12rem;
  color: var(--secondary);
  margin-bottom: 8px;
}
.service-list p {
  color: #354054;
  font-size: 0.98rem;
}
@media (max-width:1050px) {
  .service-list { flex-direction: column; }
  .service-list > div { max-width: 100%; }
}

/*********************************
 Testimonials/Reviews
 *********************************/
.testimonials, .testimonial-list {
  background: none;
}
.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 3px 18px rgba(25,86,141,0.09);
  padding: 26px 24px 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  border: 1.5px solid var(--gold-light);
  transition: box-shadow 0.18s, border-color 0.18s;
  min-width: 270px;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(199,166,97,.16);
  z-index: 3;
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.testimonial-content p {
  font-size: 1.13rem;
  color: #2e323a;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-meta strong {
  color: var(--primary);
  font-size: 0.98rem;
}
.testimonial-rating img {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px rgba(199,166,97,0.09));
}
.ratings-overview, .star-ratings-summary {
  margin-top: 16px;
  padding: 14px 14px 7px 14px;
  background: var(--accent);
  border-radius: 11px;
  box-shadow: 0 1px 7px rgba(25,86,141,0.03);
  color: #1e2126;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.star-ratings-summary h2 {
  margin-bottom: 0px;
}

/*********************************
 FAQ / List / Details / CTA-FAQ
 *********************************/
.faq .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 1.1rem;
}
dd {
  margin-bottom: 20px;
  color: #30343c;
  font-size: 1rem;
  padding-left: 12px;
}
.cta-faq {
  background: var(--accent);
  padding: 20px 20px;
  border-radius: 10px;
  display: flex; flex-direction: column; align-items:center;
}
.cta-faq a.cta-btn {
  margin-left: 14px; margin-top: 18px;
}
/* About/Values Split */
.values .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.values ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #2e323a;
}

/*********************************
 Contact Section
 *********************************/
.contact-info-block, .office-details ul {
  background: var(--accent);
  border-radius: 13px;
  box-shadow: 0 1px 7px rgba(25,86,141,0.04);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info-block p, .office-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #23242e;
  font-weight: 500;
  font-size: 1rem;
}
.contact-info-block img, .office-details img {
  width: 20px;
  margin-right: 4px;
}
.office-details ul{
  gap:10px;
}

/*********************************
 Footer Styles
 *********************************/
footer {
  background: #1e293b;
  color: var(--white);
  padding: 34px 0 12px 0;
  border-top: 2.5px solid var(--gold);
  font-size: 0.98rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px 5vw;
}
footer img {
  max-height: 36px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: var(--white);
  opacity: 0.93;
  font-size: 1rem;
  margin-bottom: 0px;
  transition: color 0.15s, opacity 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--gold); opacity:1; }
.footer-contact {
  min-width: 220px;
  display: flex; flex-direction: column;
  gap: 4px;
  opacity: 0.93;
}
.footer-contact img { width:18px; margin-right: 7px; vertical-align: middle;}
footer p {
  margin: 0px;
  color: #e3e8ef;
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/*********************************
 Case Studies, Process, Policy Pages
 *********************************/
.case-studies .content-wrapper > div,
.service-types .content-wrapper > div {
  background: var(--accent);
  border-radius: 13px;
  margin-bottom: 20px;
  padding: 24px 20px;
  box-shadow: 0 1px 8px rgba(53, 43, 23, 0.04);
  border: 1.5px solid #e7e8ed;
}
.process .content-wrapper {
  gap: 20px;
}
.guarantees ul li {
  margin-bottom: 8px;
  color: #2e323a;
}
.privacy-policy ul, .gdpr ul, .cookies-policy ul, .terms ul {
  margin-bottom: 18px;
  padding-left: 18px;
}
.privacy-policy ul li, .gdpr ul li, .cookies-policy ul li, .terms ul li {
  list-style: disc;
  margin-bottom: 7px;
  color: #23242e;
  font-size: 1rem;
}
.privacy-policy .content-wrapper, .gdpr .content-wrapper, .cookies-policy .content-wrapper, .terms .content-wrapper {
  gap: 16px;
}

/*********************************
 Thank You Page
 *********************************/
.thank-you .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  margin-bottom: 30px;
}

/*********************************
 Luxury Shadows, Borders, Details
 *********************************/
.card, .testimonial-card, .service-list > div, .features .feature-grid li {
  border: 1.5px solid var(--gold-light);
  box-shadow: 0 2px 14px rgba(199,166,97,0.05);
  transition: box-shadow 0.18s, border-color 0.16s, transform 0.2s;
}
.card:hover, .testimonial-card:hover, .service-list > div:hover, .features .feature-grid li:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(199,166,97,.13);
  transform: translateY(-3px) scale(1.01);
  z-index: 12;
}

/*********************************
 Cookie Consent Banner + Modal
 *********************************/
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2500;
  background: var(--white);
  color: var(--dark);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -2px 30px rgba(199,166,97,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 28px 18px 28px;
  gap: 10px;
  width: 100%;
  animation: bannerIn 0.4s cubic-bezier(.26,.92,.49,.98);
}
@keyframes bannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  font-size: 1rem;
  color: var(--dark);
}
.cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 7px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  border-radius: 21px;
  border: none;
  outline: none;
  padding: 8px 24px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
}
.cookie-btn.accept {
  background: linear-gradient(93deg, var(--gold) 45%, var(--primary) 97%);
  color: var(--white);
}
.cookie-btn.accept:hover {
  background: linear-gradient(93deg, var(--primary) 38%, var(--gold) 98%);
}
.cookie-btn.reject {
  background: var(--white);
  border: 1.5px solid var(--gold);
  color: var(--gold);
}
.cookie-btn.reject:hover {
  background: var(--gold-light);
}
.cookie-btn.settings {
  background: var(--accent);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--primary);
  color: var(--white);
}
@media (max-width: 540px) {
  .cookie-consent-banner {
    padding: 18px 12px 14px 12px;
    font-size: 0.97rem;
    gap: 7px;
  }
  .cookie-consent-buttons {
    flex-direction: column;
    gap: 7px;
    width: 100%;
    align-items: stretch;
  }
}

/*********************************
 Cookie Modal Styles
 *********************************/
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  right: 0; bottom: 0;
  background: rgba(25,86,141,0.2);
  z-index: 2700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(.26,.92,.49,.98);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.22s cubic-bezier(.26,.92,.49,.98);
}
.cookie-modal-content {
  background: var(--white);
  color: var(--dark);
  border-radius: 18px;
  box-shadow: 0 6px 40px rgba(25, 86, 141, 0.17);
  padding: 38px 30px 26px 30px;
  position: relative;
  max-width: 420px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalIn 0.32s cubic-bezier(.26,.92,.49,.98);
}
@keyframes modalIn {
  from { transform: translateY(60px) scale(0.94); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.12rem;
  color: var(--primary);
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.cookie-category-row label {
  font-weight: 500;
  color: #222934;
  font-size: 1.02rem;
}
.cookie-category-row .cookie-toggle {
  appearance: none;
  width: 36px;
  height: 22px;
  border-radius: 11px;
  background: #e7e7ea;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-category-row .cookie-toggle:checked {
  background: var(--gold);
}
.cookie-category-row .cookie-toggle:disabled {
  background: #f1ece2;
  cursor: not-allowed;
}
.cookie-category-row .cookie-toggle:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 3px #eee;
  transition: left 0.15s;
}
.cookie-category-row .cookie-toggle:checked:before {
  left: 17px;
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 16px;
  margin-top: 5px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 22px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.65rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal-close:hover { color: var(--gold-light); }

/*********************************
 Responsive & Spacing
 *********************************/
@media (max-width: 550px) {
  h1 { font-size: 2rem; }
  .container { padding: 0 8px; }
  .section { padding: 24px 4px;}
  .hero h1 { font-size: 2rem; }
}

/*********************************
 Prevent Overlap
 *********************************/
.card, .testimonial-card, .service-list > div, .features .feature-grid li, .content-wrapper > * {
  margin-bottom: 20px;
}
.card:last-child, .testimonial-card:last-child, .service-list > div:last-child, .features .feature-grid li:last-child, .content-wrapper > *:last-child {
  margin-bottom: 0;
}

/* Spacing scale for luxury appearance */
.section, .about .section, .faq .section {
  margin-bottom: 60px !important;
}

/*********************************
 Micro-interactions & Focus States
 *********************************/
a, .cta-btn, .cookie-btn, button, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  box-shadow: none;
}
a:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible, button:focus-visible {
  box-shadow: 0 0 0 2.5px var(--gold);
  border-radius: 6px;
}
.btn, .cta-btn, .cookie-btn {
  transition: background 0.22s, color 0.17s, transform 0.19s, box-shadow 0.19s;
}
.btn:active, .cta-btn:active, .cookie-btn:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(25,86,141,0.14);
}

/*********************************
 Print (optional for official doc)
 *********************************/
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu {display:none;}
  body { color: #23242e; background: #fff; }
  .section { background: none; box-shadow: none; border: none;}
  .content-wrapper, .container { box-shadow: none; background: none; }
}

/* ==================== */
/* End of luxury_premium CSS */
/* ==================== */
