/* ═══════════════════════════════════════════════════════════════
   Manza's Homes — Hoja de estilos principal
   Colores marca: Negro #1C1C1C | Oro #C9A96E | Claro #FAF8F4
   ═══════════════════════════════════════════════════════════════ */

/* ─── Custom Properties ──────────────────────────────────────── */
:root {
  --dark:        #1C1C1C;
  --dark-2:      #2A2A2A;
  --gold:        #C9A96E;
  --gold-dark:   #A8854A;
  --gold-light:  #E8D5B0;
  --gold-pale:   #FAF3E6;
  --light:       #FAF8F4;
  --white:       #FFFFFF;
  --grey-100:    #F4F2EE;
  --grey-200:    #E8E5DE;
  --grey-400:    #B5B0A4;
  --grey-700:    #666058;
  --text:        #2D2D2D;
  --text-light:  #7A7266;
  --success:     #28A745;
  --danger:      #DC3545;
  --warning:     #FFC107;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.07);
  --shadow-md:   0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.15);
  --radius:      12px;
  --radius-sm:   8px;
  --transition:  .3s ease;
}

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--dark); line-height: 1.2; }
h5, h6 { font-family: var(--font-body); font-weight: 600; color: var(--dark); }

a { color: var(--gold-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; }

/* ─── Utility classes ────────────────────────────────────────── */
.text-gold   { color: var(--gold) !important; }
.text-dark-2 { color: var(--dark) !important; }
.bg-dark-main { background: var(--dark) !important; }
.bg-gold      { background: var(--gold) !important; }
.bg-light-cream { background: var(--light) !important; }
.section-pad { padding: 80px 0; }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0;
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all var(--transition);
  letter-spacing: .3px;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: none;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,110,.35);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-dark-main {
  background: var(--dark);
  color: var(--white);
  border: none;
}
.btn-dark-main:hover {
  background: var(--dark-2);
  color: var(--white);
  transform: translateY(-1px);
}

/* ─── Topbar ─────────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  color: var(--grey-400);
  font-size: 12.5px;
  padding: 8px 0;
  border-bottom: 1px solid #2e2e2e;
}

.topbar-link {
  color: var(--grey-400);
  text-decoration: none;
  transition: color var(--transition);
}
.topbar-link:hover { color: var(--gold); }
.topbar-link i { margin-right: 4px; }
.topbar-text { color: var(--grey-400); }

/* ─── Navbar ─────────────────────────────────────────────────── */
#mainNav {
  background: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: all var(--transition);
}

#mainNav.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.navbar-logo { height: 44px; width: auto; object-fit: contain; }

.navbar-brand-text { line-height: 1.2; }
.brand-name { display: block; font-family: var(--font-heading); font-size: 1.3rem; color: var(--white); }
.brand-tagline { font-size: 10px; color: var(--gold-light); letter-spacing: 1px; }

#mainNav .nav-link {
  color: rgba(255,255,255,.82);
  font-weight: 400;
  font-size: 14.5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--gold); }

#mainNav .dropdown-menu {
  background: var(--white);
  border: none;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  min-width: 200px;
}

#mainNav .dropdown-item {
  color: var(--text);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: all var(--transition);
}

#mainNav .dropdown-item:hover {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: .35;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(28,28,28,.92) 0%, rgba(28,28,28,.55) 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  background: rgba(201,169,110,.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title .highlight { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin-bottom: 36px;
}

/* Search Box en el Hero */
.hero-search-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  max-width: 620px;
}

.hero-search-box .form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-700);
  margin-bottom: 6px;
}

.hero-search-box .form-control,
.hero-search-box .form-select {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--transition);
}

.hero-search-box .form-control:focus,
.hero-search-box .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat { color: var(--white); }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 4px; }

/* ─── Property Cards ─────────────────────────────────────────── */
.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--grey-100);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}

.property-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.property-card:hover .property-card-img img { transform: scale(1.07); }

.property-card-img .placeholder-img {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--grey-100), var(--grey-200));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  font-size: 3rem;
}

/* Badges */
.card-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-wrap: wrap; gap: 6px;
}

.badge-piso       { background: #1a3a5c; color: #fff; }
.badge-habitacion { background: #1a4a2a; color: #fff; }
.badge-corta      { background: #5c2d1a; color: #fff; }
.badge-featured   { background: var(--gold); color: #fff; }
.badge-disponible { background: var(--success); color: #fff; }
.badge-reservado  { background: var(--warning); color: #333; }
.badge-ocupado    { background: var(--danger); color: #fff; }

.badge-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 50px;
}

.card-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-400);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.card-wishlist:hover { color: var(--danger); background: #fff; }

.property-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-location {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 6px;
}
.property-location i { margin-right: 3px; }

.property-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.property-specs {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--text-light);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.property-specs span i { margin-right: 3px; color: var(--gold); }

.property-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--grey-100);
  padding-top: 14px;
  margin-top: auto;
}

.property-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.price-period {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--grey-700);
}

.property-amenities-icons {
  display: flex; gap: 8px;
  font-size: 14px;
  color: var(--grey-400);
}

.property-amenities-icons i { transition: color var(--transition); }
.property-amenities-icons i:hover { color: var(--gold); }

/* ─── Filter Bar ─────────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.filter-bar .form-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-700);
  margin-bottom: 6px;
}

.filter-bar .form-control,
.filter-bar .form-select {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
}

.filter-bar .form-control:focus,
.filter-bar .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}

/* ─── Locations Grid ─────────────────────────────────────────── */
.location-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.location-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.location-card:hover .location-card-img { transform: scale(1.08); }

.location-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,.85) 30%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.location-card-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.location-card-count {
  font-size: 12px;
  color: var(--gold-light);
}

/* ─── Property Detail ────────────────────────────────────────── */
.property-gallery {
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-main {
  width: 100%; height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.gallery-thumbs { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }

.gallery-thumb {
  width: 80px; height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: .7;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--gold);
}

.detail-price-box {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.detail-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 14px;
  color: var(--text-light);
}

.amenity-item i { color: var(--gold); font-size: 1rem; width: 20px; }

/* ─── Page Hero (subpages) ───────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, #2e2420 100%);
  opacity: .9;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero-subtitle {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 16px;
}

.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.breadcrumb-item { font-size: 13px; color: rgba(255,255,255,.6); }
.breadcrumb-item.active { color: var(--gold); }
.breadcrumb-item a { color: rgba(255,255,255,.75); }
.breadcrumb-item a:hover { color: var(--gold); }

/* ─── Feature Cards (servicios) ──────────────────────────────── */
.feature-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--grey-100);
  transition: all var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}

.feature-icon {
  width: 70px; height: 70px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
}

.feature-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feature-text  { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* ─── Stats Banner ───────────────────────────────────────────── */
.stats-banner {
  background: var(--dark);
  padding: 60px 0;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  letter-spacing: .5px;
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  height: 100%;
}

.testimonial-text { font-style: italic; color: var(--text-light); margin-bottom: 16px; }

.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-dark);
  font-weight: 700;
}

.testimonial-name { font-weight: 600; font-size: 14px; color: var(--dark); }
.testimonial-info { font-size: 12px; color: var(--grey-400); }

.stars { color: var(--gold); font-size: 13px; }

/* ─── CTA Band ───────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, #2e2420 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(201,169,110,.08);
}

.text-white-75 { color: rgba(255,255,255,.75) !important; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
}

.footer-site-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}

.footer-tagline { font-size: 12px; color: var(--gold); }

.footer-text { font-size: 13.5px; line-height: 1.7; }

.footer-heading {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 13.5px;
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}

.footer-links a:hover { color: var(--gold); }
.footer-links a i { font-size: 10px; color: var(--gold); opacity: .6; }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
}

.footer-contact-list li i { font-size: 14px; margin-top: 2px; flex-shrink: 0; }

.footer-contact-list a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-contact-list a:hover { color: var(--gold); }

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  transition: all var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--gold); color: #fff; }

.footer-divider { border-color: rgba(255,255,255,.08); }

.footer-copy { font-size: 12.5px; color: rgba(255,255,255,.4); }
.footer-legal-link { font-size: 12.5px; color: rgba(255,255,255,.45); }
.footer-legal-link:hover { color: var(--gold); }

/* ─── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 58px; height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
  background: #20b358;
  color: #fff;
  transform: scale(1.1);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,.7); }
}

/* ─── Scroll to top ──────────────────────────────────────────── */
.scroll-top-btn {
  position: fixed;
  bottom: 100px; right: 30px;
  width: 42px; height: 42px;
  background: var(--dark);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top-btn:hover { background: var(--gold); color: #fff; }

/* ─── Forms ──────────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
  outline: none;
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-700);
  margin-bottom: 6px;
}

/* Alert messages */
.alert { border-radius: var(--radius-sm); border: none; padding: 14px 18px; }
.alert-success { background: #d1fae5; color: #065f46; }
.alert-danger   { background: #fee2e2; color: #991b1b; }
.alert-info     { background: #dbeafe; color: #1e40af; }
.alert-warning  { background: #fef3c7; color: #92400e; }

/* ─── Contact Page ───────────────────────────────────────────── */
.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-icon-box {
  width: 52px; height: 52px;
  background: rgba(201,169,110,.15);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* ─── Locations Page ─────────────────────────────────────────── */
.zone-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--grey-100);
  transition: all var(--transition);
}

.zone-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold-light); }

.zone-card-img { height: 200px; object-fit: cover; width: 100%; }

.zone-card-body { padding: 22px; }

.zone-badge {
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
  display: inline-block;
}

/* ─── Student / Worker pages ─────────────────────────────────── */
.target-hero-icon {
  width: 100px; height: 100px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  color: var(--gold);
  margin: 0 auto 24px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-100);
}

.benefit-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ─── Pagination ─────────────────────────────────────────────── */
.page-link {
  color: var(--gold-dark);
  border-color: var(--grey-200);
  border-radius: var(--radius-sm) !important;
  margin: 0 2px;
  font-size: 14px;
  transition: all var(--transition);
}

.page-item.active .page-link { background: var(--gold); border-color: var(--gold); color: #fff; }
.page-link:hover { background: var(--gold-pale); color: var(--gold-dark); border-color: var(--gold); }
.page-item.disabled .page-link { color: var(--grey-400); }

/* ─── Map placeholder ────────────────────────────────────────── */
.map-placeholder {
  background: var(--grey-100);
  border-radius: var(--radius);
  height: 350px;
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-400);
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .hero { min-height: 70vh; }
  .section-pad { padding: 56px 0; }
  .gallery-main { height: 280px; }
  .detail-price-box { position: static; margin-top: 24px; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 767px) {
  .hero { min-height: 100vh; }
  .hero-search-box { padding: 16px; }
  .property-card-img { height: 190px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .scroll-top-btn { bottom: 88px; right: 20px; }
}

@media (max-width: 575px) {
  .stat-number { font-size: 2.2rem; }
  .hero-title { font-size: 2rem; }
}
