/* ===========================================================
   Amreen Constructions Pvt Ltd
   Stylesheet — premium corporate, navy + gold
   =========================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
input, textarea { font: inherit; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  --navy: #0d1b2a;
  --navy-2: #14263b;
  --navy-deep: #091523;
  --gold: #d4a23a;
  --gold-2: #b88826;
  --ink: #1a2433;
  --muted: #5b6877;
  --line: #e7e9ee;
  --bg: #ffffff;
  --bg-soft: #f4f5f7;
  --bg-warm: #faf7f2;
  --shadow-sm: 0 4px 14px rgba(13, 27, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 18px 45px rgba(13, 27, 42, 0.14);
  --radius: 6px;
  --radius-lg: 10px;
  --container: 1200px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 90px 0; }
.section-title { font-family: 'Poppins', sans-serif; font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); margin-bottom: 50px; letter-spacing: -0.01em; }
.section-title.center { text-align: center; }

.eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn svg { transition: transform .3s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 22px rgba(212, 162, 58, .35);
}
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212, 162, 58, .4); }

.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--navy-deep); transform: translateY(-2px); }

/* =========================================================
   HEADER — white bg, navy text, gold accents
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(13,27,42,.07);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 72px;
  width: auto;
  max-width: 100%;
  display: block;
  flex-shrink: 0;
  transition: transform .3s ease;
}
.brand:hover .logo-img { transform: scale(1.04); }

/* Nav menu */
.primary-nav { display: flex; align-items: center; }
.nav-menu { display: flex; gap: 24px; align-items: center; }
.nav-link {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 6px 0;
  white-space: nowrap;
  transition: color .25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--gold-2); }
.nav-link.active::after, .nav-link:hover::after { transform: scaleX(1); }

.phone-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #fff;
  padding: 11px 20px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 4px 14px rgba(212,162,58,.25);
}
.phone-cta:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(212,162,58,.35);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Lock body scroll when mobile nav is open */
body.nav-open { overflow: hidden; }

/* Tighten at narrow desktops so single-line nav holds */
@media (max-width: 1180px) {
  .nav-menu { gap: 18px; }
  .nav-link { font-size: 0.72rem; letter-spacing: 0.08em; }
  .logo-img { height: 68px; }
}
@media (max-width: 1024px) {
  .nav-wrap { gap: 10px; }
  .nav-menu { gap: 14px; }
  .nav-link { font-size: 0.7rem; letter-spacing: 0.06em; }
  .phone-cta { padding: 10px 14px; font-size: 0.78rem; }
  .phone-cta span { display: none; }
  .logo-img { height: 64px; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  margin-top: 96px;
  overflow: hidden;
  background: var(--navy);
}
.hero-image {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=80');
  background-size: cover;
  background-position: center;
  filter: brightness(.78);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(13,27,42,.92) 0%, rgba(13,27,42,.55) 55%, rgba(13,27,42,.15) 100%),
    linear-gradient(180deg, rgba(13,27,42,.45) 0%, rgba(13,27,42,.2) 50%, rgba(13,27,42,.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: var(--container);
  width: 100%;
  color: #fff;
}
.hero .eyebrow { color: var(--gold); margin-bottom: 22px; }
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 26px;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero-sub {
  font-size: 1.05rem;
  max-width: 480px;
  color: #e3e8ef;
  margin-bottom: 38px;
}
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 2;
}
.hero-dots .dot {
  width: 28px; height: 4px;
  background: rgba(255,255,255,.35);
  border-radius: 2px;
  transition: background .3s ease;
}
.hero-dots .dot.active { background: var(--gold); }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.about-copy h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.about-copy p { color: var(--muted); margin-bottom: 16px; max-width: 520px; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.stat-row li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.stat-row li svg { margin-bottom: 6px; }
.stat-row li strong {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.stat-row li span { font-size: 0.85rem; color: var(--muted); }

.about-visual { position: relative; }
.about-img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  background-image: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?auto=format&fit=crop&w=1400&q=80');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -28px;
  right: -10px;
  background: var(--navy);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.about-badge svg { margin-bottom: 6px; }
.about-badge strong {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.about-badge span { font-size: 0.85rem; color: #cfd6df; line-height: 1.4; }

/* =========================================================
   EXPERTISE
   ========================================================= */
.expertise { background: var(--bg-soft); padding-top: 70px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}
.exp-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.exp-card:hover::before { transform: scaleX(1); }
.exp-icon { margin-bottom: 22px; }
.exp-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 14px;
}
.exp-card p { color: var(--muted); font-size: 0.94rem; }
.card-line {
  display: block;
  width: 36px; height: 2px;
  background: var(--gold);
  margin-top: 18px;
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section { background: var(--bg-soft); padding-top: 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.why-dark {
  background: var(--navy);
  color: #fff;
  padding: 50px 44px;
  position: relative;
}
.why-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(212,162,58,.07) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}
.why-dark > * { position: relative; z-index: 1; }
.why-dark h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.why-features li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: #d8dee6;
  line-height: 1.4;
}
.why-features li svg { transition: transform .3s ease; }
.why-features li:hover svg { transform: translateY(-3px); }

.why-light {
  background: var(--bg-warm);
  padding: 50px 44px;
  position: relative;
  overflow: hidden;
}
.why-block { margin-bottom: 30px; position: relative; z-index: 1; }
.why-block:last-of-type { margin-bottom: 0; }
.why-block h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy);
  margin-bottom: 12px;
}
.why-block .bar {
  display: inline-block;
  width: 26px; height: 3px;
  background: var(--gold);
}
.why-block p { color: var(--muted); max-width: 360px; font-size: 0.95rem; }
.blueprint {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 220px;
  opacity: .35;
  pointer-events: none;
}

/* =========================================================
   LEADERSHIP
   ========================================================= */
.leadership { background: var(--bg); padding-top: 70px; }
.lead-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.lead-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.lead-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,162,58,.4);
}
.lead-avatar {
  width: 64px; height: 64px;
  flex-shrink: 0;
  background: var(--navy);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.lead-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.lead-text p { color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; }
.lead-text .card-line { margin-top: 4px; }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background:
    linear-gradient(90deg, rgba(212,162,58,1) 0%, rgba(212,162,58,.92) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  padding: 30px 0;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.cta-icon {
  width: 52px; height: 52px;
  background: rgba(13,27,42,.16);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.cta-text { flex: 1; color: #fff; }
.cta-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cta-text p { font-size: 0.9rem; opacity: .92; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--bg); padding-top: 70px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.contact-list .icon {
  width: 36px; height: 36px;
  background: rgba(212,162,58,.12);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-list a:hover { color: var(--gold); }

/* form */
.contact-form {
  background: #fff;
  padding: 4px;
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.field { position: relative; }
.field input, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .25s ease, box-shadow .25s ease;
  resize: vertical;
}
.field textarea { min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #a3acb8; }
.field input:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,162,58,.15);
}
.form-submit {
  margin-top: 14px;
  width: auto;
  float: right;
}
.form-status {
  clear: both;
  margin-top: 14px;
  padding-top: 14px;
  font-size: 0.9rem;
  color: #2a8d4a;
  min-height: 1.4em;
  display: block;
}
.form-status.error { color: #c0392b; }
.form-status.success { color: #128C3F; font-weight: 500; }

/* map */
.contact-map {
  position: relative;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: saturate(0.95);
}
.map-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}
.map-overlay:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-1px);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--navy-deep);
  color: #cfd6df;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .brand-footer {
  display: inline-block;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-brand .logo-img-footer {
  height: 70px;
  width: auto;
  max-width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.footer-brand .brand-footer:hover .logo-img-footer {
  transform: scale(1.03);
}
.footer-brand p { font-size: 0.88rem; color: #9aa4b1; max-width: 280px; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-contact li { color: #9aa4b1; font-size: 0.9rem; transition: color .25s ease; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 0.82rem;
  color: #7d8895;
}
.dev-credit a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 500;
  transition: color .25s ease;
}
.dev-credit a:hover { color: #f0c269; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .3s ease;
  z-index: 90;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--gold); color: #fff; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-badge { right: 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: repeat(5, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-map { grid-column: 1 / -1; height: 240px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .lead-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-toggle { display: flex; flex-shrink: 0; margin-right: -8px; }
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    flex-direction: column;
    background: #ffffff;
    padding: 20px 24px;
    gap: 18px;
    transform: translateY(-150%);
    transition: transform .35s ease;
    border-top: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(13,27,42,.1);
    align-items: flex-start;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu .nav-link { font-size: 0.85rem; letter-spacing: 0.1em; padding: 8px 0; }
  .phone-cta { display: none; }
  .nav-wrap { gap: 8px; padding-top: 10px; padding-bottom: 10px; }
  .logo-img { height: 60px; }

  .hero { min-height: 80vh; margin-top: 80px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(13,27,42,.55) 0%, rgba(13,27,42,.85) 100%);
  }

  .stat-row { grid-template-columns: 1fr 1fr; gap: 18px; }
  .card-grid { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; }
  .why-features { grid-template-columns: 1fr 1fr; gap: 22px; }
  .why-dark, .why-light { padding: 36px 28px; }

  .cta-row { flex-direction: column; text-align: center; gap: 18px; }
  .cta-text { text-align: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { float: none; width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .about-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: -24px auto 0;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-content { padding: 60px 18px; }
  .logo-img { height: 52px; }
  .nav-wrap { padding-top: 8px; padding-bottom: 8px; }
  .btn { padding: 12px 20px; font-size: 0.78rem; }
}

/* ===========================================================
   BLOG — listing & individual post pages
   =========================================================== */

/* Page hero (shorter than homepage hero) */
.page-hero {
  position: relative;
  margin-top: 96px;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 90px 0 70px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212,162,58,.12), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,162,58,.08), transparent 50%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.page-hero p {
  max-width: 620px;
  color: #cfd6df;
  font-size: 1.05rem;
}

/* Breadcrumb */
.crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: #9aa4b1;
  margin-bottom: 26px;
}
.crumbs a { color: var(--gold); transition: color .25s ease; }
.crumbs a:hover { color: #f0c269; }
.crumbs .sep { opacity: .5; }

/* Blog grid (listing) */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,162,58,.4);
}
.blog-card .thumb {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-card .thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,27,42,.25));
}
.blog-card .body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 10px;
  line-height: 1.3;
  transition: color .25s ease;
}
.blog-card:hover h3 { color: var(--gold-2); }
.blog-card p { color: var(--muted); font-size: 0.92rem; flex: 1; margin-bottom: 18px; }
.blog-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color .25s ease, gap .25s ease;
}
.blog-card .read-more:hover { color: var(--gold); gap: 14px; }

/* Category badge & meta */
.cat-badge {
  display: inline-block;
  background: rgba(212,162,58,.14);
  color: var(--gold-2);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
}
.post-meta .dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); opacity: .5; }
.post-meta .author { color: var(--ink); font-weight: 600; }

/* Article (individual post) */
.article-hero {
  background: var(--navy);
  color: #fff;
  margin-top: 96px;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}
.article-hero .container { position: relative; z-index: 1; max-width: 820px; }
.article-hero .cat-badge {
  background: rgba(212,162,58,.2);
  color: var(--gold);
  margin-bottom: 22px;
}
.article-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.article-hero .post-meta { color: #b9c2cc; }
.article-hero .post-meta .author { color: #fff; }
.article-hero .post-meta .dot-sep { background: #b9c2cc; }

.article-image {
  width: 100%;
  max-width: 1000px;
  margin: -50px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.article-image img, .article-image .imgph {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 30px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}
.article-body > p:first-of-type::first-letter {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  float: left;
  line-height: 1;
  padding: 6px 12px 0 0;
  color: var(--gold);
}
.article-body p { margin-bottom: 20px; color: #2c3a4d; }
.article-body h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 10px;
}
.article-body ul, .article-body ol {
  margin: 0 0 22px 22px;
  padding-left: 4px;
}
.article-body ul li, .article-body ol li {
  list-style: disc;
  margin-bottom: 8px;
  color: #2c3a4d;
  padding-left: 4px;
}
.article-body ol li { list-style: decimal; }
.article-body ul li::marker { color: var(--gold); }
.article-body ol li::marker { color: var(--gold); font-weight: 700; }

.article-body blockquote {
  margin: 30px 0;
  padding: 22px 26px;
  background: var(--bg-warm);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

.article-body strong { color: var(--navy); font-weight: 700; }
.article-body a { color: var(--gold-2); border-bottom: 1px solid rgba(212,162,58,.3); transition: border-color .25s ease; }
.article-body a:hover { border-color: var(--gold); }

/* Tag row at end of article */
.article-tags {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.article-tags span:first-child {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.article-tags a {
  font-size: 0.8rem;
  padding: 6px 12px;
  background: var(--bg-soft);
  color: var(--ink);
  border-radius: 4px;
  transition: background .25s ease, color .25s ease;
}
.article-tags a:hover { background: var(--gold); color: #fff; }

/* Related posts */
.related {
  background: var(--bg-soft);
  padding: 70px 0 90px;
}
.related h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 30px;
  text-align: center;
}
.related .blog-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
}

/* Responsive blog */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .related .blog-grid { grid-template-columns: 1fr; }
  .article-hero { padding: 60px 0 50px; margin-top: 80px; }
  .article-image { margin-top: -36px; }
  .article-body { padding: 40px 20px 20px; font-size: 1rem; }
  .article-body > p:first-of-type::first-letter { font-size: 2.6rem; }
  .page-hero { padding: 70px 0 50px; margin-top: 80px; }
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.testimonials { background: var(--bg-soft); padding-top: 70px; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 10px;
}
.testimonial-card {
  position: relative;
  background: #fff;
  padding: 36px 32px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,162,58,.4);
}
.testimonial-card .quote-mark {
  position: absolute;
  top: 20px;
  right: 26px;
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  opacity: .18;
  pointer-events: none;
}
.testimonial-card .quote-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-card .quote-stars svg { color: var(--gold); }

.testimonial-card blockquote {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
  flex: 1;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.author-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 1024px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card:last-child { grid-column: 1 / -1; max-width: 540px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card:last-child { max-width: none; }
}

/* ===========================================================
   FLOATING CONTACT BUTTONS (WhatsApp + Phone)
   =========================================================== */
.floating-contact {
  position: fixed;
  left: 20px;
  bottom: 24px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: floatFadeIn .5s ease both;
}
.float-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}
.float-btn svg {
  width: 28px;
  height: 28px;
}

/* WhatsApp green with subtle pulse ring */
.float-btn.whatsapp {
  background: #25D366;
}
.float-btn.whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  z-index: -1;
  animation: pulseRing 2s ease-out infinite;
}

/* Phone in brand navy */
.float-btn.phone {
  background: var(--navy);
  color: var(--gold);
}
.float-btn.phone:hover {
  background: var(--gold);
  color: #fff;
}

/* Tooltip on hover (desktop only) */
.float-btn .tip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: var(--navy);
  color: #fff;
  padding: 7px 14px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.float-btn .tip::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: var(--navy);
  border-left: 0;
}
.float-btn:hover .tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes floatFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.float-btn.phone { animation-delay: 0.1s; }

/* Mobile sizing */
@media (max-width: 768px) {
  .floating-contact {
    left: 14px;
    bottom: 16px;
    gap: 10px;
  }
  .float-btn {
    width: 50px;
    height: 50px;
  }
  .float-btn svg {
    width: 24px;
    height: 24px;
  }
  .float-btn .tip { display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .float-btn,
  .float-btn.whatsapp::before {
    animation: none;
  }
}

/* ===========================================================
   CONTACT FORM — property type chips + WhatsApp submit
   =========================================================== */
.field-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.field-label .req {
  color: var(--gold);
  margin-left: 2px;
}

.property-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.prop-chip {
  position: relative;
  cursor: pointer;
  user-select: none;
}
.prop-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.prop-chip span {
  display: block;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  transition: all 0.2s ease;
}
.prop-chip:hover span {
  border-color: rgba(37, 211, 102, 0.5);
  background: rgba(37, 211, 102, 0.04);
}
.prop-chip input:checked + span {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.1);
  color: #128C3F;
  font-weight: 600;
}
.prop-chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.25);
}

/* WhatsApp submit button (replaces dark Send Message button) */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.32);
}
.btn-whatsapp:hover {
  background: #1FB855;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp svg {
  /* WhatsApp icon stays at intrinsic size */
  flex-shrink: 0;
}

/* Mobile chip layout */
@media (max-width: 480px) {
  .property-options { grid-template-columns: 1fr 1fr; gap: 8px; }
  .prop-chip span { padding: 11px 8px; font-size: 0.78rem; }
}

/* ---------- FAQ Section ---------- */
.section.faq { background: var(--bg-soft); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  margin: -28px auto 50px;
  line-height: 1.7;
}
.section-sub.center { text-align: center; }

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(212, 162, 58, 0.45);
  box-shadow: var(--shadow-md);
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  line-height: 1.4;
}

.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { display: none; }

.faq-item > summary > span:first-child { flex: 1; }

.faq-icon {
  flex-shrink: 0;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(212, 162, 58, 0.1);
  transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item[open] .faq-icon { transform: rotate(180deg); background: rgba(212, 162, 58, 0.2); }

.faq-answer {
  padding: 0 22px 22px 22px;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.75;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 10px 0 14px 0; padding-left: 0; }
.faq-answer ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.faq-answer ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.faq-answer a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.faq-answer a:hover { color: var(--navy); }

@media (max-width: 600px) {
  .faq-item > summary { padding: 16px 18px; font-size: 0.96rem; }
  .faq-answer { padding: 14px 18px 18px 18px; font-size: 0.93rem; }
}
