/**
 * Site Name:        Divine Will Estates
 * Site URI:         https://divinewillestates.co.uk/
 * Description:      Website for Divine Will Estates is a UK real estate agency that focuses on: Property management for landlords, Rental placement for tenants, Property listings, Home valuation services, Tenant screening and rent management
 * Version:          2.0.0
 * Author:           Esiri Precious-Anne Oluwadamilotun
 * Author URI:       https://example.com
 * License:          GNU General Public License v2 or later
 * License URI:      https://www.gnu.org/licenses/gpl-2.0.html
*/   

/**
 * Font Pairings
 * Headings: Sora
 * Body: Libre Baskerville
*/

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Sora:wght@100..800&display=swap');
:root {
  --brown:        #6b3e26;
  --brown-mid:    #8a5234;
  --brown-light:  #a86a47;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #f5e8c0;
  --ivory:       #fdf6e3;
  --ivory-dark:  #f0e6c8;
  --white:       #ffffff;
  --clay-shadow: 8px 12px 32px rgba(13,27,62,0.18), 0 2px 8px rgba(13,27,62,0.10);
  --clay-inset:  inset 0 2px 8px rgba(255,255,255,0.25), inset 0 -2px 6px rgba(13,27,62,0.12);
  --radius-xl:   28px;
  --radius-lg:   20px;
  --radius-md:   14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--ivory);
  color: var(--brown);
  overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  background: rgba(107, 62, 38, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-xl);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: var(--clay-shadow);
}

.nav-logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--white); }

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}
.nav-links a:hover {
  background: rgba(201,168,76,0.18);
  color: var(--gold-light);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(201,168,76,0.35), var(--clay-inset);
  border-radius: var(--radius-md) !important;
  padding: 9px 20px !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45) !important;
}

/* ─── HERO ─── */
.hero {
  min-height: 50vh;
  background-color: var(--brown);
  background-image: 
    linear-gradient(145deg, rgba(107,62,38,0.55) 0%, rgba(168,106,71,0.40) 60%, rgba(59,36,24,0.65) 100%),
    url('../images/house4.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

/* Floating blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  animation: floatBlob 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  border-radius: 50%;
  animation: floatBlob 10s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.2rem, 3vw, 4.0rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
}

.hero-subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 32px;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(201,168,76,0.4), var(--clay-inset);
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(201,168,76,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 32px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-3px);
}

/* Hero clay cards */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  box-shadow: var(--clay-shadow), var(--clay-inset);
  transition: transform 0.3s ease;
  animation: floatCard 6s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 1.5s; margin-top: 24px; }
.hero-card:nth-child(3) { animation-delay: 3s; }
.hero-card:nth-child(4) { animation-delay: 4.5s; margin-top: 24px; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-card:hover { transform: translateY(-6px) scale(1.02); }

.card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(201,168,76,0.35);
}

.hero-card h4 {
  font-family: 'Libre Baskerville', serif;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--brown);
  padding: 40px 24px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-clay {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--clay-shadow), var(--clay-inset);
  transition: transform 0.3s ease;
}
.stat-clay:hover { transform: translateY(-4px); }
.stat-clay .number {
  font-family: 'Libre Baskerville', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-clay .label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ─── SECTION WRAPPER ─── */
section {
  padding: 100px 24px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-pale), var(--ivory-dark));
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(201,168,76,0.3);
  box-shadow: 0 2px 8px rgba(201,168,76,0.15);
}
.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}
.section-subtitle {
  color: rgba(13,27,62,0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
}

/* ─── ABOUT ─── */
.about { background: var(--ivory); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-clay {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 16px 24px 56px rgba(13,27,62,0.2), var(--clay-inset);
  border: 3px solid rgba(201,168,76,0.2);
}
.about-img-clay img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-badge-float {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow);
  text-align: center;
}
.about-badge-float strong { display: block; font-size: 1.5rem; font-family: 'Libre Baskerville', serif; }

.services-list {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.service-chip {
  background: var(--ivory-dark);
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 4px 6px 16px rgba(13,27,62,0.08), var(--clay-inset);
  transition: all 0.25s ease;
}
.service-chip:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 6px 8px 20px rgba(201,168,76,0.2);
}
.service-chip::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
}

/* ─── AUDIENCE CARDS ─── */
.audience { background: var(--brown); }
.audience .section-title { color: var(--white); }
.audience .section-subtitle { color: rgba(255,255,255,0.55); }
.audience .section-tag { background: rgba(201,168,76,0.15); color: var(--gold-light); border-color: rgba(201,168,76,0.3); }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.audience-card {
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--clay-shadow);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.audience-card:hover { transform: translateY(-8px) scale(1.02); }

.audience-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.audience-card:hover img { transform: scale(1.06); }

.audience-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
  to top,
  rgba(79,46,28,0.92) 0%,
  rgba(79,46,28,0.3) 60%,
  transparent 100%
);
}

.audience-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
}
.audience-card-body h3 {
  font-family: 'Libre Baskerville', serif;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.audience-card-body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
  transition: all 0.25s ease;
}
.card-btn:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.5);
}

/* ─── SERVICES SECTION ─── */
.services { background: var(--ivory-dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  border: 2px solid rgba(201,168,76,0.15);
  box-shadow: 10px 16px 40px rgba(13,27,62,0.1), var(--clay-inset);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 16px 24px 56px rgba(13,27,62,0.15), var(--clay-inset);
  border-color: rgba(201,168,76,0.4);
}
.service-card:hover::before { opacity: 1; }

.service-icon-wrap {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  box-shadow: 6px 8px 20px rgba(13,27,62,0.25), var(--clay-inset);
}

.service-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 12px;
}

.service-card p {
  color: rgba(13,27,62,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ─── GALLERY ─── */
.gallery { background: var(--brown); }
.gallery .section-title { color: var(--white); }
.gallery .section-tag { background: rgba(201,168,76,0.15); color: var(--gold-light); border-color: rgba(201,168,76,0.3); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 48px;
}

.gallery-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--clay-shadow);
  cursor: pointer;
  transition: transform 0.35s ease;
}
.gallery-item:nth-child(1) { grid-row: 1 / 3; }
.gallery-item:hover { transform: scale(1.02); }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,62,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ─── CONTACT ─── */
.contact { background: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info p {
  color: rgba(13,27,62,0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 4px 6px 16px rgba(13,27,62,0.2);
}
.contact-detail-text strong {
  display: block;
  color: var(--brown);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 2px;
}
.contact-detail-text span {
  color: rgba(13,27,62,0.6);
  font-size: 0.875rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: 36px;
  padding: 48px 40px;
  border: 2px solid rgba(201,168,76,0.15);
  box-shadow: 16px 24px 60px rgba(13,27,62,0.12), var(--clay-inset);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--ivory);
  border: 2px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--brown);
  outline: none;
  transition: all 0.25s ease;
  box-shadow: inset 3px 3px 8px rgba(13,27,62,0.06);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15), inset 3px 3px 8px rgba(13,27,62,0.06);
}
.form-group input::placeholder { color: rgba(13,27,62,0.35); }

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  color: var(--gold-light);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(13,27,62,0.3), var(--clay-inset);
  transition: all 0.3s ease;
  margin-top: 8px;
  letter-spacing: 0.03em;
}
.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(13,27,62,0.4);
  background: linear-gradient(135deg, var(--brown-light), var(--brown));
}

/* ─── TEAM ─── */
.team { background: var(--ivory-dark); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.15);
  box-shadow: 10px 16px 40px rgba(13,27,62,0.1), var(--clay-inset);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 16px 24px 56px rgba(13,27,62,0.15);
  border-color: rgba(201,168,76,0.35);
}

.team-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ivory-dark);
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img { transform: scale(1.06); }

.team-info {
  padding: 24px 20px;
}
.team-info h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}
.team-info span {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── FOOTER ─── */
footer {
  background: var(--brown);
  padding: 72px 24px 32px;
  color: rgba(255,255,255,0.65);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 12px 0 24px;
  max-width: 280px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.25s ease;
  box-shadow: var(--clay-shadow);
}
.social-link:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: 'Libre Baskerville', serif;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}
.footer-contact-item .ico {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 1px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ─── WHATSAPP FAB ─── */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45), var(--clay-inset);
  text-decoration: none;
  z-index: 900;
  transition: all 0.3s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}

/* ── PAGE-SPECIFIC: About Us ── */
.about-hero {
  background: linear-gradient(145deg, var(--brown) 0%, var(--brown-light) 60%, #3b2418 100%);
  padding: 160px 24px 80px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  animation: floatBlob 8s ease-in-out infinite;
}
.about-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  bottom: -80px; left: -80px;
  border-radius: 50%;
  animation: floatBlob 10s ease-in-out infinite reverse;
}
.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.about-hero h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}
.about-hero h1 em { font-style: italic; color: var(--gold-light); }
.about-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 28px;
}
.hero-pill-row { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-pill {
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Hero image card */
.about-hero-img {
  position: relative;
}
.about-hero-img-clay {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 16px 24px 56px rgba(107,62,38,0.32);
  border: 3px solid rgba(201,168,76,0.22);
  background: var(--brown-mid);
}
.about-hero-img-clay img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; display: block; }
.about-hero-img-badge {
  position: absolute;
  bottom: -18px; left: -18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--clay-shadow);
  text-align: center;
  min-width: 130px;
  z-index: 2;
}
.about-hero-img-badge strong {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.about-hero-img-badge span {
  font-size: 0.78rem;
  color: rgba(107,62,38,0.72);
  margin-top: 4px;
  display: block;
}

/* Mission & Vision cards */
.mv-section { background: var(--ivory-dark); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}
.mv-card {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  box-shadow: var(--clay-shadow);
  border: 2px solid rgba(201,168,76,0.18);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mv-card:hover { transform: translateY(-6px); box-shadow: 16px 24px 56px rgba(107,62,38,0.2); }
.mv-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: var(--gold-pale);
  border-radius: 50%;
  opacity: 0.5;
}
.mv-card .service-icon-wrap { margin-bottom: 22px; }
.mv-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 14px;
}
.mv-card p { color: rgba(107,62,38,0.65); font-size: 0.925rem; line-height: 1.78; }

/* Values strip */
.values-strip {
  background: var(--brown);
  padding: 56px 24px;
}
.values-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.value-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  transition: background 0.2s;
}
.value-item:hover { background: rgba(255,255,255,0.05); }
.value-dot {
  width: 50px; height: 50px;
  background: rgba(201,168,76,0.16);
  border: 2px solid rgba(201,168,76,0.32);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.value-item h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.value-item p { font-size: 0.825rem; color: rgba(255,255,255,0.48); line-height: 1.6; }

/* Testimonials */
.testimonials { background: var(--ivory); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.testi-card {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--clay-shadow);
  border: 2px solid rgba(201,168,76,0.16);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: 16px 24px 56px rgba(107,62,38,0.18); }
.testi-card::after {
  content: '\201C';
  position: absolute;
  top: 10px; right: 22px;
  font-family: 'Libre Baskerville', serif;
  font-size: 6rem;
  color: var(--gold-pale);
  line-height: 1;
  pointer-events: none;
}
.testi-stars { display: flex; gap: 4px; }
.star { color: var(--gold); font-size: 0.9rem; }
.testi-text {
  font-size: 0.9rem;
  color: rgba(107,62,38,0.72);
  line-height: 1.78;
  flex: 1;
  position: relative;
  z-index: 1;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1.5px solid var(--gold-pale);
  padding-top: 18px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--brown-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  border: 2px solid var(--gold);
}
.testi-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 2px;
}
.testi-role { font-size: 0.78rem; color: rgba(107,62,38,0.5); }
.testi-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--brown-mid);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 4px;
  border: 1px solid rgba(201,168,76,0.3);
}

/* About gallery (different layout from homeabout) */
.about-gallery { background: var(--ivory-dark); }
.about-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
  margin-top: 48px;
}
.about-gallery-grid .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
.about-gallery-grid .gallery-item:nth-child(4) { grid-column: 2 / 4; grid-row: auto; }

/* Quote band */
.quote-band {
  background: var(--gold);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '\201C';
  position: absolute;
  left: 40px; top: -20px;
  font-family: 'Libre Baskerville', serif;
  font-size: 240px;
  color: rgba(107,62,38,0.08);
  line-height: 1;
  pointer-events: none;
}
.quote-band blockquote {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--brown);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.quote-band cite {
  font-size: 0.85rem;
  color: rgba(107,62,38,0.65);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── PAGE-SPECIFIC: Tenants ── */

/* ─ Rental Placement section ─ */
.rental-placement { background: var(--ivory); }
.placement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}
.placement-img-wrap { position: relative; }
.placement-img-clay {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 16px 24px 56px rgba(107,62,38,0.2);
  border: 3px solid rgba(201,168,76,0.2);
  background: var(--brown-mid);
}
.placement-img-clay img { width: 100%; height: 100%; object-fit: cover; display: block; }
.placement-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--clay-shadow);
  text-align: center;
  min-width: 130px;
  z-index: 2;
}
.placement-badge strong {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.placement-badge span { font-size: 0.78rem; color: rgba(107,62,38,0.72); margin-top: 4px; display: block; }

.placement-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.placement-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--ivory-dark);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  border: 1.5px solid rgba(201,168,76,0.18);
  box-shadow: 4px 6px 16px rgba(107,62,38,0.08);
  transition: all 0.25s ease;
}
.placement-step:hover {
  transform: translateX(5px);
  border-color: var(--gold);
  box-shadow: 6px 10px 24px rgba(201,168,76,0.18);
}
.step-num {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-light);
  flex-shrink: 0;
  box-shadow: 4px 4px 12px rgba(107,62,38,0.25);
}
.step-body h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}
.step-body p { font-size: 0.845rem; color: rgba(107,62,38,0.62); line-height: 1.6; }

/* ─ Home Selection section ─ */
.home-selection { background: var(--brown); }
.home-selection .section-title { color: var(--white); }
.home-selection .section-tag { background: rgba(201,168,76,0.15); color: var(--gold-light); border-color: rgba(201,168,76,0.3); }
.home-selection .section-subtitle { color: rgba(255,255,255,0.55); }

.selection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.selection-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--clay-shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.selection-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.selection-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,168,76,0.4);
}
.selection-card:hover::before { opacity: 1; }
.selection-card .service-icon-wrap { margin-bottom: 20px; }
.selection-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.selection-card p { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ─ Tenant Contact Form section ─ */
.tenant-contact { background: var(--ivory-dark); }
.tenant-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  margin-top: 0;
}
.tenant-contact-info { padding-top: 8px; }
.tenant-contact-info h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.25;
  margin-bottom: 14px;
}
.tenant-contact-info h2 em { font-style: italic; color: var(--gold); }
.tenant-contact-info p {
  font-size: 0.925rem;
  color: rgba(107,62,38,0.62);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(107,62,38,0.75);
}
.checklist-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.tenant-form-card {
  background: var(--white);
  border-radius: 36px;
  padding: 44px 40px;
  border: 2px solid rgba(201,168,76,0.15);
  box-shadow: 16px 24px 60px rgba(107,62,38,0.12);
}
.contact-method-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-method-btn {
  flex: 1;
  min-width: 80px;
  padding: 10px 14px;
  background: var(--ivory);
  border: 2px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(107,62,38,0.65);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.contact-method-btn:hover,
.contact-method-btn.active {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--brown);
}
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--ivory);
  border: 2px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: var(--brown);
  outline: none;
  transition: all 0.25s ease;
  resize: vertical;
  min-height: 100px;
  box-shadow: inset 3px 3px 8px rgba(107,62,38,0.06);
}
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15), inset 3px 3px 8px rgba(107,62,38,0.06);
}
.form-group textarea::placeholder { color: rgba(107,62,38,0.35); }

/* ─ FAQ section ─ */
.faq-section { background: var(--ivory); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 52px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201,168,76,0.16);
  box-shadow: 4px 6px 20px rgba(107,62,38,0.08);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item:hover { box-shadow: 8px 12px 32px rgba(107,62,38,0.14); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
}
.faq-question h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  flex: 1;
}
.faq-icon {
  width: 32px; height: 32px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown);
  font-size: 1.1rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(201,168,76,0.3);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: rgba(107,62,38,0.68);
  line-height: 1.78;
  border-top: 1.5px solid var(--gold-pale);
  padding-top: 18px;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ─ CTA Banner ─ */
.cta-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
  top: -150px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ── PAGE-SPECIFIC: Landlords ── */
/* ─ Property Management ─ */
.prop-management { background: var(--ivory); }
.prop-management-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 56px;
}
.prop-mgmt-img-wrap { position: relative; }
.prop-mgmt-img-clay {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 16px 24px 56px rgba(107,62,38,0.2);
  border: 3px solid rgba(201,168,76,0.2);
  background: var(--brown-mid);
}
.prop-mgmt-img-clay img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prop-mgmt-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--clay-shadow);
  text-align: center;
  min-width: 130px;
  z-index: 2;
}
.prop-mgmt-badge strong {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.prop-mgmt-badge span { font-size: 0.78rem; color: rgba(107,62,38,0.72); margin-top: 4px; display: block; }

.mgmt-features { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.mgmt-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--ivory-dark);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(201,168,76,0.16);
  box-shadow: 4px 6px 16px rgba(107,62,38,0.07);
  transition: all 0.25s ease;
}
.mgmt-feature:hover {
  transform: translateX(5px);
  border-color: var(--gold);
  box-shadow: 6px 10px 24px rgba(201,168,76,0.16);
}
.mgmt-feature-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 3px 4px 10px rgba(107,62,38,0.25);
}
.mgmt-feature-body h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 3px;
}
.mgmt-feature-body p { font-size: 0.84rem; color: rgba(107,62,38,0.6); line-height: 1.55; }

/* ─ Listing Services ─ */
.listing-services { background: var(--brown); }
.listing-services .section-title { color: var(--white); }
.listing-services .section-tag { background: rgba(201,168,76,0.15); color: var(--gold-light); border-color: rgba(201,168,76,0.3); }
.listing-services .section-subtitle { color: rgba(255,255,255,0.55); }

.listing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
  align-items: center;
}
.listing-cards { display: flex; flex-direction: column; gap: 16px; }
.listing-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--clay-shadow);
  transition: all 0.25s ease;
}
.listing-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateX(5px);
  border-color: rgba(201,168,76,0.4);
}
.listing-card-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 4px 6px 14px rgba(201,168,76,0.3);
}
.listing-card h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.listing-card p { font-size: 0.855rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

.listing-img-side { position: relative; }
.listing-img-clay {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 16px 24px 56px rgba(0,0,0,0.35);
  border: 3px solid rgba(201,168,76,0.25);
  background: var(--brown-light);
}
.listing-img-clay img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.8; }
.listing-img-clay::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(107,62,38,0.5) 0%, transparent 55%);
}
.listing-cta-float {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--clay-shadow);
  border: 2px solid rgba(201,168,76,0.2);
  min-width: 180px;
  z-index: 2;
}
.listing-cta-float p { font-size: 0.78rem; color: rgba(107,62,38,0.6); margin-bottom: 8px; }
.listing-cta-float a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 3px 4px 12px rgba(201,168,76,0.3);
  transition: all 0.2s ease;
}
.listing-cta-float a:hover { transform: translateY(-2px); box-shadow: 4px 6px 18px rgba(201,168,76,0.4); }

/* ─ Valuation + Tenant Placement (two-column split section) ─ */
.services-split { background: var(--ivory-dark); }
.services-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}
.split-card {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  border: 2px solid rgba(201,168,76,0.16);
  box-shadow: var(--clay-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.split-card:hover { transform: translateY(-6px); box-shadow: 16px 24px 56px rgba(107,62,38,0.18); }
.split-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 180px; height: 180px;
  background: var(--gold-pale);
  border-radius: 50%;
  opacity: 0.45;
}
.split-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
}
.split-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 6px 8px 20px rgba(107,62,38,0.25);
  flex-shrink: 0;
}
.split-card-header h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.25;
}
.split-card > p {
  font-size: 0.9rem;
  color: rgba(107,62,38,0.62);
  line-height: 1.72;
  margin-bottom: 24px;
  position: relative;
}
.split-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.split-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(107,62,38,0.75);
}
.split-check-dot {
  width: 22px; height: 22px;
  background: var(--gold-pale);
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--brown);
  flex-shrink: 0;
  font-weight: 700;
}
.split-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  box-shadow: 6px 8px 20px rgba(107,62,38,0.25);
  transition: all 0.25s ease;
  position: relative;
}
.split-cta:hover { transform: translateY(-2px); box-shadow: 8px 12px 28px rgba(107,62,38,0.32); }

/* ─ Landlord Inquiry Form ─ */
.landlord-contact { background: var(--ivory); }
.landlord-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.landlord-contact-info h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.25;
  margin-bottom: 14px;
}
.landlord-contact-info h2 em { font-style: italic; color: var(--gold); }
.landlord-contact-info p {
  font-size: 0.925rem;
  color: rgba(107,62,38,0.62);
  line-height: 1.75;
  margin-bottom: 32px;
}
.contact-checklist { display: flex; flex-direction: column; gap: 12px; }
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(107,62,38,0.75);
}
.checklist-item::before { content: '✦'; color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }

.tenant-type-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tenant-type-btn {
  flex: 1;
  min-width: 72px;
  padding: 10px 10px;
  background: var(--ivory);
  border: 2px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(107,62,38,0.65);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}
.tenant-type-btn:hover,
.tenant-type-btn.active {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--brown);
}

.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--ivory);
  border: 2px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: var(--brown);
  outline: none;
  transition: all 0.25s ease;
  resize: vertical;
  min-height: 100px;
  box-shadow: inset 3px 3px 8px rgba(107,62,38,0.06);
}
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15), inset 3px 3px 8px rgba(107,62,38,0.06);
}
.form-group textarea::placeholder { color: rgba(107,62,38,0.35); }

/* ─ FAQ ─ */
.faq-section { background: var(--ivory-dark); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 52px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(201,168,76,0.16);
  box-shadow: 4px 6px 20px rgba(107,62,38,0.08);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}
.faq-item:hover { box-shadow: 8px 12px 32px rgba(107,62,38,0.14); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  gap: 16px;
}
.faq-question h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  flex: 1;
}
.faq-icon {
  width: 32px; height: 32px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--brown);
  font-size: 1.1rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(201,168,76,0.3);
}
.faq-item.open .faq-icon { background: var(--gold); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 18px 28px 22px;
  font-size: 0.9rem;
  color: rgba(107,62,38,0.68);
  line-height: 1.78;
  border-top: 1.5px solid var(--gold-pale);
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ─ CTA Banner ─ */
.cta-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
  top: -150px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin-bottom: 36px;
}
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }


/* ── PAGE-SPECIFIC: Contact Us ── */
/* ─ Main contact grid ─ */
.contact-page { background: var(--ivory); }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  margin-top: 0;
}

/* ─ Info column ─ */
.contact-info-col { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  border: 2px solid rgba(201,168,76,0.15);
  box-shadow: var(--clay-shadow);
  transition: all 0.3s ease;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 16px 24px 56px rgba(107,62,38,0.16);
  border-color: rgba(201,168,76,0.32);
}
.contact-info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 4px 6px 16px rgba(107,62,38,0.25);
}
.contact-info-card-header h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
}
.contact-info-card p,
.contact-info-card address {
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(107,62,38,0.65);
  line-height: 1.75;
}
.contact-info-card a {
  color: var(--brown-mid);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.contact-info-card a:hover { color: var(--gold); }

/* Office hours table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--gold-pale); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 8px 0;
  font-size: 0.875rem;
  color: rgba(107,62,38,0.68);
}
.hours-table td:first-child { font-weight: 500; color: var(--brown); }
.hours-table td:last-child { text-align: right; }
.hours-closed { color: rgba(107,62,38,0.38) !important; font-style: italic; }

/* Social links card */
.social-card {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--clay-shadow);
}
.social-card h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.social-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.6;
}
.social-card-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-card-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.22s ease;
}
.social-card-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.social-card-btn span { font-size: 1rem; }

/* WhatsApp card */
.whatsapp-card {
  background: linear-gradient(135deg, #1a6b3a, #25a558);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 8px 12px 32px rgba(37,165,88,0.25);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.12);
}
.whatsapp-card:hover {
  transform: translateY(-4px);
  box-shadow: 10px 16px 40px rgba(37,165,88,0.35);
}
.whatsapp-card-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.whatsapp-card-text h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.whatsapp-card-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ─ Form column ─ */
.contact-form-col { position: sticky; top: 110px; }

.contact-main-form {
  background: var(--white);
  border-radius: 36px;
  padding: 48px 44px;
  border: 2px solid rgba(201,168,76,0.15);
  box-shadow: 16px 24px 60px rgba(107,62,38,0.12);
}
.contact-main-form h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}
.contact-main-form > p {
  font-size: 0.875rem;
  color: rgba(107,62,38,0.55);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Enquiry type toggle */
.enquiry-type-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.enquiry-type-btn {
  padding: 14px 16px;
  background: var(--ivory);
  border: 2px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-lg);
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(107,62,38,0.65);
  cursor: pointer;
  text-align: center;
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.enquiry-type-btn:hover { border-color: var(--gold); color: var(--brown); }
.enquiry-type-btn.active {
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-color: transparent;
  color: var(--gold-light);
  box-shadow: 4px 6px 16px rgba(107,62,38,0.22);
}

.form-divider {
  height: 1.5px;
  background: var(--gold-pale);
  border: none;
  margin: 4px 0 20px;
}

.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--ivory);
  border: 2px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  color: var(--brown);
  outline: none;
  transition: all 0.25s ease;
  resize: vertical;
  min-height: 120px;
  box-shadow: inset 3px 3px 8px rgba(107,62,38,0.06);
}
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15), inset 3px 3px 8px rgba(107,62,38,0.06);
}
.form-group textarea::placeholder { color: rgba(107,62,38,0.35); }

/* Response time note */
.response-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(107,62,38,0.72);
}
.response-note::before {
  content: '⚡';
  font-size: 1rem;
  flex-shrink: 0;
}

/* ─ Map placeholder section ─ */
.map-section { background: var(--ivory-dark); padding: 80px 24px; }
.map-inner { max-width: 1200px; margin: 0 auto; }
.map-section .section-tag { display: inline-block; }
.map-card {
  margin-top: 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--clay-shadow);
  border: 3px solid rgba(255,255,255,0.85);
  position: relative;
  height: 420px;
  background: var(--ivory-dark);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-overlay-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--clay-shadow);
  border: 2px solid rgba(201,168,76,0.2);
  z-index: 2;
}
.map-overlay-badge h5 {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 3px;
}
.map-overlay-badge p {
  font-size: 0.78rem;
  color: rgba(107,62,38,0.6);
  line-height: 1.5;
}

/* ─ Quote band ─ */
.quote-band {
  background: var(--gold);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '\201C';
  position: absolute;
  left: 40px; top: -20px;
  font-family: 'Libre Baskerville', serif;
  font-size: 240px;
  color: rgba(107,62,38,0.08);
  line-height: 1;
  pointer-events: none;
}
.quote-band blockquote {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--brown);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.quote-band cite {
  font-size: 0.85rem;
  color: rgba(107,62,38,0.65);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─ Success toast ─ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  color: var(--gold-light);
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(107,62,38,0.35);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9000;
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── PAGE-SPECIFIC: Listings ── */
/* ─ Filter Bar ─ */
.filter-bar {
  background: var(--ivory-dark);
  padding: 32px 24px;
  border-bottom: 1.5px solid rgba(201,168,76,0.15);
  position: sticky;
  top: 80px;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.filter-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 9px 20px;
  background: var(--ivory);
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: 100px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(107,62,38,0.65);
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 3px 4px 10px rgba(107,62,38,0.07);
}
.filter-tab:hover { border-color: var(--gold); color: var(--brown); }
.filter-tab.active {
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-color: transparent;
  color: var(--gold-light);
  box-shadow: 4px 6px 16px rgba(107,62,38,0.25);
}
.filter-count {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  color: rgba(107,62,38,0.5);
  white-space: nowrap;
}
.filter-count span {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  color: var(--brown);
  font-size: 1rem;
}

/* ─ Properties Section ─ */
.properties-section { background: var(--ivory); }
.properties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 52px;
}

/* Property card */
.property-card {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.15);
  box-shadow: var(--clay-shadow);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 16px 24px 56px rgba(107,62,38,0.18);
  border-color: rgba(201,168,76,0.35);
}
.property-card.featured {
  border-color: rgba(201,168,76,0.4);
  box-shadow: 0 0 0 2px rgba(201,168,76,0.2), var(--clay-shadow);
}

/* Featured badge */
.property-card.featured::before {
  content: '✦ Featured';
  position: absolute;
  top: 18px; left: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown);
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 2;
  box-shadow: 3px 4px 10px rgba(201,168,76,0.3);
  letter-spacing: 0.04em;
}

.property-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--brown-mid);
}
.property-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.property-card:hover .property-img-wrap img { transform: scale(1.06); }
.property-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(107,62,38,0.6) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  gap: 10px;
}
.property-card:hover .property-img-overlay { opacity: 1; }
.overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-md);
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.overlay-btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown);
  box-shadow: 3px 4px 12px rgba(201,168,76,0.35);
}
.overlay-btn.ghost {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.overlay-btn:hover { transform: translateY(-2px); }

/* Location tag on image */
.property-location-tag {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(253,246,227,0.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 5px 12px;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(201,168,76,0.25);
  z-index: 1;
}

.property-body { padding: 26px 28px 28px; }
.property-type-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--brown-mid);
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  border: 1px solid rgba(201,168,76,0.3);
}
.property-body h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.25;
}
.property-features {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.property-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--ivory-dark);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-md);
  padding: 6px 12px;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  color: rgba(107,62,38,0.72);
}
.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1.5px solid var(--gold-pale);
}
.property-enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  color: var(--gold-light);
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 4px 6px 16px rgba(107,62,38,0.22);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.property-enquire:hover { transform: translateY(-2px); box-shadow: 6px 8px 22px rgba(107,62,38,0.3); }
.property-status {
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.status-available { background: #e8f5e9; color: #2e7d32; border: 1px solid rgba(46,125,50,0.2); }
.status-limited { background: #fff8e1; color: #f57f17; border: 1px solid rgba(245,127,23,0.2); }
.status-enquire { background: var(--gold-pale); color: var(--brown); border: 1px solid rgba(201,168,76,0.3); }

/* ─ Gallery Section ─ */
.apt-gallery { background: var(--brown); }
.apt-gallery .section-title { color: var(--white); }
.apt-gallery .section-tag { background: rgba(201,168,76,0.15); color: var(--gold-light); border-color: rgba(201,168,76,0.3); }
.apt-gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
  margin-top: 48px;
}
.apt-gallery-grid .gallery-item:nth-child(1) { grid-row: 1 / 3; }

/* ─ Virtual Tours + Viewing (two-column CTA cards) ─ */
.viewing-section { background: var(--ivory-dark); }
.viewing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
}
.viewing-card {
  background: var(--ivory);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 2px solid rgba(201,168,76,0.16);
  box-shadow: var(--clay-shadow);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.viewing-card:hover { transform: translateY(-6px); box-shadow: 16px 24px 56px rgba(107,62,38,0.18); }
.viewing-card::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  background: var(--gold-pale);
  border-radius: 50%;
  opacity: 0.4;
}
.viewing-card-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 6px 8px 20px rgba(107,62,38,0.25);
  flex-shrink: 0;
}
.viewing-card h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.25;
}
.viewing-card p {
  font-size: 0.925rem;
  color: rgba(107,62,38,0.62);
  line-height: 1.75;
  flex: 1;
}
.viewing-perks { display: flex; flex-direction: column; gap: 10px; }
.viewing-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.855rem;
  color: rgba(107,62,38,0.72);
}
.viewing-perk::before { content: '✦'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

/* ─ Quote band ─ */
.quote-band {
  background: var(--gold);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-band::before {
  content: '\201C';
  position: absolute;
  left: 40px; top: -20px;
  font-family: 'Libre Baskerville', serif;
  font-size: 240px;
  color: rgba(107,62,38,0.08);
  line-height: 1;
  pointer-events: none;
}
.quote-band blockquote {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--brown);
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.quote-band cite {
  font-size: 0.85rem;
  color: rgba(107,62,38,0.65);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .properties-grid, .viewing-grid { grid-template-columns: 1fr; }
  .apt-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .apt-gallery-grid .gallery-item:nth-child(1) { grid-row: auto; grid-column: 1 / 3; }
  .filter-bar { top: 0; position: relative; }
}
@media (max-width: 600px) {
  .apt-gallery-grid { grid-template-columns: 1fr; }
  .apt-gallery-grid .gallery-item:nth-child(1) { grid-column: auto; }
}

/* ─── RESPONSIVE ─── */
/* ─── CONTACT PAGE: RESPONSIVE ─── */

@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-form-col { position: static; }
  .map-card { height: 300px; }
}


/* ─── Landlord PAGE: RESPONSIVE ─── */
@media (max-width: 900px) {
  .prop-management-grid,
  .listing-grid,
  .services-split-grid,
  .landlord-contact-grid { grid-template-columns: 1fr; }
  .prop-mgmt-badge { top: 12px; right: 12px; }
  .listing-cta-float { bottom: 12px; left: 12px; }
}

/* ─── TENANT PAGE: RESPONSIVE ─── */
@media (max-width: 900px) {
  .placement-grid, .tenant-contact-grid { grid-template-columns: 1fr; }
  .selection-grid { grid-template-columns: 1fr 1fr; }
  .placement-badge { top: 12px; right: 12px; }
}
@media (max-width: 600px) {
  .selection-grid { grid-template-columns: 1fr; }
}

/* ─── ABOUT PAGE: RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .mv-grid, .testimonials-grid, .values-inner { grid-template-columns: 1fr; }
  .about-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .about-gallery-grid .gallery-item:nth-child(1),
  .about-gallery-grid .gallery-item:nth-child(4) { grid-column: auto; }
}

/* ─── HOME PAGE: RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-cards { display: none; }
  .audience-grid, .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
}