/* ============================================================
   Flat Sale — Site CSS
   Fonts: Playfair Display (headings) + DM Sans (body)
   Palette: Deep Navy #3D1A78 | Gold #F9A825 | White #FFFFFF
   ============================================================ */

:root {
  --navy:      #3D1A78;
  --navy-light:#5B2D9E;
  --gold:      #F9A825;
  --gold-light:#FBC02D;
  --white:     #FFFFFF;
  --off-white: #F8F6F1;
  --gray:      #6B7280;
  --gray-light:#E5E7EB;
  --text:      #1F2937;
  --radius:    12px;
  --shadow:    0 4px 24px rgba(61,26,120,0.10);
  --shadow-lg: 0 12px 48px rgba(61,26,120,0.18);
  --transition:0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(249,168,37,0.3);
}
.topbar a { color: rgba(255,255,255,0.85); margin-right: 18px; }
.topbar a:hover { color: var(--gold); }
.topbar i { margin-right: 5px; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.btn-topbar {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.78rem;
}
.btn-topbar:hover { background: var(--gold-light); }
.btn-topbar-logout {
  color: #ff8080 !important;
  font-size: 0.78rem;
}
.user-badge {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.82rem;
}

/* ── NAVBAR ─────────────────────────────────────────────── */
.main-navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61,26,120,0.08);
  padding: 14px 0;
  transition: var(--transition);
  z-index: 999;
}
.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow);
}
.site-logo { height: 52px; width: auto; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
}
.logo-text span { color: var(--gold); }

.main-navbar .nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  font-size: 0.93rem;
  padding: 8px 14px !important;
  position: relative;
}
.main-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 22px !important;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(249,168,37,0.35);
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--navy);
  color: var(--gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,26,120,0.25);
}

/* Mega Dropdown */
.mega-dropdown {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 12px 0;
  min-width: 220px;
  border-top: 3px solid var(--gold);
}
.mega-header {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px 10px;
}
.mega-dropdown .dropdown-item {
  font-size: 0.88rem;
  color: var(--navy);
  padding: 8px 18px;
  transition: var(--transition);
}
.mega-dropdown .dropdown-item i { margin-right: 8px; color: var(--gold); width: 16px; }
.mega-dropdown .dropdown-item:hover { background: var(--off-white); color: var(--gold); }

/* ── HERO SECTION ───────────────────────────────────────── */
.hero-section {
  min-height: 88vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #3D1A78 0%, #5B2D9E 50%, #3D1A78 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,168,37,0.15);
  border: 1px solid rgba(249,168,37,0.4);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  animation: fadeDown 0.8s ease both;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeDown 0.8s 0.15s ease both;
}
.hero-title span { color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeDown 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeDown 0.8s 0.45s ease both;
}
.btn-hero-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 28px rgba(249,168,37,0.4);
  transition: var(--transition);
}
.btn-hero-primary:hover { background: var(--gold-light); transform: translateY(-3px); }
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.35);
  transition: var(--transition);
}
.btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); }

/* Hero Search Box */
.hero-search-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(10px);
  animation: fadeDown 0.8s 0.6s ease both;
}
.hero-search-box h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.hero-search-box .form-select,
.hero-search-box .form-control {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.88rem;
}
.hero-search-box .form-select option { color: var(--navy); background: white; }
.hero-search-box .form-select::placeholder,
.hero-search-box .form-control::placeholder { color: rgba(255,255,255,0.5); }
.hero-search-box .form-select:focus,
.hero-search-box .form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(249,168,37,0.2);
  background: rgba(255,255,255,0.15);
}
.btn-search {
  background: var(--gold);
  color: var(--navy);
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-search:hover { background: var(--gold-light); }

/* Hero Stats */
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeDown 0.8s 0.75s ease both;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ── SECTION STYLES ─────────────────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-dark { background: var(--navy); }
.section-off { background: var(--off-white); }

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
}
.section-title-white { color: var(--white); }
.section-sub {
  color: var(--gray);
  font-size: 1rem;
  max-width: 580px;
  margin-bottom: 48px;
}
.section-sub-white { color: rgba(255,255,255,0.7); }

.divider-gold {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 16px;
}

/* ── PROPERTY CARD ──────────────────────────────────────── */
.prop-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.prop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.prop-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.prop-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.prop-card:hover .prop-card-img img { transform: scale(1.06); }
.prop-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.prop-badge-new { background: #10B981; color: white; }
.prop-badge-ready { background: #3B82F6; color: white; }

.prop-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.prop-builder {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.prop-builder img { height: 22px; width: auto; }
.prop-builder-name { font-size: 0.75rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.prop-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prop-location {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 14px;
}
.prop-location i { color: var(--gold); margin-right: 4px; }
.prop-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.prop-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--gray);
}
.prop-spec i { color: var(--gold); font-size: 0.75rem; }
.prop-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
  margin-top: auto;
}
.prop-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}
.prop-price sup { font-size: 0.7rem; color: var(--gold); font-family: 'DM Sans', sans-serif; }
.btn-view-prop {
  background: var(--navy);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-view-prop:hover { background: var(--gold); color: var(--navy); }

/* ── BUILDER CARD ───────────────────────────────────────── */
.builder-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  cursor: pointer;
}
.builder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.builder-logo-wrap {
  height: 180px;
  width: 400px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.builder-logo-wrap img { width: 400px; height: 180px; max-width: 100%; object-fit: contain; }
.builder-logo-placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}
.builder-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.builder-proj { font-size: 0.8rem; color: var(--gray); }
.builder-proj span { color: var(--gold); font-weight: 700; }

/* ── BLOG CARD ──────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px; }
.blog-category {
  display: inline-block;
  background: rgba(249,168,37,0.12);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.blog-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-summary { font-size: 0.85rem; color: var(--gray); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; font-size: 0.78rem; color: var(--gray); }
.btn-read-more { color: var(--gold); font-weight: 600; font-size: 0.82rem; }
.btn-read-more:hover { color: var(--navy); }

/* ── TESTIMONIAL ────────────────────────────────────────── */
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(249,168,37,0.2);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.testimonial-text { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.8; margin-bottom: 20px; margin-top: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-photo-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700; color: var(--navy); font-size: 1.1rem;
}
.testimonial-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.testimonial-desig { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 2px; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0 40px;
  position: relative;
}
.page-hero-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 10px;
}
.breadcrumb { background: transparent; padding: 0; }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: rgba(255,255,255,0.65); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ── FORMS ──────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(249,168,37,0.15);
}
.form-label { font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 6px; }
.btn-primary-site {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 12px 32px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-site:hover { background: var(--navy); color: var(--gold); transform: translateY(-2px); }
.btn-outline-site {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 11px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-site:hover { background: var(--navy); color: var(--white); }

/* ── AUTH MODAL ─────────────────────────────────────────── */
.auth-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
}
.auth-modal .modal-header {
  background: var(--navy);
  padding: 20px 28px;
}
.auth-modal .modal-title { color: var(--white); font-size: 1.2rem; }
.auth-modal .btn-close { filter: invert(1); }
.auth-modal .modal-body { padding: 28px; }
.auth-sub { color: var(--gray); font-size: 0.88rem; margin-bottom: 22px; }
.auth-input { border: 1.5px solid var(--gray-light); border-radius: 8px; padding: 11px 14px; }
.auth-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(249,168,37,0.15); }
.btn-auth {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}
.btn-auth:hover { background: var(--navy); color: var(--gold); }
.auth-login-link { font-size: 0.85rem; color: var(--gray); }
.auth-login-link a { color: var(--gold); font-weight: 600; }

/* OTP Boxes */
.otp-boxes { display: flex; gap: 10px; justify-content: center; }
.otp-input {
  width: 46px; height: 52px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  color: var(--navy);
  transition: var(--transition);
}
.otp-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(249,168,37,0.15); outline: none; }

/* ── FILTER BAR ─────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-radius: 16px;
  padding: 22px 28px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.filter-bar .form-label { font-size: 0.78rem; }

/* ── PROPERTY DETAIL ────────────────────────────────────── */
.prop-detail-gallery { border-radius: 16px; overflow: hidden; }
.gallery-main img { width: 100%; height: 440px; object-fit: cover; border-radius: 12px; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.gallery-thumb {
  width: calc(25% - 6px);
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.75;
  transition: var(--transition);
}
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; outline: 2px solid var(--gold); }

.prop-detail-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.detail-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--navy);
}
.detail-price span { font-size: 1rem; color: var(--gray); font-family: 'DM Sans', sans-serif; font-weight: 400; }

.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.spec-item { text-align: center; padding: 14px; background: var(--off-white); border-radius: 10px; }
.spec-icon { font-size: 1.3rem; color: var(--gold); margin-bottom: 6px; }
.spec-value { font-size: 1rem; font-weight: 700; color: var(--navy); }
.spec-label { font-size: 0.72rem; color: var(--gray); }

.amenity-tag {
  display: inline-block;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  color: var(--navy);
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 20px;
  margin: 4px;
}
.amenity-tag i { color: var(--gold); margin-right: 5px; }

/* Enquiry sidebar */
.enquiry-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 28px;
  position: sticky;
  top: 90px;
}
.enquiry-card h4 { color: var(--white); margin-bottom: 6px; }
.enquiry-card p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 20px; }
.enquiry-card .form-control { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: white; }
.enquiry-card .form-control::placeholder { color: rgba(255,255,255,0.45); }
.enquiry-card .form-control:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.8); }
.footer-top { padding: 64px 0 40px; }
.footer-logo { height: 52px; width: auto; }
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}
.footer-tagline { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin: 10px 0 8px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-heading {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(249,168,37,0.3);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.footer-contact i { color: var(--gold); margin-top: 2px; min-width: 16px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold); }
.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 16px;
  transition: var(--transition);
}
.btn-footer-cta:hover { background: var(--white); color: var(--navy); }
.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ── FLOATING WHATSAPP ──────────────────────────────────── */
.float-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  background: #25D366;
  color: white;
  width: 56px; height: 56px;
  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);
  transition: var(--transition);
  animation: pulse-wp 2s infinite;
}
.float-whatsapp:hover { transform: scale(1.12); color: white; }
@keyframes pulse-wp {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* ── LOGIN REQUIRED OVERLAY ─────────────────────────────── */
.login-required-overlay {
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.95) 40%);
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 24px;
}
.login-required-banner {
  background: var(--navy);
  color: white;
  padding: 16px 28px;
  border-radius: 50px;
  text-align: center;
  font-size: 0.88rem;
}
.login-required-banner a { color: var(--gold); font-weight: 700; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.2s; }
.fade-up-3 { animation-delay: 0.3s; }

/* ── PAGINATION ─────────────────────────────────────────── */
.pagination-wrap { display: flex; justify-content: center; margin-top: 40px; gap: 6px; }
.page-btn {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gray-light);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.page-btn:hover, .page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── UTILITIES ──────────────────────────────────────────── */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-gold { background: var(--gold) !important; }
.rounded-xl { border-radius: 16px !important; }
.no-listings { text-align: center; padding: 60px 20px; color: var(--gray); }
.no-listings i { font-size: 3rem; color: var(--gray-light); margin-bottom: 16px; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 991px) {
  .topbar { display: none; }
  .hero-section { min-height: auto; padding: 60px 0; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
}
@media (max-width: 767px) {
  .section { padding: 50px 0; }
  .prop-card-img { height: 180px; }
  .gallery-main img { height: 260px; }
  .gallery-thumb { height: 70px; }
  .enquiry-card { position: static; }
  .otp-boxes { gap: 7px; }
  .otp-input { width: 40px; height: 46px; font-size: 1.1rem; }
}
