/* ============================================================
   SMART STREET PROPERTIES — Lexend / Modern Design System
   Primary: #2A2D64  |  Accent: #2B77F3  |  Font: Lexend
   Transparent header with scroll transition
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colours */
  --primary: #2A2D64;
  --primary-hover: #1e2050;
  --primary-light: rgba(42, 45, 100, .08);
  --accent: #2B77F3;
  --accent-hover: #1d62d6;
  --accent-light: rgba(43, 119, 243, .10);
  --navy: #1a1c3d;
  --white: #fff;
  --black: #000;

  /* Surfaces */
  --surface-1: #ffffff;
  --surface-2: #FAFAFA;
  --surface-3: #F4F4F4;
  --surface-4: #eef0f3;
  --border-color: rgba(0,0,0,.08);
  --border-color-hover: rgba(0,0,0,.15);

  /* Text */
  --text-primary: #2A2D64;
  --text-secondary: #464746;
  --text-tertiary: #7a7d82;

  /* Font */
  --font: 'Lexend', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --radius: 8px;
  --shadow: 0 2px 4px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.10);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font); color: var(--text-secondary);
  line-height: 1.6; font-weight: 300; background: var(--surface-1);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { color: var(--text-primary); line-height: 1.2; font-weight: 400; }
h1 { font-size: 48px; }
h2 { font-size: 40px; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* -- BUTTONS -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); font-family: var(--font);
  font-size: 1rem; font-weight: 500; border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition); white-space: nowrap;
  min-height: 48px; letter-spacing: 0;
}
.btn--primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: var(--white); }
.btn--outline-dark { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--outline-dark:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.7); }

/* -- TOPBAR -- */
.topbar {
  position: relative; z-index: 101;
  background: transparent; font-size: .8125rem; color: rgba(255,255,255,.7);
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 20px; }
.topbar__link { display: flex; align-items: center; gap: 6px; color: inherit; transition: color var(--transition); }
.topbar__link:hover { color: var(--white); }

/* Solid topbar (property pages — no hero behind header) */
.topbar--solid {
  background: var(--primary); color: rgba(255,255,255,.7);
}

/* Page title bar (replaces hero on property pages) */
.page-title-bar {
  background: var(--surface-2); border-bottom: 1px solid var(--border-color);
  padding: 28px 0;
}
.page-title-bar h1 {
  font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 400; margin-bottom: 4px;
}
.page-title-bar p {
  font-size: .9375rem; color: var(--text-secondary); font-weight: 300;
}

/* Blue page title bar — transparent header overlays it */
.page-title-bar--blue {
  background: var(--primary);
  border-bottom: none;
  margin-top: -113px;
  padding: 160px 0 40px;
}
.page-title-bar--blue h1 { color: var(--white); }
.page-title-bar--blue p { color: rgba(255,255,255,.6); }

/* -- HEADER (transparent → white on scroll) -- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.header--scrolled {
  background: var(--white);
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-md);
}
.header__inner { display: flex; align-items: center; height: 72px; gap: 0; }
.header__logo { margin-right: auto; }
.header__logo img { height: 42px; width: auto; transition: opacity .3s ease; }
.header__actions { display: flex; align-items: center; gap: 12px; margin-left: 20px; }

/* Nav — white when transparent */
.nav__link {
  display: flex; align-items: center; gap: 4px;
  padding: 10px 16px; font-size: .9375rem; font-weight: 400;
  color: var(--white); transition: color var(--transition);
}
.nav__link:hover { color: rgba(255,255,255,.7); }
.header--scrolled .nav__link { color: var(--text-primary); }
.header--scrolled .nav__link:hover { color: var(--accent); }

.nav__chevron { transition: transform var(--transition); margin-top: 1px; }
.nav__item--has-dropdown:hover .nav__chevron { transform: rotate(180deg); }

/* Header button — outline light when transparent, filled on scroll */
.header .btn--outline-dark {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.header .btn--outline-dark:hover {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.8);
}
.header--scrolled .btn--outline-dark {
  background: var(--accent); color: var(--white); border-color: var(--accent);
}
.header--scrolled .btn--outline-dark:hover {
  background: var(--accent-hover); border-color: var(--accent-hover);
}

/* Hamburger — white when transparent */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px;
}
.hamburger span { display: block; width: 20px; height: 2px; background: var(--white); border-radius: 1px; transition: background .3s ease; }
.header--scrolled .hamburger span { background: var(--text-primary); }

/* -- NAV -- */
.nav { display: flex; align-items: center; }
.nav__list { display: flex; align-items: center; gap: 0; }

/* -- DROPDOWN -- */
.nav__item--has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(4px);
  background: var(--white); border-top: 3px solid var(--accent);
  box-shadow: var(--shadow-lg); padding: 28px 32px;
  opacity: 0; visibility: hidden;
  transition: all .2s ease; pointer-events: none;
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 380px; white-space: nowrap;
}
.nav__item--has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto;
}
.dropdown__grid {
  display: grid; grid-template-columns: repeat(2, auto); gap: 40px;
}
.dropdown--narrow {
  min-width: unset; width: auto; padding: 16px 0;
  display: flex; flex-direction: column;
  left: 50%; transform: translateX(-50%) translateY(4px);
}
.nav__item--has-dropdown:hover .dropdown--narrow {
  transform: translateX(-50%) translateY(0);
}
.dropdown--narrow .dropdown__link { padding: 8px 24px; white-space: nowrap; }
.dropdown__heading {
  display: block; font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--accent); margin-bottom: 12px;
  text-decoration: none; transition: color var(--transition);
}
.dropdown__heading:hover { color: var(--accent-hover); }
.dropdown__link {
  display: block; padding: 6px 0; font-size: .9375rem; color: var(--text-secondary);
  transition: color var(--transition); white-space: nowrap;
}
.dropdown__link:hover { color: var(--accent); }

/* -- MOBILE MENU (fullscreen) -- */
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 200;
  opacity: 0; visibility: hidden; transition: all .4s ease;
}
.mobile-overlay--open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; inset: 0; width: 100%; height: 100%;
  background: var(--white); z-index: 201; padding: 24px 28px;
  opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease;
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-menu--open { opacity: 1; visibility: visible; }
.mobile-menu__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.mobile-menu__top > img { height: 28px; width: auto; }
.mobile-menu__close {
  background: none; border: none; cursor: pointer; color: var(--text-primary);
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .2s ease;
}
.mobile-menu__close:hover { background: rgba(0,0,0,.05); }
.mobile-menu__nav { flex: 1; }
.mobile-menu__bottom { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; padding-bottom: 20px; }

/* Staggered fade-in */
.mobile-menu--open .mobile-accordion,
.mobile-menu--open .mobile-accordion__btn--link {
  animation: menuSlideIn .4s ease forwards;
  opacity: 0;
}
.mobile-menu--open .mobile-accordion:nth-child(1) { animation-delay: .05s; }
.mobile-menu--open .mobile-accordion:nth-child(2) { animation-delay: .1s; }
.mobile-menu--open .mobile-accordion:nth-child(3) { animation-delay: .15s; }
.mobile-menu--open .mobile-accordion:nth-child(4) { animation-delay: .2s; }
.mobile-menu--open .mobile-accordion__btn--link { animation-delay: .25s; }
.mobile-menu--open .mobile-menu__bottom { animation: menuSlideIn .4s ease .3s forwards; opacity: 0; }

@keyframes menuSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-accordion { border-bottom: none; }
.mobile-accordion__btn {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 16px 0; background: none; border: none;
  font-family: var(--font); font-size: 1.25rem; font-weight: 400; color: var(--text-primary);
  cursor: pointer; transition: color .2s ease;
}
.mobile-accordion__btn:hover { color: var(--accent); }
.mobile-accordion__btn--link {
  display: block; width: 100%; padding: 16px 0; background: none; border: none;
  font-family: var(--font); font-size: 1.25rem; font-weight: 400; color: var(--text-primary);
  cursor: pointer; text-align: left; transition: color .2s ease;
}
.mobile-accordion__btn--link:hover { color: var(--accent); }

/* Plus/minus icon */
.mobile-accordion__icon {
  position: relative; width: 20px; height: 20px; flex-shrink: 0;
}
.mobile-accordion__icon::before,
.mobile-accordion__icon::after {
  content: ''; position: absolute; background: var(--text-tertiary);
  transition: transform .3s ease, opacity .3s ease;
}
.mobile-accordion__icon::before {
  top: 50%; left: 3px; right: 3px; height: 2px; transform: translateY(-50%);
}
.mobile-accordion__icon::after {
  left: 50%; top: 3px; bottom: 3px; width: 2px; transform: translateX(-50%);
}
.mobile-accordion__btn--open .mobile-accordion__icon::after {
  transform: translateX(-50%) rotate(90deg); opacity: 0;
}

.mobile-accordion__panel {
  display: flex; flex-direction: column; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, opacity .35s ease; opacity: 0;
}
.mobile-accordion__panel--open { max-height: 400px; opacity: 1; }
.mobile-accordion__panel a {
  padding: 10px 0 10px 20px; font-size: 1rem; color: var(--text-secondary);
  transition: color .2s ease, transform .2s ease; transform: translateX(0);
}
.mobile-accordion__panel a:hover { color: var(--accent); transform: translateX(4px); }

/* -- HERO (background image with overlay) -- */
.hero {
  position: relative; text-align: left;
  margin-top: -113px;
  padding: 252px 0 170px;
  overflow: hidden;
  background: url('../Images/Properties/Yarwell/20260312_1427_Image Generation_remix_01kkh737j1f1m9rn27qnj8ytdd.png') center/cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .7) 100%);
  z-index: 0;
}
.hero__icon {
  display: none;
}
.hero__inner { position: relative; z-index: 2; max-width: 66%; }
.hero__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem); color: var(--white);
  font-weight: 400; margin-bottom: 12px; letter-spacing: -.02em;
}
.hero__subtitle {
  font-size: 1.0625rem; color: rgba(255,255,255,.65); margin-bottom: 36px;
  font-weight: 300;
}
.hero__buttons { display: flex; gap: 12px; margin-bottom: 32px; }

/* Hero search bar */
.hero__search { margin-bottom: 24px; }
.hero-search {
  display: flex; gap: 0; max-width: 580px;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-search__input {
  flex: 1; padding: 14px 18px; border: none;
  font-family: var(--font); font-size: .9375rem; font-weight: 300;
  color: var(--text-primary); min-width: 0;
}
.hero-search__input:focus { outline: none; }
.hero-search__input::placeholder { color: var(--text-tertiary); }
.hero-search__select {
  padding: 14px 12px; border: none; border-left: 1px solid var(--border-color); margin-right: 12px;
  font-family: var(--font); font-size: .875rem; font-weight: 300;
  color: var(--text-secondary); background: var(--white); cursor: pointer;
  appearance: auto;
}
.hero-search__select:focus { outline: none; }
.hero-search__btn {
  display: flex; align-items: center; gap: 6px; padding: 14px 24px;
  background: var(--accent); color: var(--white); border: none;
  font-family: var(--font); font-size: .9375rem; font-weight: 500;
  cursor: pointer; transition: background var(--transition); white-space: nowrap;
}
.hero-search__btn:hover { background: var(--accent-hover); }

/* Page hero (inner pages) */
.hero--page {
  margin-top: -113px;
  padding: 184px 0 56px;
}
.hero--page .hero__inner { max-width: 100%; }
.hero--page .hero__title { margin-bottom: 8px; }
.hero--page .hero__subtitle { margin-bottom: 0; }

/* Page-specific hero backgrounds */
.hero--lettings {
  background: url('../Images/Properties/Bourne/493677365_122116966040896944_4090983681903560248_n.jpg') center/cover no-repeat;
}
.hero--pm {
  background: url('../Images/Properties/Corby Glenn/631679313_122164723808896944_7729304004835743062_n.jpg') center/cover no-repeat;
}
.hero--about {
  background: url('../Images/Properties/Bourne/505378549_122116966184896944_407528348715407385_n.jpg') center 30%/cover no-repeat;
}
.hero--contact {
  background: url('../Images/Properties/Bourne/506460342_122116966052896944_2536819342948365200_n.jpg') center/cover no-repeat;
}
.hero--protection {
  background: url('../Images/Other Images/500932136_122116960574896944_6423211063372462164_n.jpg') center/cover no-repeat;
}

/* -- SEARCH BOX -- */
.search-box {
  max-width: 640px; margin: 0; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden;
}
.search-box__tabs { display: flex; border-bottom: 1px solid var(--border-color); }
.search-box__tab {
  flex: 1; padding: 12px; background: var(--surface-2); border: none;
  font-family: var(--font); font-size: .875rem; font-weight: 500;
  color: var(--text-tertiary); cursor: pointer; transition: all var(--transition);
}
.search-box__tab--active { background: var(--white); color: var(--accent); box-shadow: inset 0 -2px 0 var(--accent); }
.search-box__form { display: flex; padding: 12px; gap: 8px; }
.search-box__input {
  flex: 1; padding: 12px 16px; border: 1px solid var(--border-color); border-radius: var(--radius);
  font-family: var(--font); font-size: .9375rem; font-weight: 300; color: var(--text-primary); background: var(--white);
}
.search-box__input:focus { outline: none; border-color: var(--accent); }
.search-box__input::placeholder { color: var(--text-tertiary); }
.search-box__btn {
  display: flex; align-items: center; gap: 6px; padding: 12px 24px;
  background: var(--accent); color: var(--white); border: none; border-radius: var(--radius);
  font-family: var(--font); font-size: .9375rem; font-weight: 500; cursor: pointer;
  transition: background var(--transition);
}
.search-box__btn:hover { background: var(--accent-hover); }

.hero__rating {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px; color: rgba(255,255,255,.5); font-size: .875rem;
}
.hero__stars { display: flex; gap: 2px; }

/* -- STATS -- */
.stats { padding: 56px 0; border-bottom: 1px solid var(--border-color); background: var(--surface-2); }
.stats__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stats__item {
  padding: 0 0 0 24px;
  border-left: 3px solid var(--accent);
  text-align: left;
}
.stats__num { font-size: 3rem; font-weight: 400; color: var(--text-primary); }
.stats__suffix { font-size: 1.5rem; font-weight: 400; color: var(--accent); }
.stats__item p { font-size: .9375rem; color: var(--text-secondary); margin-top: 4px; font-weight: 300; }

/* -- SECTIONS -- */
.section { padding: 80px 0; }
.section--gray { background: var(--surface-2); }
.section--properties { background: var(--surface-2); }
.section__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 400;
  text-align: center; margin-bottom: 8px;
}
.section__subtitle { text-align: center; color: var(--text-secondary); margin-bottom: 40px; font-weight: 300; }
.section__header-row {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px;
}
.section__view-all { font-size: .9375rem; font-weight: 500; color: var(--accent); }
.section__view-all:hover { color: var(--accent-hover); }

/* -- SPLIT LAYOUT -- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split__image { order: -1; }
.split__text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 400; margin-bottom: 16px; }
.split__text p { color: var(--text-secondary); margin-bottom: 16px; font-size: 1rem; font-weight: 300; }
.split__text .btn { margin-top: 8px; }
.split__image img, .split__form { border-radius: var(--radius); }
.split__image img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius); }

/* -- SERVICE CARDS -- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 28px 24px; transition: all var(--transition);
  position: relative;
}
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card__icon { margin-bottom: 16px; }
.service-card h3 { font-size: 1.0625rem; margin-bottom: 8px; font-weight: 500; }
.service-card p { font-size: .875rem; color: var(--text-secondary); flex: 1; font-weight: 300; }
.service-card__arrow {
  display: block; margin-top: 16px; font-size: 1.25rem; color: var(--accent);
  transition: transform var(--transition);
}
.service-card:hover .service-card__arrow { transform: translateX(4px); }

/* -- PROPERTY CARDS -- */
.properties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.property-card {
  background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius);
  overflow: hidden; transition: all var(--transition); display: block;
}
.property-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-color-hover); }
.property-card__img { position: relative; height: 240px; overflow: hidden; }
.property-card__img img { width: 100%; height: 100%; object-fit: cover; }
.property-card__badge {
  display: none;
}
.property-card__info { padding: 16px 20px; }
.property-card__price { font-size: 1.25rem; font-weight: 500; color: var(--text-primary); margin-bottom: 2px; }
.property-card__price span { font-size: .8125rem; font-weight: 400; color: var(--text-tertiary); }
.property-card__info h3 { font-size: .9375rem; font-weight: 500; margin-bottom: 4px; }
.property-card__location { font-size: .8125rem; color: var(--text-secondary); margin-bottom: 8px; font-weight: 300; }
.property-card__desc {
  font-size: .8125rem; color: var(--text-secondary); font-weight: 300; line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.property-card__meta {
  display: flex; gap: 16px; padding-top: 12px; border-top: 1px solid var(--border-color);
  font-size: .8125rem; color: var(--text-secondary); font-weight: 300;
}

/* -- REVIEWS -- */
.reviews-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--border-color);
}
.reviews-header__score { font-size: 2rem; font-weight: 400; color: var(--text-primary); margin-right: 8px; }
.reviews-header__text { font-size: .9375rem; color: var(--text-secondary); font-weight: 300; }
.reviews-header__stars { display: flex; align-items: center; gap: 4px; }
.reviews-header__stars span { font-size: .875rem; color: var(--text-secondary); margin-left: 8px; font-weight: 300; }

/* Reviews slider */
.reviews-slider { overflow: hidden; position: relative; }
.reviews-slider__track {
  display: flex; gap: 24px; transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.review-card--slide {
  flex-shrink: 0;
  /* width is set by JS based on container width & perView */
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--surface-2); border: 1px solid var(--border-color); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column;
}
.review-card__stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-card p { font-size: .9375rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.6; font-weight: 300; flex:1; }
.review-card__toggle { background: none; border: none; color: var(--primary); font-size: .8125rem; font-weight: 500; cursor: pointer; padding: 0; margin-bottom: 16px; display: block; text-align: left; }
.review-card__toggle:hover { text-decoration: underline; }
.review-card__author { font-size: .8125rem; display: flex; align-items: center; gap: 10px; }
.review-card__author strong { color: var(--text-primary); font-weight: 500; display: block; }
.review-card__author span { color: var(--text-tertiary); font-size: .75rem; }
.review-card__avatar {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: .75rem; font-weight: 600; flex-shrink: 0;
}
/* Slider dots */
.reviews-slider__dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.reviews-slider__dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; cursor: pointer;
  background: var(--border-color); transition: background .2s, transform .2s;
}
.reviews-slider__dot.active { background: var(--primary); transform: scale(1.25); }

/* -- CONTACT -- */
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.contact-method {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius);
  transition: border-color var(--transition);
}
.contact-method:hover { border-color: var(--accent); }
.contact-method strong { display: block; font-size: .875rem; color: var(--text-primary); font-weight: 500; }
.contact-method span { display: block; font-size: .8125rem; color: var(--text-secondary); font-weight: 300; }

.split__form {
  background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius);
  padding: 32px;
}
.contact-form h3 { font-size: 1.125rem; margin-bottom: 20px; font-weight: 500; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form__field { margin-bottom: 14px; }
.contact-form__field label {
  display: block; font-size: .8125rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 4px;
}
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--border-color); border-radius: var(--radius);
  font-family: var(--font); font-size: .9375rem; font-weight: 300; color: var(--text-primary); background: var(--white);
  transition: border-color var(--transition);
}
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus { outline: none; border-color: var(--accent); }
.contact-form__field textarea { resize: vertical; min-height: 80px; }

/* -- FOOTER -- */
.footer { background: #020E22; color: rgba(255,255,255,.55); padding: 56px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer__brand img { height: 34px; width: auto; filter: brightness(0) invert(1); }
.footer__brand p { margin-top: 12px; font-size: .875rem; line-height: 1.6; font-weight: 300; }
.footer__social { display: flex; gap: 10px; margin-top: 16px; }
.footer__social a {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: all var(--transition);
}
.footer__social a:hover { background: var(--accent); color: var(--white); }
.footer__col { display: flex; flex-direction: column; }
.footer__col h4 { color: var(--white); font-size: .875rem; font-weight: 500; margin-bottom: 14px; }
.footer__col h4 a { color: inherit; text-decoration: none; transition: color var(--transition); }
.footer__col h4 a:hover { color: var(--accent); }
.footer__col a { font-size: .8125rem; padding: 4px 0; transition: color var(--transition); font-weight: 300; }
.footer__col a:hover { color: var(--white); }

.footer__badges {
  display: flex; align-items: center; gap: 12px; padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1); font-size: .8125rem;
}
.footer__badges > span:first-child { color: rgba(255,255,255,.35); font-weight: 500; }
.badge {
  padding: 4px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius);
  font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.4); letter-spacing: .05em;
}

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .8125rem;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--white); }

/* -- ACCREDITATIONS ROW -- */
.accreditations-row {
  display: flex; flex-wrap: nowrap; justify-content: center; align-items: center;
  gap: 40px; width: 100%;
}
.accreditations-row img {
  height: 72px !important; object-fit: contain; flex-shrink: 1; min-width: 0;
}

/* -- LEGAL / TEXT PAGES -- */
.legal-content { max-width: 800px; }
.legal-content h2 {
  font-size: 1.5rem; margin-top: 40px; margin-bottom: 12px; font-weight: 500;
}
.legal-content h3 {
  font-size: 1.125rem; margin-top: 28px; margin-bottom: 8px; font-weight: 500;
}
.legal-content p,
.legal-content li {
  margin-bottom: 12px; line-height: 1.75; font-size: .9375rem;
}
.legal-content ul {
  list-style: disc; padding-left: 24px; margin-bottom: 16px;
}
.legal-content a {
  color: var(--accent); text-decoration: underline;
}
.legal-content a:hover { color: var(--accent-hover); }
.legal-content .legal-updated {
  font-size: .8125rem; color: var(--text-tertiary); margin-bottom: 32px;
}

/* -- SEARCH FILTERS -- */
.search-section { padding-top: 40px; }
.search-filters {
  background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 32px; box-shadow: var(--shadow);
}
.search-filters__row {
  display: flex; gap: 12px; align-items: flex-end;
}
.search-filters__field { flex: 1; }
.search-filters__field--btn { flex: 0 0 auto; }
.search-filters__field label {
  display: block; font-size: .75rem; font-weight: 500; color: var(--text-tertiary);
  margin-bottom: 4px; text-transform: uppercase; letter-spacing: .05em;
}
.search-filters__input,
.search-filters__select {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border-color); border-radius: var(--radius);
  font-family: var(--font); font-size: .9375rem; font-weight: 300; color: var(--text-primary);
  background: var(--white); transition: border-color var(--transition);
}
.search-filters__input:focus,
.search-filters__select:focus { outline: none; border-color: var(--accent); }
.search-filters__input::placeholder { color: var(--text-tertiary); }
.search-filters__select--sm { width: auto; padding: 6px 10px; font-size: .8125rem; }
.search-filters__btn { min-height: 44px; }

/* Search results header */
.search-results__header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color);
}
.search-results__count { font-size: .9375rem; color: var(--text-secondary); font-weight: 400; }
.search-results__sort { display: flex; align-items: center; gap: 8px; font-size: .8125rem; color: var(--text-tertiary); }

/* Properties grid — search variant */
.properties-grid--search { grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Loading spinner */
.search-loading { text-align: center; padding: 80px 0; }
.search-loading p { margin-top: 16px; color: var(--text-tertiary); font-weight: 300; }
.search-loading__spinner {
  width: 36px; height: 36px; border: 3px solid var(--border-color);
  border-top-color: var(--accent); border-radius: 50%;
  animation: spin .8s linear infinite; margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Empty / error state */
.search-empty {
  text-align: center; padding: 80px 0;
}
.search-empty h3 { margin-top: 16px; font-size: 1.125rem; font-weight: 500; }
.search-empty p { margin-top: 8px; color: var(--text-tertiary); font-weight: 300; }
.search-empty a { color: var(--accent); text-decoration: underline; }

/* -- BREADCRUMB BAR -- */
.breadcrumb-bar {
  background: var(--surface-2); border-bottom: 1px solid var(--border-color);
  padding: 12px 0; margin-top: -1px;
}
.breadcrumb-bar__back {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .875rem; color: var(--accent); font-weight: 400;
  transition: color var(--transition);
}
.breadcrumb-bar__back:hover { color: var(--accent-hover); }

/* Blue breadcrumb — transparent header overlays it */
.breadcrumb-bar--blue {
  background: var(--primary);
  border-bottom: none;
  margin-top: -113px;
  padding: 148px 0 14px;
}
.breadcrumb-bar--blue .breadcrumb-bar__back { color: rgba(255,255,255,.7); }
.breadcrumb-bar--blue .breadcrumb-bar__back:hover { color: var(--white); }
.breadcrumb-bar--blue .breadcrumb-bar__back svg { stroke: rgba(255,255,255,.7); }
.breadcrumb-bar--blue .breadcrumb-bar__back:hover svg { stroke: var(--white); }

/* -- PROPERTY DETAIL -- */
/* Gallery */
.pd-gallery { max-width: 1400px; margin: 0 auto; padding: 32px 32px 0; }
.pd-gallery__main {
  position: relative; height: 480px; border-radius: var(--radius);
  overflow: hidden; background: var(--surface-3); margin-bottom: 12px;
}
.pd-gallery__main img {
  width: 100%; height: 100%; object-fit: cover;
}
.pd-gallery__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.9); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: all var(--transition);
  color: var(--text-primary);
}
.pd-gallery__nav:hover { background: var(--white); box-shadow: var(--shadow-lg); }
.pd-gallery__nav--prev { left: 16px; }
.pd-gallery__nav--next { right: 16px; }
.pd-gallery__counter {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(0,0,0,.6); color: #fff; padding: 4px 12px;
  border-radius: var(--radius); font-size: .75rem; font-weight: 500;
}
.pd-gallery__thumbs {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px;
}
.pd-gallery__thumb {
  width: 80px; height: 56px; border-radius: 4px; overflow: hidden;
  cursor: pointer; flex-shrink: 0; border: 2px solid transparent;
  transition: border-color var(--transition); opacity: .6;
}
.pd-gallery__thumb--active { border-color: var(--accent); opacity: 1; }
.pd-gallery__thumb:hover { opacity: 1; }
.pd-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Detail layout */
.pd-content { padding-top: 40px; }
.pd-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }

/* Header */
.pd-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.pd-header__title { font-size: clamp(1.25rem, 2vw, 1.75rem); font-weight: 400; margin-bottom: 4px; }
.pd-header__address { font-size: .9375rem; color: var(--text-secondary); font-weight: 300; }
.pd-header__price { text-align: right; flex-shrink: 0; }
.pd-header__amount { display: block; font-size: 1.75rem; font-weight: 500; color: var(--text-primary); }
.pd-header__freq { font-size: .8125rem; color: var(--text-tertiary); font-weight: 300; }

/* Meta row (beds, baths, etc.) */
.pd-meta {
  display: flex; gap: 24px; margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.pd-meta__item {
  display: flex; align-items: center; gap: 8px;
  font-size: .9375rem; color: var(--text-secondary); font-weight: 300;
}
.pd-meta__item svg { color: var(--accent); flex-shrink: 0; }
.pd-meta__item strong { font-weight: 500; color: var(--text-primary); }

/* Features */
.pd-features { margin-bottom: 32px; }
.pd-features h3 { font-size: 1.125rem; font-weight: 500; margin-bottom: 16px; }
.pd-features ul {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px;
  list-style: none; padding: 0;
}
.pd-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: .9375rem; color: var(--text-secondary); font-weight: 300;
  padding: 6px 0;
}
.pd-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* Description */
.pd-description { margin-bottom: 32px; }
.pd-description h3 { font-size: 1.125rem; font-weight: 500; margin-bottom: 16px; }
.pd-description h4 { font-size: 1rem; font-weight: 500; margin: 20px 0 8px; color: var(--text-primary); }
.pd-description p { font-size: .9375rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 12px; font-weight: 300; }

/* Sidebar */
.pd-sidebar__card {
  background: var(--white); border: 1px solid var(--border-color);
  border-radius: var(--radius); padding: 28px; margin-bottom: 16px;
}
.pd-sidebar__card h3 { font-size: 1.0625rem; font-weight: 500; margin-bottom: 8px; }
.pd-sidebar__card h4 { font-size: .9375rem; font-weight: 500; margin-bottom: 4px; }
.pd-sidebar__card p { font-size: .9375rem; color: var(--text-secondary); margin-bottom: 20px; font-weight: 300; }
.pd-sidebar__card--light { background: var(--surface-2); }

/* -- WHATSAPP FAB -- */
.whatsapp-fab {
  position: fixed; bottom: 20px; right: 20px; z-index: 90;
  width: 54px; height: 54px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.35); transition: transform var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* -- RESPONSIVE -- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .split { gap: 40px; }
  .properties-grid--search { grid-template-columns: repeat(2, 1fr); }
  .pd-layout { grid-template-columns: 1fr; }
  .pd-gallery__main { height: 380px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header__actions .btn { display: none; }
  .header__logo img { height: 32px; }

  .hero { margin-top: -113px; padding: 172px 0 44px; }
  .hero__inner { max-width: 100%; }
  .hero__title { font-size: 1.75rem; }
  .hero-search { flex-direction: column; border-radius: var(--radius); }
  .hero-search__select { border-left: none; border-top: 1px solid var(--border-color); }
  .hero-search__btn { justify-content: center; }
  .search-box__form { flex-direction: column; }

  .hero--page { padding: 152px 0 40px; }
  .page-title-bar--blue { padding: 140px 0 32px; }
  .breadcrumb-bar--blue { padding: 128px 0 12px; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stats__num { font-size: 1.75rem; }

  .section { padding: 48px 0; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--reverse .split__image { order: 0; }
  .split__image img { height: 260px; }

  .services-grid { grid-template-columns: 1fr !important; }
  .properties-grid { grid-template-columns: 1fr; }
  .properties-grid--search { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .search-filters__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; align-items: end; }
  .search-filters__field--btn { grid-column: 1 / -1; }
  .search-filters__btn { width: 100%; }

  .pd-gallery { padding: 20px 16px 0; }
  .pd-gallery__main { height: 260px; }
  .pd-header { flex-direction: column; gap: 12px; }
  .pd-header__price { text-align: left; }
  .pd-meta { flex-wrap: wrap; gap: 16px; }
  .pd-features ul { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section__header-row { flex-direction: column; align-items: flex-start; gap: 8px; }

  .contact-form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
  .footer__badges { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .topbar__left { gap: 8px; }
  .topbar__link span { display: none; }
  .stats__inner { grid-template-columns: 1fr 1fr; }
}
