/* ================================================================
   PURVANCHAL REALTY — Premium Real Estate Portal
   Comprehensive Stylesheet
   ================================================================ */

/* ── 1. CSS Custom Properties ── */
:root {
  --navy: #0A2540;
  --blue: #1565C0;
  --gold: #C9A84C;
  --gold-dark: #b8943f;
  --white: #FFFFFF;
  --light-bg: #F8FAFC;
  --bg-alt: #F7F9FC;
  --text-dark: #1A1A2E;
  --text-body: #334155;
  --text-muted: #5A6577;
  --text-light: #64748b;
  --text-faint: #94a3b8;
  --border: #e2e8f0;
  --border-light: #eef1f6;
  --border-lighter: #f3f5f8;
  --surface: #f8f9fb;
  --surface-alt: #f0f2f5;
  --shadow-sm: 0 1px 8px rgba(10, 37, 64, 0.05);
  --shadow-md: 0 2px 12px rgba(10, 37, 64, 0.07);
  --shadow-lg: 0 8px 32px rgba(10, 37, 64, 0.10);
  --shadow-xl: 0 12px 40px rgba(10, 37, 64, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.45s ease;
  --container-max: 1280px;
  --container-narrow: 1200px;
}

/* ── 2. CSS Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy); }
p { margin: 0; }
table { border-collapse: collapse; width: 100%; }
button { cursor: pointer; border: none; background: none; }

/* ── 3. Typography ── */
h1, .h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.5px; }
h2, .h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -0.3px; }
h3, .h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4, .h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h5, .h5 { font-size: 1.1rem; }
h6, .h6 { font-size: 0.95rem; }

.text-navy { color: var(--navy); }
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

/* ── 4. Container & Grid ── */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: var(--container-narrow); }
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--6 { grid-template-columns: repeat(6, 1fr); }

/* ── 5. Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.6rem; font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer;
  transition: all var(--transition-fast); text-decoration: none; line-height: 1.4; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary, .btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn--primary:hover, .btn-primary:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn--secondary { background: var(--surface-alt); color: var(--navy); border-color: var(--border); }
.btn--secondary:hover { background: #e5e8ed; }
.btn--gold, .btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--gold:hover, .btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn--outline, .btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn--outline:hover, .btn-outline:hover { background: var(--blue); color: var(--white); }
.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #1fb855; }
.btn--sm, .btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
.btn--lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn--block { display: flex; width: 100%; }

.btn-submit {
  width: 100%; padding: 14px 28px;
  background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white);
  border: none; border-radius: var(--radius-md); font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(21,101,192,0.3); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ── 6. Navigation ── */
.pr-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1rem 0;
  transition: background var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
  background: transparent;
}
.pr-nav.scrolled {
  background: rgba(255,255,255,0.97); box-shadow: 0 2px 20px rgba(10,37,64,0.08);
  padding: 0.6rem 0; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.pr-nav__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.pr-nav__logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; color: var(--white); transition: color var(--transition-base); }
.pr-nav.scrolled .pr-nav__logo { color: var(--navy); }
.pr-nav__logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.pr-nav__logo-icon-fill { fill: var(--gold); transition: fill var(--transition-base); }
.pr-nav__links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.pr-nav__link { font-size: 0.925rem; font-weight: 500; color: rgba(255,255,255,0.9); transition: color 0.25s ease; position: relative; letter-spacing: 0.01em; }
.pr-nav.scrolled .pr-nav__link { color: var(--text-dark); }
.pr-nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s ease; }
.pr-nav__link:hover::after, .pr-nav__link[aria-current="page"]::after { width: 100%; }
.pr-nav__link:hover { color: var(--gold); }
.pr-nav.scrolled .pr-nav__link:hover { color: var(--blue); }
.pr-nav__cta { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.55rem 1.3rem; background: var(--gold); color: var(--navy); font-weight: 600; font-size: 0.875rem; border-radius: var(--radius-sm); transition: background 0.25s ease, transform 0.2s ease; }
.pr-nav__cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
.pr-nav__hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 1010; }
.pr-nav__hamburger span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease, background var(--transition-base); }
.pr-nav.scrolled .pr-nav__hamburger span { background: var(--navy); }
.pr-nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.pr-nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.pr-nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.pr-nav__mobile { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 1005; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem; opacity: 0; pointer-events: none; transition: opacity var(--transition-base); }
.pr-nav__mobile.is-open { display: flex; opacity: 1; pointer-events: auto; }
.pr-nav__mobile a { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); transition: color var(--transition-fast); }
.pr-nav__mobile a:hover { color: var(--gold); }

/* ── 7. Hero Section ── */
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, var(--navy) 0%, #0f3460 50%, var(--blue) 100%); background-size: cover; background-position: center; color: var(--white); padding: 120px 1.5rem 60px; overflow: hidden; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,37,64,0.88) 0%, rgba(15,52,96,0.75) 50%, rgba(21,101,192,0.65) 100%); z-index: 1; }
.hero__content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.hero__title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; color: var(--white); margin-bottom: 1rem; letter-spacing: -0.5px; line-height: 1.15; }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto 2rem; line-height: 1.7; }
.hero__search { display: flex; background: var(--white); border-radius: var(--radius-lg); padding: 6px; box-shadow: 0 8px 32px rgba(0,0,0,0.18); max-width: 720px; margin: 0 auto; }
.hero__search-field { flex: 1; padding: 0.5rem 1rem; text-align: left; }
.hero__search-field label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 2px; }
.hero__search-field select { width: 100%; border: none; font-size: 0.9rem; font-weight: 500; color: var(--navy); background: transparent; outline: none; cursor: pointer; font-family: var(--font-body); }
.hero__search-btn { padding: 0.8rem 2rem; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 0.95rem; border: none; border-radius: var(--radius-md); cursor: pointer; transition: background var(--transition-fast), transform var(--transition-fast); white-space: nowrap; font-family: var(--font-body); }
.hero__search-btn:hover { background: var(--gold-dark); transform: translateY(-1px); }
.hero__stats { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 2rem; margin-top: 3rem; padding: 1.5rem 2.5rem; background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); }
.hero__stat { text-align: center; }
.hero__stat-number { display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 4px; font-family: var(--font-heading); }
.hero__stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500; }
.hero__stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.page-hero { position: relative; height: 380px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.35); }
.page-hero__content { position: relative; z-index: 2; padding: 20px; }
.page-hero__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 10px; letter-spacing: -0.5px; color: var(--white); }
.page-hero__tagline, .page-hero__subtitle, .page-hero__location { font-size: 1.1rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }
.page-hero__meta { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }


/* ── 8. Section Styles ── */
.section { padding: 80px 0; }
.section .container, .section.container { max-width: var(--container-narrow); margin: 0 auto; padding: 0 20px; }
.section--alt { background: var(--light-bg); }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.section__subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.section-title { font-size: 1.8rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 40px; }

/* ── 9. Card Styles ── */
.pr-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); transition: transform var(--transition-base), box-shadow var(--transition-base); border: 1px solid rgba(10,37,64,0.05); }
.pr-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.pr-card__link { display: block; text-decoration: none; color: inherit; }
.pr-card__link:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 12px; }
.pr-card__image-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #F0F3F7; }
.pr-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.pr-card:hover .pr-card__image { transform: scale(1.05); }
.pr-card__badges { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; gap: 0.4rem; z-index: 2; }
.pr-card__ribbon { display: inline-block; background: var(--gold); color: var(--navy); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 0.3rem 0.7rem; border-radius: 4px; }
.pr-card__badge--type { display: inline-block; background: rgba(10,37,64,0.85); color: var(--white); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.3rem 0.65rem; border-radius: 4px; backdrop-filter: blur(4px); }
.pr-card__price { position: absolute; bottom: 0.75rem; right: 0.75rem; background: var(--navy); color: var(--white); font-size: 0.9rem; font-weight: 700; padding: 0.4rem 0.85rem; border-radius: var(--radius-sm); z-index: 2; }
.pr-card__body { padding: 1.1rem 1.2rem 1.3rem; }
.pr-card__title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 0.4rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.pr-card__location { display: flex; align-items: center; gap: 0.3rem; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.pr-card__location svg { flex-shrink: 0; color: var(--blue); }
.pr-card__meta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.pr-card__meta-item { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; color: var(--text-muted); background: var(--bg-alt); padding: 0.3rem 0.6rem; border-radius: 5px; }
.pr-card__meta-item svg { flex-shrink: 0; color: var(--blue); }

.card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); transition: transform var(--transition-fast), box-shadow var(--transition-fast); }
.card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(10,37,64,0.12); }
.card__image { width: 100%; height: 180px; object-fit: cover; display: block; }
.card__body { padding: 20px; }
.card__title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.card__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; margin-bottom: 14px; }
.card__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 0.85rem; color: var(--text-muted); }

.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.city-card { background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 16px rgba(10,37,64,0.08); transition: transform 0.25s ease, box-shadow 0.25s ease; border: 1px solid var(--border); text-decoration: none; color: inherit; display: block; }
.city-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(10,37,64,0.14); }
.city-card__image-wrapper { overflow: hidden; aspect-ratio: 16/10; }
.city-card__image { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform var(--transition-base); }
.city-card:hover .city-card__image { transform: scale(1.05); }
.city-card__content { padding: 24px; }
.city-card__name { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.city-card__count { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.city-card__link { color: var(--blue); font-weight: 600; font-size: 0.9rem; }
.city-card__desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; border: 1px solid var(--border-light); transition: box-shadow var(--transition-fast), transform var(--transition-fast); }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-card__icon { width: 64px; height: 64px; margin: 0 auto 1rem; background: linear-gradient(135deg, rgba(21,101,192,0.1), rgba(10,37,64,0.06)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.feature-card__icon svg { width: 28px; height: 28px; }
.feature-card__title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.feature-card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.projects-carousel { position: relative; display: flex; align-items: center; gap: 12px; }
.projects-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 8px 4px; -ms-overflow-style: none; scrollbar-width: none; flex: 1; }
.projects-track::-webkit-scrollbar { display: none; }
.carousel__nav { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition-fast); color: var(--navy); box-shadow: var(--shadow-sm); }
.carousel__nav:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.carousel__nav svg { width: 20px; height: 20px; }
.project-card { min-width: 300px; max-width: 340px; flex-shrink: 0; scroll-snap-align: start; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); transition: box-shadow var(--transition-fast), transform var(--transition-fast); }
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.project-card__image-wrapper { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #F0F3F7; }
.project-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-base); }
.project-card:hover .project-card__image { transform: scale(1.05); }
.project-card__status { position: absolute; top: 12px; left: 12px; padding: 5px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.project-card__status--ready-to-move { background: #e8f5e9; color: #2e7d32; }
.project-card__status--under-construction { background: #fff3e0; color: #e65100; }
.project-card__status--upcoming { background: #e3f2fd; color: var(--blue); }
.project-card__status--default { background: #f0f2f5; color: var(--text-muted); }
.project-card__content { padding: 20px; }
.project-card__name { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.project-card__location { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.project-card__location svg { flex-shrink: 0; color: var(--blue); }
.project-card__plots { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.project-card__plots strong { color: var(--navy); }
.project-card__btn { display: block; text-align: center; padding: 10px; background: var(--navy); color: var(--white); border-radius: 8px; text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: background var(--transition-fast); }
.project-card__btn:hover { background: var(--blue); }

.plots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plot-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.plot-card:hover { box-shadow: 0 8px 32px rgba(10,37,64,0.1); transform: translateY(-3px); }
.plot-card__image-wrapper { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #e2e8f0; }
.plot-card__image, .plot-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-base); }
.plot-card:hover .plot-card__image img { transform: scale(1.05); }
.plot-card__price { font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.plot-card__content { padding: 20px; }
.plot-card__title { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 8px; line-height: 1.3; }
.plot-card__location { font-size: 13px; color: var(--text-light); margin-bottom: 12px; display: flex; align-items: center; gap: 4px; }
.plot-card__location svg { flex-shrink: 0; color: var(--blue); }
.plot-card__details { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.plot-card__detail { display: inline-flex; align-items: center; gap: 4px; font-size: 0.78rem; color: var(--text-muted); background: var(--bg-alt); padding: 4px 10px; border-radius: 5px; }
.plot-card__detail svg { flex-shrink: 0; color: var(--blue); }
.plot-card__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.plot-card__btn { display: block; text-align: center; padding: 10px; border-radius: 8px; text-decoration: none; font-size: 0.82rem; font-weight: 600; transition: all var(--transition-fast); }
.plot-card__btn--primary { background: var(--navy); color: var(--white); }
.plot-card__btn--primary:hover { background: var(--blue); }
.plot-card__btn--secondary { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.plot-card__btn--secondary:hover { background: var(--navy); color: var(--white); }
.plot-card__body { padding: 20px; }
.plot-card__area { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 4px; }
.plot-card__type { font-size: 0.8rem; color: var(--text-body); font-weight: 500; margin-bottom: 14px; }
.plot-card__link { display: block; text-align: center; padding: 10px; background: var(--navy); color: var(--white); border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 600; transition: background var(--transition-fast); }
.plot-card__link:hover { background: var(--blue); }
.plot-card__meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }

.investment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 2.5rem; }
.investment-card { background: var(--light-bg); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border-light); transition: box-shadow var(--transition-fast), transform var(--transition-fast); }
.investment-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.investment-card__icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(21,101,192,0.12), rgba(10,37,64,0.08)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 1rem; }
.investment-card__icon svg { width: 26px; height: 26px; }
.investment-card__title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.investment-card__desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
.investment-cta { text-align: center; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border-light); transition: box-shadow var(--transition-fast), transform var(--transition-fast); }
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial-card__quote { color: var(--gold); margin-bottom: 1rem; opacity: 0.5; }
.testimonial-card__text { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-card__rating { display: flex; gap: 2px; color: var(--gold); margin-bottom: 1rem; }
.testimonial-card__author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card__name { font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.testimonial-card__city { font-size: 0.82rem; color: var(--text-muted); }


/* ── 10. Search & Filters ── */
.search-page { padding: 40px 0 64px; }
.search-page__header { margin-bottom: 32px; }
.search-page__title { font-size: 32px; font-weight: 800; color: var(--navy); margin: 0 0 6px; }
.search-page__subtitle { font-size: 15px; color: var(--text-light); }
.search-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.search-filters { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 24px; box-shadow: 0 2px 12px rgba(10,37,64,0.05); }
.search-filters__heading { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 20px; padding-bottom: 14px; border-bottom: 2px solid var(--blue); }
.search-filters__group { margin-bottom: 18px; }
.search-filters__label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; color: var(--text-light); margin-bottom: 7px; }
.search-filters__select, .search-filters__input { width: 100%; padding: 10px 12px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--navy); background: var(--light-bg); box-sizing: border-box; font-family: inherit; transition: border-color var(--transition-fast); }
.search-filters__select:focus, .search-filters__input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); background: var(--white); }
.search-filters__range { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.search-filters__btn { width: 100%; padding: 12px; background: var(--blue); color: var(--white); border: none; border-radius: 8px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background var(--transition-fast); margin-top: 6px; font-family: inherit; }
.search-filters__btn:hover { background: var(--navy); }
.search-filters__clear { display: block; text-align: center; margin-top: 12px; font-size: 13px; color: var(--text-light); text-decoration: none; font-weight: 600; }
.search-filters__clear:hover { color: var(--blue); }
.search-results__toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.search-results__count { font-size: 16px; color: var(--navy); font-weight: 600; }
.search-results__count span { color: var(--blue); font-weight: 800; }
.search-results__sort { display: flex; align-items: center; gap: 8px; }
.search-results__sort-label { font-size: 13px; color: var(--text-light); font-weight: 600; }
.search-results__sort-select { padding: 8px 12px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; color: var(--navy); background: var(--white); font-family: inherit; cursor: pointer; }
.search-results__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.search-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.search-card:hover { box-shadow: 0 8px 28px rgba(10,37,64,0.09); transform: translateY(-2px); }
.search-card__image { width: 100%; aspect-ratio: 16/10; background: #e2e8f0; overflow: hidden; position: relative; }
.search-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-base); }
.search-card:hover .search-card__image img { transform: scale(1.05); }
.search-card__type-badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-sm); text-transform: uppercase; letter-spacing: 0.5px; }
.search-card__body { padding: 18px 20px 20px; }
.search-card__title { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 6px; line-height: 1.3; }
.search-card__location { font-size: 13px; color: var(--text-light); margin-bottom: 14px; display: flex; align-items: center; gap: 4px; }
.search-card__footer { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.search-card__price { font-size: 20px; font-weight: 800; color: var(--gold); }
.search-card__area { font-size: 13px; color: var(--text-body); background: #f1f5f9; padding: 4px 10px; border-radius: var(--radius-sm); font-weight: 600; }
.search-card__btn { display: block; text-align: center; padding: 10px; background: var(--navy); color: var(--white); border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 700; transition: background var(--transition-fast); }
.search-card__btn:hover { background: var(--blue); }
.search-empty { text-align: center; padding: 64px 24px; grid-column: 1 / -1; }
.search-empty__icon { font-size: 48px; margin-bottom: 16px; }
.search-empty__text { font-size: 18px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.search-empty__sub { font-size: 14px; color: var(--text-light); }
.search-pagination { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 40px; }
.search-pagination__btn { padding: 10px 24px; border: 1.5px solid var(--border); border-radius: 8px; background: var(--white); color: var(--navy); font-size: 14px; font-weight: 600; text-decoration: none; transition: all var(--transition-fast); }
.search-pagination__btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.search-pagination__btn--disabled { opacity: 0.4; pointer-events: none; }
.search-pagination__info { font-size: 14px; color: var(--text-light); font-weight: 600; }

/* ── 11. Forms ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #d1d9e6; border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--navy); background: var(--bg-alt); transition: border-color var(--transition-fast), box-shadow var(--transition-fast); box-sizing: border-box; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-message { padding: 12px 16px; border-radius: var(--radius-md); font-size: 0.9rem; margin-bottom: 20px; display: none; }
.form-message.success { display: block; background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-message.error { display: block; background: #fce4ec; color: #c62828; border: 1px solid #f8bbd0; }
.inquiry-form, .visit-form { max-width: 700px; margin: 0 auto; background: var(--white); padding: 40px; border-radius: 12px; box-shadow: 0 4px 24px rgba(10,37,64,0.08); border: 1px solid var(--border); }

/* ── 12. Badges ── */
.badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.badge--ready { background: #e8f5e9; color: #2e7d32; }
.badge--construction { background: #fff3e0; color: #e65100; }
.badge--upcoming { background: #e3f2fd; color: var(--blue); }
.badge-hero { display: inline-block; padding: 8px 20px; border-radius: 24px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 12px; }
.badge-hero--ready { background: var(--gold); color: var(--navy); }
.badge-hero--construction { background: rgba(255,255,255,0.2); color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.badge-hero--upcoming { background: rgba(201,168,76,0.3); color: var(--gold); border: 1px solid var(--gold); }

/* ── 13. Breadcrumbs ── */
.breadcrumb { background: #f5f7fa; padding: 14px 0; border-bottom: 1px solid #e8ecf1; }
.breadcrumb nav { max-width: var(--container-narrow); margin: 0 auto; padding: 0 20px; font-size: 0.9rem; }
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); margin: 0 8px; }
.breadcrumb .current { color: var(--navy); font-weight: 600; }
.plot-breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 16px; font-size: 14px; flex-wrap: wrap; }
.plot-breadcrumb__link { color: rgba(255,255,255,0.7); text-decoration: none; transition: color var(--transition-fast); }
.plot-breadcrumb__link:hover { color: var(--gold); }
.plot-breadcrumb__sep { color: rgba(255,255,255,0.4); }
.plot-breadcrumb__current { color: var(--gold); font-weight: 600; }

/* ── 14. Footer ── */
.pr-footer { background: var(--navy); color: rgba(255,255,255,0.8); font-family: var(--font-body); }
.pr-footer__container { max-width: var(--container-max); margin: 0 auto; padding: 0 1.5rem; }
.pr-footer__top { padding: 4rem 0 3rem; }
.pr-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2.5rem; }
.pr-footer__brand { display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.pr-footer__desc { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; color: rgba(255,255,255,0.6); }
.pr-footer__social { display: flex; gap: 0.75rem; }
.pr-footer__social-link { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); transition: background 0.25s ease, color 0.25s ease; }
.pr-footer__social-link:hover { background: var(--gold); color: var(--navy); }
.pr-footer__heading { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 1.25rem; position: relative; padding-bottom: 0.75rem; }
.pr-footer__heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.pr-footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pr-footer__list a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.2s ease, padding-left 0.2s ease; }
.pr-footer__list a:hover { color: var(--gold); padding-left: 4px; }
.pr-footer__contact { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.pr-footer__contact li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.pr-footer__contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.pr-footer__contact a { color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.pr-footer__contact a:hover { color: var(--gold); }
.pr-footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.25rem 0; }
.pr-footer__bottom .pr-footer__container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.pr-footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ── 15. Floating Action Buttons ── */
.pr-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900; display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
.pr-fab__btn { position: relative; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer; color: #fff; box-shadow: 0 4px 14px rgba(0,0,0,0.18); transition: transform 0.25s ease, box-shadow 0.25s ease; text-decoration: none; }
.pr-fab__btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.pr-fab__btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.pr-fab__btn--whatsapp { background: #25D366; animation: fabPulse 2s infinite; }
.pr-fab__btn--call { background: var(--blue); }
.pr-fab__btn--visit { background: var(--gold); color: var(--navy); }
.pr-fab__tooltip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%) translateX(6px); background: var(--navy); color: #fff; font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; padding: 0.35rem 0.75rem; border-radius: var(--radius-sm); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; }
.pr-fab__tooltip::after { content: ''; position: absolute; top: 50%; right: -5px; transform: translateY(-50%); border: 5px solid transparent; border-left-color: var(--navy); }
.pr-fab__btn:hover .pr-fab__tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ── 16. Modals ── */
.pr-modal-overlay { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(10,37,64,0.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1rem; }
.pr-modal { background: #fff; border-radius: var(--radius-xl); width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; padding: 2rem; position: relative; box-shadow: 0 20px 60px rgba(10,37,64,0.25); }
.pr-modal__close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; cursor: pointer; color: var(--text-muted); padding: 0.25rem; border-radius: var(--radius-sm); transition: background var(--transition-fast), color var(--transition-fast); }
.pr-modal__close:hover { background: #F0F3F7; color: var(--navy); }
.pr-modal__close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.pr-modal__header { margin-bottom: 1.5rem; }
.pr-modal__header h2 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.pr-modal__header p { font-size: 0.9rem; color: var(--text-muted); }
.pr-modal__form { display: flex; flex-direction: column; gap: 1rem; }
.pr-modal__field { display: flex; flex-direction: column; gap: 0.3rem; }
.pr-modal__field label { font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.pr-modal__field input, .pr-modal__field select, .pr-modal__field textarea { font-family: var(--font-body); font-size: 0.9rem; padding: 0.65rem 0.85rem; border: 1.5px solid #E2E6ED; border-radius: 8px; background: var(--bg-alt); color: var(--text-dark); transition: border-color var(--transition-fast), box-shadow var(--transition-fast); }
.pr-modal__field input:focus, .pr-modal__field select:focus, .pr-modal__field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.12); }
.pr-modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pr-modal__submit { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem 1.5rem; background: var(--gold); color: var(--navy); font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; border: none; border-radius: 8px; cursor: pointer; transition: background 0.25s ease, transform 0.2s ease; margin-top: 0.5rem; }
.pr-modal__submit:hover { background: var(--gold-dark); transform: translateY(-1px); }
.pr-modal__submit:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }


/* ── 17. FAQ Accordion ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; background: var(--white); transition: box-shadow var(--transition-fast); }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 1.5rem; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); font-size: 1rem; font-weight: 600; color: var(--navy); transition: background var(--transition-fast); }
.faq-item__question:hover { background: var(--light-bg); }
.faq-item__icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--blue); transition: transform var(--transition-fast); }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(180deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 1.5rem; }
.faq-item__answer--open { max-height: 500px; padding: 0 1.5rem 1.2rem; }
.faq-item__answer p { font-size: 0.95rem; line-height: 1.7; color: var(--text-body); }

/* ── 18. CTA Section ── */
.cta { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 80px 20px; text-align: center; color: var(--white); }
.cta__title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--white); margin-bottom: 0.75rem; }
.cta__subtitle { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 550px; margin: 0 auto 2rem; }
.cta__btn { display: inline-block; padding: 14px 36px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 1rem; border-radius: 8px; text-decoration: none; transition: all var(--transition-fast); }
.cta__btn:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 60px 20px; text-align: center; color: var(--white); }
.cta-section h2 { font-size: 2rem; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.cta-section p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 28px; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ── 19. Blog ── */
.blog-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); padding: 72px 0 64px; text-align: center; }
.blog-hero__title { font-size: 42px; font-weight: 800; color: var(--white); margin: 0 0 12px; }
.blog-hero__subtitle { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; line-height: 1.6; }
.blog-featured { padding: 48px 0 0; }
.blog-featured__card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-xl); overflow: hidden; background: var(--white); border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(10,37,64,0.06); transition: box-shadow var(--transition-base); }
.blog-featured__image { aspect-ratio: 16/10; background: #e2e8f0; overflow: hidden; }
.blog-featured__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-featured__card:hover .blog-featured__image img { transform: scale(1.04); }
.blog-featured__body { padding: 40px 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured__badge { display: inline-block; background: var(--gold); color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 5px 12px; border-radius: var(--radius-sm); margin-bottom: 16px; width: fit-content; }
.blog-featured__title { font-size: 26px; font-weight: 800; color: var(--navy); margin: 0 0 14px; line-height: 1.25; }
.blog-featured__excerpt { font-size: 15px; color: #475569; line-height: 1.7; margin-bottom: 20px; }
.blog-featured__meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: var(--text-faint); margin-bottom: 20px; }
.blog-featured__meta-author { font-weight: 600; color: var(--text-light); }
.blog-featured__link { display: inline-block; padding: 11px 28px; background: var(--navy); color: var(--white); border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 700; transition: background var(--transition-fast); width: fit-content; }
.blog-featured__link:hover { background: var(--blue); }
.blog-grid-section { padding: 48px 0 64px; }
.blog-grid-section__heading { font-size: 24px; font-weight: 700; color: var(--navy); margin: 0 0 28px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.blog-card:hover { box-shadow: 0 8px 28px rgba(10,37,64,0.08); transform: translateY(-3px); }
.blog-card__image { width: 100%; aspect-ratio: 16/10; background: #e2e8f0; overflow: hidden; }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-base); }
.blog-card:hover .blog-card__image img { transform: scale(1.05); }
.blog-card__body { padding: 22px 22px 24px; }
.blog-card__title { font-size: 17px; font-weight: 700; color: var(--navy); margin: 0 0 10px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__excerpt { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__meta { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-faint); margin-bottom: 16px; }
.blog-card__author { font-weight: 600; color: var(--text-light); }
.blog-card__link { display: block; text-align: center; padding: 10px; background: #f1f5f9; color: var(--navy); border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 700; transition: all var(--transition-fast); }
.blog-card__link:hover { background: var(--blue); color: var(--white); }

.post-hero { width: 100%; aspect-ratio: 21/9; max-height: 480px; background: #e2e8f0; overflow: hidden; }
.post-hero__image { width: 100%; height: 100%; object-fit: cover; }
.post-article { max-width: 760px; margin: 0 auto; padding: 48px 20px 56px; }
.post-article__header { text-align: center; margin-bottom: 40px; }
.post-article__title { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; color: var(--navy); margin: 0 0 18px; line-height: 1.2; }
.post-article__meta { display: flex; justify-content: center; align-items: center; gap: 20px; font-size: 14px; color: var(--text-light); }
.post-article__meta-author { font-weight: 700; color: var(--navy); }
.post-article__meta-dot { width: 4px; height: 4px; border-radius: 50%; background: #cbd5e1; }
.post-article__divider { width: 60px; height: 3px; background: var(--gold); border: none; margin: 0 auto 40px; border-radius: 2px; }
.post-article__content { font-size: 17px; line-height: 1.85; color: #334155; }
.post-article__content h2 { font-size: 26px; font-weight: 700; color: var(--navy); margin: 40px 0 16px; }
.post-article__content h3 { font-size: 21px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.post-article__content p { margin-bottom: 20px; }
.post-article__content ul, .post-article__content ol { margin: 0 0 20px 24px; }
.post-article__content li { margin-bottom: 8px; }
.post-article__content blockquote { border-left: 4px solid var(--gold); padding: 16px 24px; margin: 28px 0; background: var(--light-bg); border-radius: 0 8px 8px 0; font-style: italic; color: #475569; }
.post-article__content img { max-width: 100%; border-radius: var(--radius-md); margin: 24px 0; }
.post-article__content a { color: var(--blue); text-decoration: underline; }
.post-share { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); text-align: center; }
.post-share__label { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.8px; }
.post-share__buttons { display: flex; justify-content: center; gap: 12px; }
.post-share__btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 8px; text-decoration: none; font-size: 14px; font-weight: 600; transition: opacity 0.2s ease, transform 0.2s ease; }
.post-share__btn:hover { opacity: 0.88; transform: translateY(-1px); }
.post-share__btn--whatsapp { background: #25D366; color: var(--white); }
.post-share__btn--twitter { background: var(--navy); color: var(--white); }
.post-share__btn--facebook { background: #1877F2; color: var(--white); }
.post-related { padding: 48px 0 64px; border-top: 1px solid var(--border); }
.post-related__heading { font-size: 26px; font-weight: 700; color: var(--navy); margin: 0 0 28px; text-align: center; }
.post-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.post-related-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.post-related-card:hover { box-shadow: 0 8px 28px rgba(10,37,64,0.08); transform: translateY(-3px); }
.post-related-card__image { width: 100%; aspect-ratio: 16/10; background: #e2e8f0; overflow: hidden; }
.post-related-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-base); }
.post-related-card:hover .post-related-card__image img { transform: scale(1.05); }
.post-related-card__body { padding: 20px; }
.post-related-card__title { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 8px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-related-card__date { font-size: 12px; color: var(--text-faint); margin-bottom: 14px; }
.post-related-card__link { display: block; text-align: center; padding: 9px; background: #f1f5f9; color: var(--navy); border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 700; transition: all var(--transition-fast); }
.post-related-card__link:hover { background: var(--blue); color: var(--white); }


/* ── 20. About Page ── */
.about-hero { background: linear-gradient(135deg, var(--navy) 0%, #0f3460 50%, var(--blue) 100%); padding: 80px 0 72px; text-align: center; position: relative; overflow: hidden; }
.about-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%); border-radius: 50%; }
.about-hero__title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--white); margin: 0 0 16px; position: relative; }
.about-hero__subtitle { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; line-height: 1.65; position: relative; }
.about-story { padding: 72px 0; }
.about-story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-story__label { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--blue); margin-bottom: 12px; }
.about-story__heading { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 800; color: var(--navy); margin: 0 0 20px; line-height: 1.2; }
.about-story__text { font-size: 16px; line-height: 1.8; color: #475569; margin-bottom: 16px; }
.about-story__image { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; color: var(--text-faint); font-size: 15px; }
.about-mv { padding: 64px 0; background: var(--light-bg); }
.about-mv__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-mv__card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px 36px; text-align: center; transition: box-shadow var(--transition-base); }
.about-mv__card:hover { box-shadow: 0 8px 32px rgba(10,37,64,0.07); }
.about-mv__icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--blue), var(--navy)); border-radius: var(--radius-xl); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; }
.about-mv__heading { font-size: 22px; font-weight: 700; color: var(--navy); margin: 0 0 12px; }
.about-mv__text { font-size: 15px; color: var(--text-light); line-height: 1.7; }
.about-stats { background: var(--navy); padding: 56px 0; }
.about-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.about-stats__number { font-size: 44px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.about-stats__label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }
.about-team { padding: 72px 0; }
.about-team__heading { font-size: 32px; font-weight: 800; color: var(--navy); text-align: center; margin: 0 0 12px; }
.about-team__subtitle { font-size: 16px; color: var(--text-light); text-align: center; margin-bottom: 40px; }
.about-team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-team-card { text-align: center; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 20px; background: var(--white); transition: box-shadow 0.25s ease, transform 0.25s ease; }
.about-team-card:hover { box-shadow: 0 8px 28px rgba(10,37,64,0.07); transform: translateY(-3px); }
.about-team-card__avatar { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--navy)); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--white); font-weight: 700; }
.about-team-card__name { font-size: 17px; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.about-team-card__role { font-size: 13px; color: var(--blue); font-weight: 600; }
.about-why { padding: 64px 0 72px; background: var(--light-bg); }
.about-why__heading { font-size: 32px; font-weight: 800; color: var(--navy); text-align: center; margin: 0 0 12px; }
.about-why__subtitle { font-size: 16px; color: var(--text-light); text-align: center; margin-bottom: 40px; }
.about-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-why__card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; transition: box-shadow 0.25s ease, border-color 0.25s ease; }
.about-why__card:hover { box-shadow: 0 8px 28px rgba(10,37,64,0.07); border-color: var(--gold); }
.about-why__icon { width: 52px; height: 52px; background: linear-gradient(135deg, rgba(21,101,192,0.1), rgba(10,37,64,0.08)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.about-why__title { font-size: 17px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.about-why__text { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.about-cta { padding: 72px 0; text-align: center; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); position: relative; overflow: hidden; }
.about-cta::before { content: ''; position: absolute; bottom: -40%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%); border-radius: 50%; }
.about-cta__heading { font-size: 34px; font-weight: 800; color: var(--white); margin: 0 0 14px; position: relative; }
.about-cta__text { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.6; position: relative; }
.about-cta__buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.about-cta__btn { padding: 14px 36px; border-radius: 8px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all var(--transition-fast); display: inline-block; }
.about-cta__btn--gold { background: var(--gold); color: var(--white); }
.about-cta__btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); }
.about-cta__btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.about-cta__btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ── Contact Page ── */
.contact-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); color: var(--white); padding: 80px 0 60px; text-align: center; }
.contact-hero h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.contact-hero p { font-size: 1.1rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }
.contact-section { padding: 70px 0; background: var(--surface); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; }
.contact-info-card, .contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: 0 2px 20px rgba(10,37,64,0.07); border: 1px solid rgba(10,37,64,0.06); }
.contact-info-card h2, .contact-form-card h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 28px; font-weight: 700; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, var(--navy), var(--blue)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); font-size: 1.2rem; }
.contact-info-text h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--blue); margin-bottom: 4px; font-weight: 600; }
.contact-info-text p { color: var(--navy); font-size: 1rem; line-height: 1.5; margin: 0; }
.map-placeholder { width: 100%; height: 350px; background: #e8ecf1; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1.1rem; border: 2px dashed #d1d9e6; overflow: hidden; }
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }

/* ── Connectivity & Amenities ── */
.overview-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.overview-text { font-size: 1.05rem; line-height: 1.8; color: #3a4a5c; }
.overview-text p { margin-bottom: 1rem; }
.project-info-sidebar { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 28px; box-shadow: 0 2px 12px rgba(10,37,64,0.06); }
.project-info-sidebar__item { padding: 14px 0; border-bottom: 1px solid #f0f3f7; }
.project-info-sidebar__item:last-child { border-bottom: none; }
.project-info-sidebar__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; }
.project-info-sidebar__value { font-size: 1rem; font-weight: 600; color: var(--navy); }
.connectivity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.connectivity-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px 20px; text-align: center; transition: box-shadow var(--transition-fast); }
.connectivity-item:hover { box-shadow: 0 4px 16px rgba(10,37,64,0.08); }
.connectivity-item__icon { width: 48px; height: 48px; margin: 0 auto 12px; background: #e3f2fd; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.connectivity-item__label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.connectivity-item__value { font-size: 1rem; font-weight: 700; color: var(--navy); }
.amenity-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.amenity-item { display: flex; align-items: center; gap: 12px; padding: 16px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; }
.amenity-item__icon { width: 40px; height: 40px; min-width: 40px; background: #e3f2fd; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.amenity-item__name { font-size: 0.9rem; font-weight: 600; color: var(--navy); }
.amenity-item__distance { font-size: 0.8rem; color: var(--text-muted); }
.amenities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.amenity-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px 16px; text-align: center; transition: box-shadow var(--transition-fast), transform var(--transition-fast); }
.amenity-card:hover { box-shadow: 0 4px 16px rgba(10,37,64,0.08); transform: translateY(-2px); }
.amenity-card__icon { width: 52px; height: 52px; margin: 0 auto 12px; background: linear-gradient(135deg, #e3f2fd, #bbdefb); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.amenity-card__name { font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.rera-display { display: inline-flex; align-items: center; gap: 8px; background: #f5f7fa; padding: 8px 16px; border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--navy); font-weight: 500; border: 1px solid var(--border); }
.rera-display__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); font-weight: 700; }
.plots-table-wrapper { overflow-x: auto; border-radius: 12px; box-shadow: 0 2px 12px rgba(10,37,64,0.06); border: 1px solid var(--border); }
.plots-table { width: 100%; border-collapse: collapse; background: var(--white); }
.plots-table thead { background: var(--navy); color: var(--white); }
.plots-table th { padding: 14px 18px; text-align: left; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; }
.plots-table td { padding: 14px 18px; font-size: 0.9rem; color: #3a4a5c; border-bottom: 1px solid #f0f3f7; }
.plots-table tbody tr:hover { background: var(--light-bg); }
.plots-table .price-cell { font-weight: 700; color: var(--gold); font-size: 1rem; }

/* ── Plot Detail Page ── */
.plot-hero { position: relative; height: 520px; background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.plot-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,37,64,0.88) 0%, rgba(10,37,64,0.2) 60%, transparent 100%); }
.plot-hero__content { position: relative; z-index: 2; padding: 48px 0; width: 100%; }
.plot-hero__title { font-size: 40px; font-weight: 800; color: var(--white); margin: 0; line-height: 1.15; }
.plot-hero__locality { color: rgba(255,255,255,0.75); font-size: 16px; margin-top: 8px; }
.plot-main { display: grid; grid-template-columns: 1fr 400px; gap: 40px; padding: 48px 0; }
.plot-details__price-block { background: var(--light-bg); border: 1px solid var(--border); border-radius: 12px; padding: 28px 32px; margin-bottom: 32px; }
.plot-details__price { font-size: 38px; font-weight: 800; color: var(--gold); margin: 0; line-height: 1; }
.plot-details__price-sqft { font-size: 15px; color: var(--text-light); margin-top: 6px; }
.plot-details__status { display: inline-block; padding: 5px 14px; border-radius: 20px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 12px; }
.plot-details__status--available { background: #dcfce7; color: #166534; }
.plot-details__status--sold { background: #fee2e2; color: #991b1b; }
.plot-details__status--reserved { background: #fef3c7; color: #92400e; }
.plot-specs { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.plot-specs__item { padding: 18px 24px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; }
.plot-specs__item:nth-child(even) { border-right: none; }
.plot-specs__item:nth-last-child(-n+2) { border-bottom: none; }
.plot-specs__label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: #94a3b8; }
.plot-specs__value { font-size: 16px; font-weight: 700; color: var(--navy); }
.plot-description__heading { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.plot-description__text { font-size: 15px; line-height: 1.75; color: #475569; }
.plot-inquiry { position: sticky; top: 24px; align-self: start; }
.plot-inquiry__card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 32px; box-shadow: 0 4px 24px rgba(10,37,64,0.08); }
.plot-inquiry__title { font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.plot-inquiry__subtitle { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.plot-inquiry__field { margin-bottom: 16px; }
.plot-inquiry__label { display: block; font-size: 13px; font-weight: 600; color: #334155; margin-bottom: 6px; }
.plot-inquiry__input, .plot-inquiry__textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; color: var(--navy); background: var(--light-bg); transition: border-color var(--transition-fast), box-shadow var(--transition-fast); box-sizing: border-box; font-family: inherit; }
.plot-inquiry__input:focus, .plot-inquiry__textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); background: var(--white); }
.plot-inquiry__textarea { resize: vertical; min-height: 80px; }
.plot-inquiry__btn { width: 100%; padding: 13px; border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all var(--transition-fast); margin-bottom: 10px; font-family: inherit; display: block; text-align: center; text-decoration: none; }
.plot-inquiry__btn--primary { background: var(--blue); color: var(--white); }
.plot-inquiry__btn--primary:hover { background: var(--navy); }
.plot-inquiry__btn--gold { background: var(--gold); color: var(--white); }
.plot-inquiry__btn--gold:hover { background: var(--gold-dark); }
.plot-inquiry__btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.plot-inquiry__btn--outline:hover { background: var(--navy); color: var(--white); }
.plot-gallery { padding: 48px 0; border-top: 1px solid var(--border); }
.plot-gallery__heading { font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.plot-gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.plot-gallery__item { aspect-ratio: 4/3; background: #e2e8f0; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; transition: transform var(--transition-fast); }
.plot-gallery__item:hover { transform: scale(1.02); }
.plot-gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.plot-gallery__item--more::after { content: '+12 Photos'; position: absolute; inset: 0; background: rgba(10,37,64,0.65); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; border-radius: var(--radius-md); }
.plot-map { padding: 48px 0; border-top: 1px solid var(--border); }
.plot-map__heading { font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.plot-map__placeholder { width: 100%; height: 380px; background: #e2e8f0; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 16px; font-weight: 500; }
.plot-similar { padding: 48px 0 64px; border-top: 1px solid var(--border); }
.plot-similar__heading { font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.plot-similar__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }


/* ── 21. Admin Dashboard ── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 260px; background: var(--navy); color: var(--white); position: fixed; top: 0; left: 0; bottom: 0; z-index: 100; overflow-y: auto; transition: transform var(--transition-base); }
.admin-sidebar-brand { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.admin-sidebar-brand h2 { font-size: 1.15rem; font-weight: 700; color: var(--white); letter-spacing: -0.3px; }
.admin-sidebar-brand span { font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.admin-sidebar-nav { padding: 16px 12px; list-style: none; }
.admin-sidebar-nav li { margin-bottom: 2px; }
.admin-sidebar-nav a { display: flex; align-items: center; gap: 12px; padding: 11px 16px; color: rgba(255,255,255,0.65); text-decoration: none; border-radius: var(--radius-md); font-size: 0.9rem; font-weight: 500; transition: all var(--transition-fast); }
.admin-sidebar-nav a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.admin-sidebar-nav a.active { background: var(--blue); color: var(--white); font-weight: 600; }
.admin-sidebar-nav a svg { width: 20px; height: 20px; flex-shrink: 0; }
.admin-content { flex: 1; margin-left: 260px; padding: 0; }
.admin-topbar { background: var(--white); padding: 18px 32px; border-bottom: 1px solid #e5e8ed; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 50; }
.admin-topbar h1 { font-size: 1.4rem; font-weight: 700; color: var(--navy); }
.admin-topbar-actions { display: flex; align-items: center; gap: 12px; }
.admin-avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700; }
.admin-body { padding: 28px 32px; }
.stats-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 32px; }
.stat-card { background: var(--white); border-radius: var(--radius-lg); padding: 22px 20px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: transform var(--transition-fast), box-shadow var(--transition-fast); }
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(10,37,64,0.1); }
.stat-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 1.2rem; }
.stat-card-icon.blue { background: rgba(21,101,192,0.1); color: var(--blue); }
.stat-card-icon.navy { background: rgba(10,37,64,0.08); color: var(--navy); }
.stat-card-icon.gold { background: rgba(201,168,76,0.12); color: var(--gold); }
.stat-card-icon.green { background: rgba(46,125,50,0.1); color: #2e7d32; }
.stat-card-icon.orange { background: rgba(230,126,34,0.1); color: #e67e22; }
.stat-card-icon.purple { background: rgba(142,68,173,0.1); color: #8e44ad; }
.stat-card-value { font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.stat-card-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.3px; }
.admin-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); margin-bottom: 28px; }
.admin-card-header { padding: 20px 24px; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; }
.admin-card-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
.admin-card-body { padding: 0; }
.admin-card-body.padded { padding: 24px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table thead th { padding: 12px 16px; text-align: left; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); background: var(--surface); border-bottom: 1px solid var(--border-light); }
.admin-table tbody td { padding: 14px 16px; font-size: 0.9rem; color: var(--navy); border-bottom: 1px solid var(--border-lighter); }
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover { background: var(--surface); }
.lead-status { display: inline-block; padding: 4px 10px; border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600; text-transform: capitalize; }
.lead-status.new { background: #e3f2fd; color: var(--blue); }
.lead-status.contacted { background: #fff3e0; color: #e65100; }
.lead-status.qualified { background: #e8f5e9; color: #2e7d32; }
.lead-status.closed { background: #f3e5f5; color: #8e44ad; }
.quick-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.quick-action-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-md); font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all var(--transition-fast); border: none; cursor: pointer; }
.quick-action-btn.primary { background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); }
.quick-action-btn.primary:hover { box-shadow: 0 4px 16px rgba(21,101,192,0.3); transform: translateY(-1px); }
.quick-action-btn.secondary { background: var(--surface-alt); color: var(--navy); border: 1px solid #dce2ea; }
.quick-action-btn.secondary:hover { background: #e5e8ed; }
.quick-action-btn.gold { background: linear-gradient(135deg, var(--gold), #d4b95f); color: var(--navy); }
.quick-action-btn.gold:hover { box-shadow: 0 4px 16px rgba(201,168,76,0.3); transform: translateY(-1px); }

/* ── 22. SEO Score Gauge ── */
.seo-score-badge { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; font-size: 0.85rem; font-weight: 800; color: var(--white); }
.seo-score-badge.good { background: #2e7d32; }
.seo-score-badge.warning { background: #f9a825; color: var(--navy); }
.seo-score-badge.bad { background: #c62828; }
.seo-score-ring { position: relative; width: 48px; height: 48px; }
.seo-score-ring svg { transform: rotate(-90deg); }
.seo-score-ring .ring-bg { fill: none; stroke: var(--border-light); stroke-width: 4; }
.seo-score-ring .ring-fill { fill: none; stroke-width: 4; stroke-linecap: round; transition: stroke-dashoffset 0.3s; }
.seo-score-ring .ring-fill.good { stroke: #2e7d32; }
.seo-score-ring .ring-fill.warning { stroke: #f9a825; }
.seo-score-ring .ring-fill.bad { stroke: #c62828; }
.seo-score-ring .score-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0.75rem; font-weight: 800; color: var(--navy); }
.page-path { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.85rem; background: var(--surface-alt); padding: 4px 10px; border-radius: var(--radius-sm); color: var(--blue); }
.focus-keyword { display: inline-block; padding: 3px 10px; background: rgba(201,168,76,0.12); color: #9a7d2e; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 600; }
.btn-edit { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; background: var(--blue); color: var(--white); text-decoration: none; border-radius: 8px; font-size: 0.82rem; font-weight: 600; transition: all var(--transition-fast); }
.btn-edit:hover { background: var(--navy); transform: translateY(-1px); }
.seo-edit-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.char-counter { text-align: right; font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.char-counter.over { color: #c62828; font-weight: 600; }
.score-gauge-container { text-align: center; padding: 24px 0 16px; }
.score-gauge { position: relative; width: 160px; height: 160px; margin: 0 auto 16px; }
.score-gauge svg { transform: rotate(-90deg); }
.score-gauge .gauge-bg { fill: none; stroke: var(--border-light); stroke-width: 10; }
.score-gauge .gauge-fill { fill: none; stroke-width: 10; stroke-linecap: round; transition: stroke-dashoffset 0.5s ease, stroke 0.3s; }
.score-gauge .gauge-text { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
.score-gauge .gauge-number { font-size: 2.4rem; font-weight: 800; line-height: 1; display: block; }
.score-gauge .gauge-label { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.score-checklist { list-style: none; text-align: left; padding: 0 8px; }
.score-checklist li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid var(--border-lighter); }
.score-checklist li:last-child { border-bottom: none; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.7rem; font-weight: 700; }
.check-icon.pass { background: #e8f5e9; color: #2e7d32; }
.check-icon.warn { background: #fff8e1; color: #f9a825; }
.check-icon.fail { background: #fce4ec; color: #c62828; }
.btn-save { width: 100%; padding: 14px 28px; background: linear-gradient(135deg, var(--navy), var(--blue)); color: var(--white); border: none; border-radius: var(--radius-md); font-size: 1rem; font-weight: 600; cursor: pointer; transition: transform var(--transition-fast), box-shadow var(--transition-fast); margin-top: 8px; }
.btn-save:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(21,101,192,0.3); }
.btn-save:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.save-message { padding: 10px 14px; border-radius: 8px; font-size: 0.85rem; margin-bottom: 16px; display: none; }
.save-message.success { display: block; background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.save-message.error { display: block; background: #fce4ec; color: #c62828; border: 1px solid #f8bbd0; }

/* ── 23. Animation Keyframes ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes fabPulse {
  0% { box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.12); }
  100% { box-shadow: 0 4px 14px rgba(37,211,102,0.4); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.animate-fadeIn { animation: fadeIn 0.5s ease forwards; }
.animate-slideUp { animation: slideUp 0.5s ease forwards; }
.animate-slideDown { animation: slideDown 0.5s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.4s ease forwards; }

/* ── 24. Responsive Breakpoints ── */
@media (max-width: 992px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--5 { grid-template-columns: repeat(3, 1fr); }
  .grid--6 { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .investment-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .connectivity-grid { grid-template-columns: repeat(2, 1fr); }
  .amenity-list { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .overview-wrapper { grid-template-columns: 1fr; }
  .about-story__grid { grid-template-columns: 1fr; gap: 32px; }
  .about-mv__grid { grid-template-columns: 1fr; }
  .about-team__grid { grid-template-columns: repeat(2, 1fr); }
  .about-why__grid { grid-template-columns: 1fr; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-featured__card { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .post-related__grid { grid-template-columns: 1fr; }
  .search-layout { grid-template-columns: 1fr; }
  .search-filters { position: static; }
  .search-results__grid { grid-template-columns: repeat(2, 1fr); }
  .plot-main { grid-template-columns: 1fr; }
  .plot-inquiry { position: static; }
  .plot-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .plot-similar__grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .seo-edit-grid { grid-template-columns: 1fr; }
  .pr-nav__links { display: none; }
  .pr-nav__hamburger { display: flex; }
}

@media (max-width: 768px) {
  .hero { min-height: 80vh; padding: 100px 1rem 40px; }
  .hero__search { flex-direction: column; padding: 12px; }
  .hero__search-field { padding: 0.4rem 0.5rem; }
  .hero__stats { flex-wrap: wrap; gap: 1rem; padding: 1rem 1.5rem; }
  .hero__stat-divider { display: none; }
  .section { padding: 60px 0; }
  .page-hero { height: 280px; }
  .page-hero__title { font-size: 2rem; }
  .cities-grid { grid-template-columns: 1fr; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .investment-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .connectivity-grid { grid-template-columns: 1fr; }
  .amenity-list { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .plots-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .search-results__grid { grid-template-columns: 1fr; }
  .plot-hero { height: 380px; }
  .plot-hero__title { font-size: 28px; }
  .plot-specs { grid-template-columns: 1fr; }
  .plot-specs__item { border-right: none !important; }
  .plot-specs__item:last-child { border-bottom: none; }
  .plot-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-content { margin-left: 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .admin-body { padding: 20px 16px; }
  .about-team__grid { grid-template-columns: 1fr; }
  .contact-hero h1 { font-size: 2rem; }
  .inquiry-form, .visit-form { padding: 24px; }
  .plots-table th, .plots-table td { padding: 10px 12px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.8rem; }
  .hero__subtitle { font-size: 0.95rem; }
  .hero__stat-number { font-size: 1.4rem; }
  .section__title { font-size: 1.5rem; }
  .pr-fab { bottom: 1rem; right: 1rem; gap: 0.6rem; }
  .pr-fab__btn { width: 50px; height: 50px; }
  .pr-fab__btn svg { width: 22px; height: 22px; }
  .pr-modal { padding: 1.5rem; }
  .pr-modal__row { grid-template-columns: 1fr; }
  .pr-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .pr-footer__top { padding: 3rem 0 2rem; }
  .pr-footer__bottom .pr-footer__container { flex-direction: column; text-align: center; }
  .about-stats__grid { grid-template-columns: 1fr; }
  .about-stats__number { font-size: 32px; }
  .stats-row { grid-template-columns: 1fr; }
  .post-share__buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 900px) {
  .pr-nav__links { display: none; }
  .pr-nav__hamburger { display: flex; }
  .pr-footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ── 25. Print Styles ── */
@media print {
  .pr-nav, .pr-fab, .pr-modal-overlay, .pr-footer,
  .hero__search, .carousel__nav, .btn, .search-filters,
  .post-share, .about-cta, .cta, .cta-section { display: none !important; }

  body { font-size: 12pt; color: #000; background: #fff; }
  .container { max-width: 100%; padding: 0; }
  .hero { min-height: auto; padding: 20px 0; background: none; color: #000; }
  .hero__overlay { display: none; }
  .hero__title, .page-hero__title { color: #000; font-size: 24pt; }
  .hero__subtitle, .page-hero__tagline { color: #333; }
  .section { padding: 20px 0; }
  .card, .pr-card, .city-card, .plot-card, .blog-card { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
  a { color: #000; text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  .pr-nav__logo, .pr-footer__brand { color: #000; }
  img { max-width: 100% !important; }
}

/* ── 26. Accessibility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-color-scheme: dark) {
  /* Respect system dark mode only if explicitly needed */
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: var(--gold);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  clip: auto;
  width: auto;
  height: auto;
}
