/* ============================================================
   HEALE PROPERTY MANAGEMENT — Main Stylesheet
   Colours: Cyan #00AEEF | Brand Dark #111111 | Accent #00A5DB
   ============================================================ */

/* ── Reset & Variables ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #00AEEF;
  --blue-dark:   #0090CC;
  --blue-deeper: #111111;
  --blue-light:  #E0F5FC;
  --amber:       #00A5DB;
  --amber-dark:  #007DAD;
  --white:       #ffffff;
  --grey-50:     #f8fafc;
  --grey-100:    #f1f5f9;
  --grey-200:    #e2e8f0;
  --grey-400:    #94a3b8;
  --grey-600:    #475569;
  --grey-800:    #1e293b;
  --text:        #1e293b;
  --text-light:  #64748b;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --shadow-md:   0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 48px rgba(0,0,0,.16);
  --transition:  .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--grey-800);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── Utilities ──────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--grey { background: var(--grey-50); }
.section--blue { background: var(--blue-light); }

.text-center  { text-align: center; }
.text-blue    { color: var(--blue); }
.text-amber   { color: var(--amber); }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.gap-1        { gap: .5rem; }
.gap-2        { gap: 1rem; }
.gap-3        { gap: 1.5rem; }

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: .75rem;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
}
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,165,219,.4);
}
.btn--blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--blue);
}
.btn--sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ── Header / Navbar ────────────────────────────────────────── */
.site-header {
  background: var(--blue-deeper);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,.15);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 1.5rem;
}
.navbar__logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.navbar__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
}
.navbar__phone {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.navbar__phone svg { width: 18px; height: 18px; }
.navbar__nav {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.navbar__nav a {
  color: rgba(255,255,255,.9);
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 500;
  padding: .4rem .75rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.navbar__nav a:hover,
.navbar__nav a.active {
  background: rgba(0,174,239,.2);
  color: var(--blue);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 6rem 0 5rem;
  background: linear-gradient(135deg, var(--blue-deeper) 0%, #0d3d5c 40%, var(--blue) 100%);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero__title span { color: var(--amber); }
.hero__text {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}
.hero__stat-value {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
}

/* ── Search Bar ─────────────────────────────────────────────── */
.search-bar {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}
.search-bar__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--grey-800);
}
.search-bar__fields {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--grey-600);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.field input,
.field select {
  padding: .65rem 1rem;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  background: var(--grey-50);
  transition: border-color var(--transition);
  width: 100%;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}

/* ── Property Cards ─────────────────────────────────────────── */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}
.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.property-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--grey-100);
}
.property-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.property-card:hover .property-card__image img {
  transform: scale(1.05);
}
.property-card__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  padding: .3rem .75rem;
  border-radius: 20px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.badge--new       { background: var(--amber); color: var(--white); }
.badge--let       { background: var(--blue-dark); color: var(--white); }
.badge--available { background: #16a34a; color: var(--white); }

.property-card__body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.property-card__price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .35rem;
}
.property-card__address {
  font-size: .9rem;
  color: var(--text-light);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}
.property-card__address svg { width: 14px; height: 14px; flex-shrink: 0; }
.property-card__meta {
  display: flex;
  gap: 1rem;
  font-size: .85rem;
  color: var(--grey-600);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--grey-200);
}
.property-card__meta span {
  display: flex;
  align-items: center;
  gap: .3rem;
}
.property-card__meta svg { width: 15px; height: 15px; }
.property-card__footer { margin-top: auto; }
.property-card__link {
  display: block;
  text-align: center;
  padding: .65rem;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  transition: all var(--transition);
}
.property-card__link:hover {
  background: var(--blue);
  color: var(--white);
}

/* ── Services / Icon Boxes ──────────────────────────────────── */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.services-grid > * {
  flex: 1 1 220px;
  max-width: 320px;
}
.service-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-bottom: 4px solid transparent;
  transition: all var(--transition);
}
.service-box:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.service-box__icon {
  width: 64px;
  height: 64px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: background var(--transition);
}
.service-box:hover .service-box__icon { background: var(--blue); }
.service-box__icon svg { width: 32px; height: 32px; color: var(--blue); transition: color var(--transition); }
.service-box:hover .service-box__icon svg { color: var(--white); }
.service-box__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.service-box__text { font-size: .875rem; color: var(--text-light); }

/* ── Why Choose Us / Feature List ──────────────────────────── */
.features-list { display: flex; flex-direction: column; gap: 1.25rem; }
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-item__icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item__icon svg { width: 22px; height: 22px; color: var(--white); }
.feature-item__text h4 { font-size: 1rem; margin-bottom: .25rem; }
.feature-item__text p  { font-size: .875rem; color: var(--text-light); }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-inline: auto;
}
.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--blue-light);
  font-family: Georgia, serif;
  position: absolute;
  top: -.5rem;
  left: 1.25rem;
  line-height: 1;
}
.testimonial-card__text {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}
.testimonial-card__author { font-weight: 700; font-size: .9rem; }
.testimonial-card__role   { font-size: .8rem; color: var(--blue); }
.stars { color: var(--amber); font-size: 1rem; margin-bottom: .5rem; }

/* ── Contact Form ───────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--grey-600);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  background: var(--grey-50);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-message {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.form-message--success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.form-message--error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue));
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 580px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { opacity: .5; }

/* ── Property Detail ────────────────────────────────────────── */
.property-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: .75rem; border-radius: var(--radius-lg); overflow: hidden; }
.property-gallery__main img { width: 100%; height: 400px; object-fit: cover; }
.property-gallery__thumbs { display: grid; grid-template-rows: 1fr 1fr; gap: .75rem; }
.property-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: opacity var(--transition); }
.property-gallery__thumbs img:hover { opacity: .85; }

.property-detail__price { font-size: 2rem; font-weight: 800; color: var(--blue); }
.property-detail__meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  margin: 1rem 0;
}
.property-detail__meta-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  color: var(--grey-600);
}
.property-detail__meta-item svg { width: 18px; height: 18px; color: var(--blue); }
.property-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: 1rem;
}
.property-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--grey-600);
}
.property-features li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Info Cards (landlord/tenant pages) ─────────────────────── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
}
.info-card__num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: .75rem;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.info-card p  { font-size: .9rem; color: var(--text-light); }

/* ── Packages table ─────────────────────────────────────────── */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.packages-grid > * {
  flex: 1 1 260px;
  max-width: 360px;
}
.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.package-card__head {
  background: var(--blue);
  padding: 1.5rem;
  text-align: center;
}
.package-card--featured .package-card__head { background: var(--blue-deeper); }
.package-card__head h3 { color: var(--white); font-size: 1.2rem; margin-bottom: .25rem; }
.package-card__head p  { color: rgba(255,255,255,.75); font-size: .85rem; }
.package-card__body { background: var(--white); padding: 1.5rem; }
.package-card__list { display: flex; flex-direction: column; gap: .75rem; }
.package-card__list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--grey-600);
}
.package-card__list li svg { width: 18px; height: 18px; color: #16a34a; flex-shrink: 0; }
.package-card__foot { padding: 1.25rem 1.5rem; background: var(--grey-50); text-align: center; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #0a0a0a;
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}
.footer-col p { font-size: .875rem; line-height: 1.8; }
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer-links a:hover { color: var(--amber); }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
}
.footer-contact__item svg { width: 16px; height: 16px; color: var(--amber); flex-shrink: 0; margin-top: .2rem; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-logo .logo-main { font-size: 1.2rem; margin-bottom: 1rem; }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: .5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  border: 2px solid var(--grey-200);
  color: var(--text);
  transition: all var(--transition);
}
.pagination a:hover     { border-color: var(--blue); color: var(--blue); }
.pagination .current    { background: var(--blue); border-color: var(--blue); color: var(--white); }
.pagination .disabled   { opacity: .4; pointer-events: none; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .search-bar__fields { grid-template-columns: 1fr 1fr; }
  .search-bar__fields .btn { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .navbar__right {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue-deeper);
    flex-direction: column;
    align-items: stretch;
    padding: .5rem 0 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.35);
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .navbar__right.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar { position: relative; }
  .navbar__phone { padding: .75rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: .25rem; }
  .navbar__nav { flex-direction: column; align-items: stretch; padding: 0 .75rem; }
  .navbar__nav a { padding: .65rem 1rem; }
  .hero { min-height: 420px; }
  .hero__stats { flex-wrap: wrap; gap: 1.5rem; }
  .search-bar { margin-top: 0; border-radius: 0; }
  .search-bar__fields { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .property-gallery { grid-template-columns: 1fr; }
  .property-gallery__thumbs { grid-template-rows: none; grid-template-columns: 1fr 1fr; height: 160px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .packages-grid { grid-template-columns: 1fr; }
  .property-detail__meta { gap: 1rem; }
  .property-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
  .property-grid { grid-template-columns: 1fr; }
}

/* ── Misc ───────────────────────────────────────────────────── */
.divider { width: 56px; height: 4px; background: var(--amber); border-radius: 2px; margin-bottom: 1.25rem; }
.divider--center { margin-inline: auto; }
.tag {
  display: inline-block;
  padding: .25rem .75rem;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.two-col--reverse { }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; gap: 2rem; } }

.rounded-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
}
.no-results svg { width: 64px; height: 64px; color: var(--grey-200); margin: 0 auto 1rem; }

/* ── Scroll reveal animations ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }

/* ── Page hero — enhanced ───────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue));
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: .75rem;
  animation: heroFadeUp .7s ease both;
}
.page-hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  max-width: 580px;
  animation: heroFadeUp .7s .15s ease both;
}
.page-hero .breadcrumb { animation: heroFadeUp .5s ease both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

/* ── Stat counter ───────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  margin: 3rem 0;
}
.stat-item__value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  background: linear-gradient(135deg, var(--blue), #40C6F5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__label {
  color: var(--text-light);
  margin-top: .5rem;
  font-size: .95rem;
}
@media (max-width: 768px) {
  .stats-row { grid-template-columns: 1fr 1fr; }
}

/* ── Filter bar (search page) ───────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-bottom: 2px solid var(--grey-100);
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 900;
}
.filter-bar__inner {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.filter-bar__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
  min-width: 130px;
}
.filter-bar__group label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--grey-600);
}
.filter-bar__group select,
.filter-bar__group input[type="text"] {
  padding: .6rem .9rem;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text);
  background: var(--grey-50);
  transition: border-color var(--transition);
  width: 100%;
  font-family: inherit;
}
.filter-bar__group select:focus,
.filter-bar__group input[type="text"]:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}

/* Bedroom pills */
.bed-pills { display: flex; gap: .35rem; flex-wrap: wrap; }
.bed-pills input[type="radio"] { display: none; }
.bed-pills label {
  padding: .45rem .75rem;
  border: 2px solid var(--grey-200);
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--grey-600);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}
.bed-pills input[type="radio"]:checked + label {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.bed-pills label:hover { border-color: var(--blue); color: var(--blue); }

/* Budget slider */
.budget-slider-wrap { position: relative; }
.budget-slider-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--blue);
  cursor: pointer;
  height: 6px;
}
.budget-display {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .3rem;
}
.budget-display strong { color: var(--blue); font-weight: 700; }

.filter-bar__actions {
  display: flex;
  gap: .5rem;
  align-items: center;
  padding-bottom: 2px;
  flex-shrink: 0;
}
.filter-bar__clear {
  font-size: .8rem;
  color: var(--text-light);
  white-space: nowrap;
  transition: color var(--transition);
}
.filter-bar__clear:hover { color: var(--blue); }

/* Active filter chips */
.active-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--grey-100);
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .75rem;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
}

/* ── Enhanced package cards ─────────────────────────────────── */
.package-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.package-card--featured {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.package-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.package-card--featured .package-card__head { background: var(--blue-deeper); }
.package-badge {
  position: absolute;
  top: 1rem;
  right: -1.5rem;
  background: var(--amber);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem 2rem;
  transform: rotate(35deg);
  transform-origin: center;
}
@media (max-width: 768px) { .package-card--featured { transform: none; } }

/* ── Enhanced info cards ────────────────────────────────────── */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--blue);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.info-card__num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .75rem;
  background: linear-gradient(135deg, var(--blue-light), var(--grey-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── FAQ accordion — animated arrow ────────────────────────── */
details > summary { user-select: none; }
details > summary svg { transition: transform .25s ease; }
details[open] > summary svg { transform: rotate(180deg); }
details[open] > summary { color: var(--blue); }

/* ── Hero animated stats pulse ──────────────────────────────── */
.hero__stat-value {
  animation: statPop .6s ease both;
}
@keyframes statPop {
  from { opacity: 0; transform: scale(.8); }
  to   { opacity: 1; transform: scale(1); }
}
.hero__stats > div:nth-child(1) .hero__stat-value { animation-delay: .8s; }
.hero__stats > div:nth-child(2) .hero__stat-value { animation-delay: 1s; }
.hero__stats > div:nth-child(3) .hero__stat-value { animation-delay: 1.2s; }
.hero__stats > div:nth-child(1) .hero__stat-label { animation: statPop .4s 1s ease both; }
.hero__stats > div:nth-child(2) .hero__stat-label { animation: statPop .4s 1.2s ease both; }
.hero__stats > div:nth-child(3) .hero__stat-label { animation: statPop .4s 1.4s ease both; }
.hero__stat-label { animation: statPop .4s ease both; opacity: 0; }

/* ── Hero title animation ───────────────────────────────────── */
.hero__tag    { animation: heroFadeUp .5s .1s ease both; opacity: 0; }
.hero__title  { animation: heroFadeUp .6s .25s ease both; opacity: 0; }
.hero__text   { animation: heroFadeUp .6s .4s ease both; opacity: 0; }
.hero__actions { animation: heroFadeUp .6s .55s ease both; opacity: 0; }

/* ── Glowing CTA banner ─────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), #40C6F5);
  background-size: 300% 300%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Filter bar responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .filter-bar__inner { gap: 1rem; }
  .filter-bar__group { min-width: 100px; }
}
@media (max-width: 640px) {
  .filter-bar__group { flex: 0 0 calc(50% - .5rem); }
  .filter-bar__actions { flex: 0 0 100%; }
}

/* ── Privacy & Cookie Policy page ───────────────────────────── */
.privacy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
.privacy-nav {
  position: sticky;
  top: 90px;
  background: var(--grey-50);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 3px solid var(--blue);
}
.privacy-nav ul { display: flex; flex-direction: column; gap: .25rem; }
.privacy-nav a {
  display: block;
  padding: .4rem .6rem;
  border-radius: 6px;
  font-size: .875rem;
  color: var(--text-light);
  transition: all var(--transition);
}
.privacy-nav a:hover { background: var(--blue-light); color: var(--blue); }
.privacy-section {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--grey-200);
}
.privacy-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.privacy-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--grey-800);
  scroll-margin-top: 90px;
}
.privacy-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 .5rem;
  color: var(--grey-800);
}
.privacy-section p { color: var(--text-light); line-height: 1.75; margin-bottom: .75rem; }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.privacy-list {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: .75rem;
}
@media (max-width: 768px) {
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-nav { position: static; }
}

/* ── Awards strip ────────────────────────────────────────────── */
.awards-strip {
  background: var(--grey-50);
  padding: 3.5rem 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.awards-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.awards-strip__label {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.awards-strip__badges {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Award badge (British Property Awards) */
.award-badge {
  background: var(--white);
  border: 2px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  text-align: center;
  min-width: 170px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.award-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.award-badge--featured {
  border-color: #c9a227;
  background: linear-gradient(160deg, #fffbf0 0%, #fff8e1 100%);
  transform: scale(1.04);
}
.award-badge--featured:hover { transform: scale(1.04) translateY(-3px); }
.award-badge__stars { color: #c9a227; font-size: 1rem; letter-spacing: .1em; }
.award-badge__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #c9a227;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .25rem;
}
.award-badge__body {
  font-size: .8rem;
  font-weight: 600;
  color: var(--grey-800);
  line-height: 1.4;
  margin-top: .15rem;
}
.award-badge__year {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: .25rem;
}
.award-badge__scheme {
  font-size: .7rem;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .2rem;
}

/* Accreditation badge (Property Redress Scheme) */
.accreditation-badge {
  background: var(--white);
  border: 2px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
  min-width: 220px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.accreditation-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.accreditation-badge svg { width: 40px; height: 40px; color: var(--blue); flex-shrink: 0; }
.accreditation-badge__title {
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
}
.accreditation-badge__body {
  font-size: .9rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--grey-800);
  line-height: 1.3;
}
.accreditation-badge__sub {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: .15rem;
}
@media (max-width: 768px) {
  .awards-strip__badges { gap: 1rem; }
  .award-badge { min-width: 140px; padding: 1.25rem; }
  .accreditation-badge { min-width: 100%; }
}

/* ── 404 error page ──────────────────────────────────────────── */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background: var(--grey-50);
}
.error-page__content { text-align: center; max-width: 600px; margin: 0 auto; }
.error-page__code {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-deeper), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.error-page__title { font-size: 2rem; margin-bottom: 1rem; }
.error-page__text { color: var(--text-light); font-size: 1.1rem; margin-bottom: 2.5rem; }
.error-page__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.error-page__links p { color: var(--text-light); margin-bottom: 1rem; }
.error-page__links ul { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.error-page__links a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; font-size: .95rem; }
