/* ================================================================
   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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}
h1, h2, h3, h4, h5, h6, strong, b {
  font-weight: 700;
}
button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  background: unset;
  border: none;
  cursor: pointer;
}
input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border-radius: 0;
}
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FAFAF8;
  min-height: 100vh;
}

/* ================================================================
   CUSTOM PROPERTIES & FONTS
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Open+Sans:wght@400;600;700&display=swap');
:root {
  --font-display: 'Playfair Display', serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --brand-primary: #1A2330;
  --brand-secondary: #BDB89D;
  --brand-accent: #FFFFFF;
  --brand-bg: #FAFAF8;
  --brand-divider: #E4E2D9;
  --brand-text: #1C2028;
  --brand-subtle: #F7F6F1;
  --brand-shadow: rgba(36,40,60,0.07);
  --heading-lg: 2.5rem;
  --heading-md: 2rem;
  --heading-sm: 1.5rem;
  --body-lg: 1.125rem;
  --body-md: 1rem;
  --body-sm: 0.9375rem;
  --radius-card: 18px;
  --radius-btn: 24px;
  --shadow-card: 0 6px 24px var(--brand-shadow);
  --transition: 0.24s cubic-bezier(0.76,0,0.24,1);
}

/* ================================================================
   GENERAL PAGE STRUCTURE & TYPOGRAPHY
   ================================================================ */
html {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--brand-bg);
  color: var(--brand-text);
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--brand-bg);
  color: var(--brand-text);
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

main {
  flex: 1 0 auto;
  width: 100%;
}

.section {
  background: var(--brand-accent);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-card);
  box-shadow: 0 2px 14px var(--brand-shadow);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--heading-lg);
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: var(--heading-md);
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 12px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: var(--heading-sm);
  font-weight: 700;
  color: var(--brand-secondary);
  margin-bottom: 7px;
  line-height: 1.2;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

p, ul, ol, li {
  font-family: var(--font-body);
  color: var(--brand-text);
  font-size: var(--body-md);
  margin-bottom: 0;
}

ul, ol {
  margin-left: 1.3em;
  margin-bottom: 0;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0.5em;
  position: relative;
}
ul li::before {
  content: '\2022';
  position: absolute;
  left: -1em;
  color: var(--brand-secondary);
}

blockquote {
  padding-left: 20px;
  border-left: 3px solid var(--brand-secondary);
  font-family: var(--font-display);
  font-size: 1.1em;
  margin: 12px 0;
  color: var(--brand-primary);
}

strong, b {
  font-weight: 700;
  color: var(--brand-primary);
}
a {
  color: var(--brand-primary);
  transition: color var(--transition);
}
a:hover,
a:focus {
  color: var(--brand-secondary);
  outline: none;
}

/* Headings on mobile scale */
@media (max-width: 540px) {
  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.35rem; }
  h3, .h3 { font-size: 1.1rem; }
}

/* ================================================================
   HEADER & NAVIGATION
   ================================================================ */
header {
  width: 100%;
  background: var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--brand-divider);
  z-index: 50;
  position: relative;
}
header > a img {
  height: 40px;
  margin-right: 32px;
  vertical-align: middle;
}
header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-right: 24px;
}
header nav a {
  font-family: var(--font-body);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  padding: 8px 0;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
header nav a:hover, header nav a:focus {
  color: var(--brand-secondary);
}
.cta-primary {
  background: var(--brand-primary);
  color: var(--brand-accent);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 10px var(--brand-shadow);
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cta-primary:hover,.cta-primary:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  box-shadow: 0 4px 24px var(--brand-shadow);
  transform: translateY(-1px) scale(1.04);
}

/* Hide mobile menu toggler by default */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 18px;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  font-size: 2rem;
  box-shadow: 0 2px 10px var(--brand-shadow);
  z-index: 80;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--brand-primary);
}

/* ================================================================
   MOBILE MENU (SLIDE-IN, RTL)
   ================================================================ */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--brand-accent);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 90vw;
  max-width: 340px;
  z-index: 200;
  box-shadow: -4px 0 22px var(--brand-shadow);
  padding: 32px 24px 24px 32px;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(0.73, 0.01, 0.2, 1);
}
.mobile-menu.active {
  transform: translateX(0%);
  box-shadow: -4px 0 16px var(--brand-shadow);
}
.mobile-menu-close {
  align-self: flex-end;
  color: var(--brand-primary);
  background: var(--brand-subtle);
  font-size: 2rem;
  border-radius: 50%;
  padding: 8px 12px;
  margin-bottom: 30px;
  border: none;
  box-shadow: 0 2px 10px var(--brand-shadow);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:focus {
  outline: 2px solid var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-size: 1.20rem;
  font-weight: 700;
  padding: 13px 0 13px 12px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-accent);
}

/* Overlay for mobile menu (optional, in-page only) */
.mobile-menu-backdrop {
  content: '';
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  z-index: 190;
  background: rgba(30,34,40,0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* ---------------------------------------------------------------
   MOBILE-FIRST: Nav & Header
   --------------------------------------------------------------- */
@media (max-width: 992px) {
  header nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ================================================================
   MAIN CONTENT & FLEXBOX LAYOUTS (mandatory classes)
   ================================================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-accent);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px var(--brand-shadow);
  transform: translateY(-3px) scale(1.01);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--brand-subtle);
  border-radius: var(--radius-card);
  box-shadow: 0 3px 20px var(--brand-shadow);
  margin-bottom: 20px;
  color: var(--brand-primary);
  min-width: 0;
  flex: 1 1 300px;
}
.testimonial-card strong {
  font-family: var(--font-display);
  color: var(--brand-secondary);
  font-size: 1.08em;
  display: block;
  margin-top: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Specific grid/section flex handling for custom blocks */
.feature-grid, .service-summary-grid, .detailed-service-list, .analysis-overview-list, .review-list-summary, .property-list, .report-teaser-list, .team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.feature-grid > div, .service-summary-grid > div, .detailed-service-list > div, .analysis-overview-list > div, .review-list-summary > div, .property-list > div, .report-teaser-list > div, .team-member-list > div {
  background: var(--brand-accent);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 20px 20px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 390px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid > div img {
  height: 36px;
  width: 36px;
  margin-bottom: 8px;
}
.feature-grid > div:hover,
.service-summary-grid > div:hover,
.detailed-service-list > div:hover,
.analysis-overview-list > div:hover,
.property-list > div:hover,
.report-teaser-list > div:hover {
  box-shadow: 0 8px 36px var(--brand-shadow);
  transform: translateY(-2px) scale(1.018);
}

.step_by_step_guide ol {
  padding-left: 1.1em;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: var(--body-md);
}
.step_by_step_guide li {
  margin-bottom: 0px;
  position: relative;
  counter-increment: step;
}
.step_by_step_guide li::before {
  content: counter(step) '.';
  color: var(--brand-secondary);
  font-family: var(--font-display);
  font-weight: 700;
  position: absolute;
  left: -1.5em;
}

.key-features-overview, .review-scoring-overview, .trend-highlights, .quality-standards, .service-benefit-highlights, .consultation-overview, .pricing-summary, .pricing-overview {
  background: var(--brand-subtle);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 24px;
  margin-top: 10px;
}
.review-scoring-overview ul, .key-features-overview ul, .trend-highlights ul, .quality-standards ul, .service-benefit-highlights ul, .consultation-overview ul {
  margin-left: 1.2em;
  margin-bottom: 0;
}
.review-scoring-overview ul li, .key-features-overview ul li, .trend-highlights ul li, .quality-standards ul li, .service-benefit-highlights ul li, .consultation-overview ul li {
  margin-bottom: 8px;
}

/* Testimonial slider layout */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}

/* Contact & Address sections */
.contact-details {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 6px;
}
.contact-details img {
  height: 30px;
  width: 30px;
}
.opening-hours {
  margin-bottom: 24px;
}
.address-map {
  margin-bottom: 24px;
}

/* Cards (universal for visual hierarchy) */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Property filter options, teasers */
.property-filter-options, .pricing-summary, .pricing-overview {
  margin-top: 18px;
  margin-bottom: 24px;
}
.property-filter-options p {
  font-size: 1.05rem;
  color: var(--brand-primary);
}

/* ================================================================
   FOOTER
   ================================================================ */
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 0 20px 0;
  gap: 18px;
}
footer img {
  height: 46px;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--brand-secondary);
  font-family: var(--font-body);
  font-size: 0.99rem;
  letter-spacing: 0.01em;
  padding: 7px 0;
  transition: color var(--transition);
}
footer nav a:hover,
footer nav a:focus {
  color: var(--brand-accent);
}
.footer-contact {
  font-size: 0.97rem;
  text-align: center;
}
.footer-contact a {
  color: var(--brand-secondary);
  text-decoration: underline;
  transition: color var(--transition);
}
.footer-contact p{
  color: white;
}
.footer-contact a:hover {
  color: var(--brand-accent);
}

/* ================================================================
   COOKIE CONSENT BANNER (fixed bottom)
   ================================================================ */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: var(--brand-accent);
  color: var(--brand-text);
  padding: 20px 32px 20px 32px;
  box-shadow: 0 -4px 24px rgba(30,30,38,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-top: 1.5px solid var(--brand-divider);
  animation: fadeInUp 0.48s;
}
@keyframes fadeInUp {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner.show {
  display: flex;
}
.cookie-consent-banner.hide {
  display: none !important;
}
.cookie-consent-banner p {
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-size: 1rem;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
  justify-content: center;
}
.cookie-btn {
  border: none;
  outline: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 26px;
  box-shadow: 0 2px 8px var(--brand-shadow);
  cursor: pointer;
  background: var(--brand-primary);
  color: var(--brand-accent);
  margin: 0 1px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.cookie-btn.settings {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.cookie-btn.accept {
  background: var(--brand-primary);
  color: var(--brand-accent);
}
.cookie-btn.reject {
  background: #BC3929;
  color: #fff;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  transform: scale(1.036);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 301;
  background: rgba(22,24,28,.52);
  opacity: 1;
  animation: fadeIn 0.24s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%) scale(1);
  z-index: 305;
  background: var(--brand-accent);
  border-radius: 22px;
  box-shadow: 0 8px 64px rgba(34,36,56,0.19);
  padding: 36px 36px 28px 36px;
  min-width: 330px;
  max-width: 95vw;
  width: 440px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: modalIn 0.33s cubic-bezier(.42,.05,.35,1.2);
}
@keyframes modalIn {
 from { opacity: 0; transform: translate(-50%,-25%) scale(.96); }
 to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--brand-primary);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 8px 0;
  border-bottom: 1px solid var(--brand-divider);
  font-size: 1rem;
  min-width: 0;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-category label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--brand-primary);
}
.cookie-modal .cookie-toggle {
  width: 42px;
  height: 22px;
  border-radius: 14px;
  background: var(--brand-subtle);
  border: 1.5px solid var(--brand-secondary);
  position: relative;
  display: inline-block;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-modal .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background-color: var(--brand-secondary);
  border-radius: 50%;
  transition: .2s;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  left: 22px;
  background: var(--brand-primary);
}
.cookie-modal .cookie-toggle input:not(:checked) + .slider {
  background: var(--brand-secondary);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}

.cookie-modal .desc {
  font-size: 0.97rem;
  color: var(--brand-text);
  margin-bottom: 12px;
}

.cookie-modal .cookie-category .desc {
  font-size: 0.94rem;
  color: var(--brand-text);
  margin-left: 7px;
}

/* Ensure always visible toggle for essential cookies */
.cookie-modal .cookie-category.essential {
  opacity: 0.7;
}
.cookie-modal .cookie-category.essential label {
  font-style: italic;
}
.cookie-modal .cookie-toggle input[type="checkbox"]:disabled + .slider {
  background: var(--brand-divider);
}

/* ================================================================
   RESPONSIVENESS (mobile-first)
   ================================================================ */
@media (max-width: 1080px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 32px 12px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid > div, .service-summary-grid > div, .detailed-service-list > div, .team-member-list > div,
  .analysis-overview-list > div, .review-list-summary > div, .property-list > div, .report-teaser-list > div {
    flex: 1 1 95vw;
    min-width: 200px;
    max-width: 99vw;
    padding: 18px 12px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0 !important;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    gap: 12px;
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .section {
    margin-bottom: 38px;
    padding: 18px 3vw;
  }
  .content-wrapper {
    gap: 11px;
    padding: 0;
  }
  .text-section {
    padding: 0 0 0 0;
    max-width: 99vw;
    text-align: left;
  }
  .feature-grid,
  .service-summary-grid, .detailed-service-list, .team-member-list, .analysis-overview-list, .review-list-summary, .property-list, .report-teaser-list {
    flex-direction: column;
    gap: 13px;
    margin-bottom: 12px;
  }
  .feature-grid > div, .service-summary-grid > div, .detailed-service-list > div, .analysis-overview-list > div, .review-list-summary > div, .property-list > div, .report-teaser-list > div {
    padding: 12px 7px;
    margin-bottom: 10px;
    min-width: 0;
    max-width: 98vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  footer {
    gap: 11px;
    padding: 30px 0 16px 0;
  }
}
@media (max-width: 540px) {
  .container {
    padding-left: 1vw;
    padding-right: 1vw;
  }
  .section {
    padding: 9px 1vw;
    margin-bottom: 18px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    padding: 13px 3vw;
    gap: 9px;
    font-size: 0.94rem;
  }
  .cookie-modal {
    padding: 19px 7vw 19px 7vw;
    min-width: 170px;
    width: 97vw;
    max-width: 100vw;
  }
}

/* ================================================================
   MICRO-INTERACTIONS & EFFECTS
   ================================================================ */
.card,
.feature-grid > div,
.service-summary-grid > div,
.detailed-service-list > div,
.analysis-overview-list > div,
.review-list-summary > div,
.property-list > div,
.report-teaser-list > div {
  transition: box-shadow var(--transition), transform var(--transition);
}
.cta-primary, .cookie-btn {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within,
.feature-grid > div:hover, .service-summary-grid > div:hover, .detailed-service-list > div:hover,
.property-list > div:hover, .report-teaser-list > div:hover {
  box-shadow: 0 10px 34px var(--brand-shadow);
  transform: translateY(-2px) scale(1.018);
}
.cta-primary:hover, .cta-primary:focus,
.cookie-btn:hover, .cookie-btn:focus {
  box-shadow: 0 6px 22px var(--brand-shadow);
  transform: translateY(-1px) scale(1.04);
}

/* Utility classes */
.hide { display: none !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 20px; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.w-100 { width: 100%; }
.m-auto { margin-left: auto; margin-right: auto; }

/* --- Accessibility HIGH CONTRAST for testimonials --- */
.testimonial-card {
  background: var(--brand-subtle);
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-divider);
  box-shadow: 0 4px 24px var(--brand-shadow);
}
.testimonial-card p { color: var(--brand-primary); font-size:1.08rem; }
.testimonial-card strong {
  color: var(--brand-secondary);
}

/* Cookie categories in modal should have clear contrast */
.cookie-modal .cookie-category label,
.cookie-modal .cookie-category {
  color: var(--brand-primary);
}
.cookie-modal .cookie-category.essential {
  color: #999;
}

/* ================================================================
   PRINT STYLES (clean, brand-consistent)
   ================================================================ */

/* ================================================================
   END OF CSS
   ================================================================ */
