/* -------------------- 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;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
body {
  background: #F9F8FB;
  color: #203354;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: #203354;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  border: 0;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* -------------------- FONT IMPORTS -------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');

/* -------------------- CSS VARIABLES -------------------- */
:root {
  --primary: #203354;
  --secondary: #BEBBBB;
  --accent: #F2A341;
  --brand-blue: #387BFE;
  --brand-pink: #F8407A;
  --brand-green: #48DEA7;
  --brand-yellow: #FDE851;
  --text: #203354;
  --subtitle: #656579;
  --white: #FFF;
  --shadow: 0 2px 12px 0 rgba(46,55,118,0.08);
  --radius: 18px;
  --section-bg: #FEF5E7;
}

/* -------------------- LAYOUT CONTAINERS -------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
}
.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);
  transition: transform 0.22s cubic-bezier(.37,1.19,.56,1), box-shadow 0.24s;
}
.card:hover {
  transform: translateY(-8px) scale(1.03) rotate(-1.5deg);
  box-shadow: 0 8px 32px rgba(35,47,94,0.18);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 28px 30px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  position: relative;
  min-width: 240px;
  max-width: 600px;
  color: var(--primary);
  font-size: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------------- HEADER -------------------------- */
header {
  width: 100%;
  background: var(--primary);
  box-shadow: 0 2px 10px rgba(32,51,84,0.05);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-logo img, header > .container > a img {
  height: 44px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 16px;
  border-radius: 8px;
  padding: 6px 10px;
  position: relative;
  transition: color 0.18s, background 0.24s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  border-radius: 12px;
  padding: 13px 28px;
  margin-left: 20px;
  box-shadow: 0 4px 18px rgba(242,163,65,0.12);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.3s;
  border: none;
  outline: none;
  position: relative;
  top: 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: #203354;
  color: #F2A341;
  box-shadow: 0 8px 32px rgba(32,51,84,0.18);
  transform: scale(1.03);
}
.btn-secondary {
  background: var(--brand-blue);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  border-radius: 12px;
  padding: 13px 28px;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 4px 18px rgba(56,123,254,0.10);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.3s;
  border: none;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--brand-pink);
  color: #fff !important;
}

/* -------------------- MOBILE NAVIGATION -------------------- */
.mobile-menu-toggle {
  background: var(--accent);
  color: var(--primary);
  font-size: 2.2rem;
  border-radius: 10px;
  border: none;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--brand-pink);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,51,84, 0.92);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.76,.25,.32,1);
  box-sizing: border-box;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 28px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  cursor: pointer;
  border: none;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-pink);
  color: #fff;
}
.mobile-nav {
  margin-top: 84px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  width: 100%;
  padding: 0 38px;
}
.mobile-nav a {
  color: #fff;
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: none;
  border-radius: 8px;
  padding: 8px 10px;
  width: 100%;
  transition: background 0.19s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .btn-primary {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  header .container {
    height: 56px;
  }
  .btn-primary, .btn-secondary {
    font-size: 14px;
    padding: 11px 18px;
  }
  .mobile-nav a {
    font-size: 18px;
    padding: 7px 6px;
    margin-bottom: 7px;
  }
  .mobile-menu-close {
    width: 40px; height: 40px; font-size: 1.8rem;
    top: 8px; right: 14px;
  }
}

/* -------------------- HERO SECTIONS -------------------- */
.hero {
  background: linear-gradient(90deg, #FDE851 0%, #F2A341 100%);
  background-size: 150%;
  padding: 70px 0 55px 0;
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 0 7px 32px 0 rgba(242,163,65,0.08);
  /* Subtle playful wave animation on gradient */
  animation: hero-bg-move 10s linear infinite alternate;
}
@keyframes hero-bg-move {
  to { background-position: 100% 0; }
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 650px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.13;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--primary);
}


/* -------------------- HEADINGS & TYPOGRAPHY -------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
}
h1 { font-size: 48px; margin-bottom: 12px; }
h2 { font-size: 32px; margin-bottom: 10px; }
h3 { font-size: 22px; margin-bottom: 7px; }
h4 { font-size: 18px; margin-bottom: 5px; }
p, li, span, blockquote {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
}
blockquote {
  font-style: italic;
  color: var(--brand-pink);
  font-size: 23px;
  background: #fff6ef;
  border-left: 8px solid var(--accent);
  padding: 28px 32px;
  margin-bottom: 22px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 24px; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 17px; }
}
@media (max-width: 480px) {
  h1 { font-size: 26px; }
  h2 { font-size: 17px; }
}

/* -------------------- CARDS & PREVIEWS -------------------- */
.card, .blog-preview, .property-summary, .testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: box-shadow 0.18s, transform 0.16s;
}
.blog-preview, .property-summary {
  padding: 20px 24px;
  margin-bottom: 22px;
  width: 100%;
  max-width: 580px;
  min-width: 250px;
  position: relative;
}
.property-summary h3, .blog-preview h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 9px;
}
.property-summary ul, .blog-preview p {
  color: var(--subtitle);
  font-size: 16px;
  margin-bottom: 6px;
  margin-left: 0;
}
.property-summary:hover, .blog-preview:hover {
  box-shadow: 0 10px 32px 2px rgba(56,123,254,0.12);
  transform: scale(1.025) rotate(-1.2deg);
  border-color: var(--brand-pink);
}
.read-more {
  color: var(--brand-pink);
  font-weight: bold;
  font-size: 15px;
  transition: color 0.15s;
  text-decoration: underline;
}
.read-more:hover, .read-more:focus {
  color: var(--brand-blue);
}

/* -------------------- FEATURE GRIDS -------------------- */
.features-grid, .property-list-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.features-grid > div, .property-list-preview > div {
  flex: 1 1 250px;
  min-width: 220px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 27px 21px 21px 21px;
  transition: box-shadow 0.18s, transform 0.20s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}
.features-grid > div:hover, .property-list-preview > div:hover {
  transform: scale(1.045) rotate(-2deg);
  box-shadow: 0 8px 28px 4px rgba(248,64,122,0.12);
}
.features-grid img, .property-list-preview img {
  width: 48px; height: 48px;
  margin-bottom: 13px;
}
.features-grid h3 {
  color: var(--brand-blue);
  font-size: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.features-grid p {
  color: var(--subtitle);
  font-size: 15px;
}

/* -------------------- RESPONSIVE FLEX SECTIONS -------------------- */
.contact-details, .office-info, .contact-cta {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin-bottom: 20px;
}
.contact-details {
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.office-info, .contact-cta {
  flex: 1 1 270px;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px 14px 20px;
}
.contact-cta .btn-primary {
  margin-left: 0;
}
.map-placeholder {
  margin-top: 20px;
  margin-bottom: 20px;
  background: #fff7e1;
  border-radius: 10px;
  padding: 21px 13px;
  color: var(--primary);
  box-shadow: var(--shadow);
  font-size: 16px;
}
@media (max-width: 900px) {
  .contact-details {
    flex-direction: column;
    gap: 23px;
  }
}

/* -------------------- TESTIMONIALS -------------------- */
.testimonials, .testimonials-preview {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 24px 48px 24px;
  margin-bottom: 60px;
}
.testimonials-preview .testimonial-card,
.testimonials .testimonial-card {
  width: 100%;
  max-width: 660px;
  background: #fffbe1;
  color: var(--primary);
  border-left: 7px solid var(--brand-green);
  margin-bottom: 25px;
  position: relative;
  font-size: 16px;
  animation: testimonial-float 4s infinite alternate ease-in-out;
}
@keyframes testimonial-float {
  0% { transform: translateY(0px) rotate(-1deg); }
  100% { transform: translateY(-7px) rotate(1deg); }
}
.stars {
  display: flex;
  align-items: center;
  gap: 3.5px;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 15px;
}

/* -------------------- ABOUT & STORY -------------------- */
.about-story ul, .team ul, .services-preview ul, .search-benefits ul, .next-steps ul {
  margin-left: 20px;
  margin-bottom: 16px;
}
.about-story ul li, .team ul li, .services-preview ul li, .search-benefits ul li, .next-steps ul li {
  color: var(--brand-pink);
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 16px;
}

/* -------------------- FOOTER -------------------- */
footer {
  background: linear-gradient(90deg, var(--primary) 50%, var(--brand-blue) 100%);
  color: #fff;
  padding: 34px 0 22px 0;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -6px 30px rgba(32,51,84,0.11);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 14px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.14s;
  margin-bottom: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-yellow);
}
.footer-contact {
  font-size: 15px;
  color: #fff;
  margin-bottom: 0;
}
.footer-contact img {
  width: 18px; height: 18px; vertical-align: middle; margin-right: 6px;
}
.footer-socials {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 8px;
}
.footer-socials a img {
  width: 29px; height: 29px;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
  transition: background 0.21s;
}
.footer-socials a:hover img {
  background: var(--brand-yellow);
}

/* -------------------- BLOG FILTER -------------------- */
.blog-filter {
  display: flex;
  flex-direction: row;
  gap: 7px;
  font-size: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.blog-filter a {
  color: var(--brand-pink);
  font-weight: 800;
  border-radius: 8px;
  padding: 3px 11px;
  background: #fff2f7;
  transition: background 0.21s, color 0.21s;
}
.blog-filter a:hover, .blog-filter a:focus {
  background: var(--brand-pink);
  color: #fff;
}

/* -------------------- LEGAL PAGES -------------------- */
.legal {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 48px 32px;
}
.legal h1 {
  font-size: 38px;
  margin-bottom: 7px;
}
.legal h2 {
  font-size: 21px;
  color: var(--brand-pink);
  margin-bottom: 3px;
}
.legal ul {
  margin-bottom: 14px;
  margin-left: 19px;
}

/* -------------------- CONFIRMATION -------------------- */
.confirmation h1 {
  color: var(--brand-green);
  font-size: 38px;
}
.confirmation .next-steps {
  background: var(--section-bg);
  padding: 14px 18px;
  border-radius: 13px;
  margin-bottom: 18px;
}

/* -------------------- MEDIA QUERIES: RESPONSIVENESS -------------------- */
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  .features-grid, .property-list-preview {
    gap: 14px;
  }
  .footer-logo img {
    height: 32px;
  }
}
@media (max-width: 768px) {
  .features-grid, .property-list-preview {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .section, .legal {
    padding-left: 7px; padding-right: 7px;
  }
  .container {
    padding-left: 7px; padding-right: 7px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .card, .blog-preview, .property-summary, .testimonial-card {
    min-width: 90%;
    padding: 16px 9px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 640px) {
  .footer-contact {
    font-size: 13px;
  }
  .testimonial-card {
    padding: 17px 10px 11px 10px;
    font-size: 15px;
  }
  .hero, .section {
    padding: 33px 0 22px 0;
  }
}
@media (max-width: 470px) {
  .hero {
    border-radius: 0;
    padding: 23px 0 18px 0;
  }
  .content-wrapper {
    gap: 13px;
  }
  .testimonial-card {
    padding: 10px 5px;
  }
  .footer-nav a, .footer-contact, .footer-socials {
    font-size: 13px;
  }
}

/* -------------------- COOKIE CONSENT BANNER -------------------- */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe1;
  color: var(--primary);
  box-shadow: 0 -2px 28px 0 rgba(32,51,84,0.07);
  border-top: 3.5px solid var(--accent);
  padding: 21px 17px 21px 17px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 2000;
  animation: banner-slide-up 0.7s cubic-bezier(.44,.91,.7,.98);
  gap: 20px;
  font-size: 16px;
}
#cookie-banner.hide {
  display: none;
}
@keyframes banner-slide-up {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
#cookie-banner .cookie-text {
  max-width: 520px;
  font-size: 16px;
}
#cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: 10px;
}
.cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn {
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 15px;
  padding: 10px 17px;
  cursor: pointer;
  border: none;
  margin: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
}
.cookie-accept-btn {
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 3px 14px 0 rgba(72,222,167,0.07);
}
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: var(--brand-pink);
}
.cookie-reject-btn {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-settings-btn {
  background: none;
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--section-bg);
  color: var(--brand-blue);
}
@media (max-width: 620px) {
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 6px;
    font-size: 15px;
  }
  #cookie-banner .cookie-btn-group {
    margin-left: 0;
  }
}

/* -------------- COOKIE CONSENT MODAL -------------- */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2100;
  background: rgba(32,51,84,0.44);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.28s;
}
#cookie-modal.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbe1;
  border-radius: 19px;
  box-shadow: 0 7px 41px 0 rgba(242,163,65,0.16);
  padding: 45px 35px 27px 35px;
  min-width: 320px;
  max-width: 94vw;
  color: var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 23px;
  font-weight: bold;
  color: var(--brand-blue);
}
.cookie-modal-content .close-cookie-modal {
  position: absolute;
  right: 17px;
  top: 15px;
  background: var(--brand-pink);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  color: #fff;
  font-size: 1.6rem;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 7px;
  margin-bottom: 11px;
}
.category-row {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 16px;
}
.category-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
.category-essential {
  color: var(--brand-green);
  font-weight: bold;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

@media (max-width: 440px) {
  .cookie-modal-content {
    padding: 18px 4px 18px 7px;
  }
  #cookie-modal {
    align-items: flex-end;
  }
}

/* -------------------- MICRO-ANIMATIONS -------------------- */
.btn-primary, .btn-secondary, .footer-socials a img, .main-nav a, .read-more, .features-grid > div, .property-summary, .blog-preview, .card {
  transition: all 0.20s cubic-bezier(.45,.84,.38,1);
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.96);
}
.card::before, .features-grid > div::before {
  content: '';
  display: block;
  position: absolute;
  left: -12px;
  top: -12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-pink);
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}
.features-grid > div:nth-child(2)::before {
  background: var(--brand-blue);
  opacity: 0.11;
}
.features-grid > div:nth-child(3)::before {
  background: var(--brand-green);
  opacity: 0.10;
}
.features-grid > div:nth-child(4)::before {
  background: var(--brand-yellow);
  opacity: 0.13;
}

/* -------------------- GENERAL SPACING -------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  box-sizing: border-box;
}
.card-container, .content-grid, .text-image-section {
  gap: 24px;
}

/* -------------------- UTILITIES -------------------- */
.text-section {
  color: var(--primary);
  background: #fff7e1;
  border-radius: 10px;
  padding: 19px 10px;
  margin-bottom: 24px;
  box-shadow: 0 2px 11px rgba(242,163,65,0.08);
}
.text-center {
  text-align: center;
}
.align-center {
  align-items: center;
}

/* -------------------- PRINT SUPPORT -------------------- */
@media print {
  #cookie-banner, #cookie-modal, .mobile-menu { display: none !important; }
  header, footer { background: #fff !important; color: #000 !important; }
}

