/* ============================================
   ED InfraTech – Real Estate Agency CSS
   ============================================ */

:root {
  --bg: #f6f6f4;
  --bg-dark: #14140f;
  --text: #21201b;
  --text-muted: rgba(33,32,27,0.6);
  --accent: #21201b;
  --border: rgba(20,20,20,0.15);
  --white: #ffffff;
  --green: #1a6b3a;
  --radius: 16px;
  --radius-sm: 8px;
  --font-display: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Fragment Mono', monospace;
  --nav-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  cursor: pointer; border: 1.5px solid transparent;
  transition: all var(--transition); white-space: nowrap;
}
.btn-dark { background: var(--text); color: var(--white); border-color: var(--text); }
.btn-dark:hover { background: #3a3930; border-color: #3a3930; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--text); }
.btn-light { background: var(--white); color: var(--text); border-color: var(--white); width: 100%; justify-content: center; font-size: 15px; padding: 16px; }
.btn-light:hover { background: var(--bg); }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ---- SECTION TAGS ---- */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px;
}
.section-tag.light { color: rgba(255,255,255,0.6); }
.tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text); flex-shrink: 0; }
.tag-dot.light { background: #fff; }
.tag-dot-light { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); flex-shrink: 0; display: inline-block; }

/* ---- SECTION TITLE ---- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.1;
  color: var(--text); margin-bottom: 40px;
}
.section-title em { font-style: italic; }
.section-title.light { color: var(--white); }
.section-title.light em { color: rgba(255,255,255,0.55); }
.light-title { color: var(--white); }
.light-title em { color: rgba(255,255,255,0.55); font-style: italic; }

.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 48px; gap: 24px;
}
.section-header .section-title { margin-bottom: 0; }

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(246,246,244,0.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.navbar.scrolled { background: rgba(246,246,244,0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; object-fit: contain; }
.logo-fallback {
  display: none; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 15px; font-weight: 400; letter-spacing: -0.02em;
}
.logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text); }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a {
  padding: 8px 14px; font-size: 13px; color: var(--text-muted);
  border-radius: 100px; transition: all var(--transition);
}
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.05); }
.nav-cta { margin-left: auto; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all var(--transition); transform-origin: center; }
.hamburger.open span:first-child { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:last-child { transform: rotate(-45deg) translate(4px, -4px); }

/* Footer logo */
.footer-logo-img { height: 48px; width: auto; margin-bottom: 12px; }
.footer-logo-fallback { display: none; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 15px; font-weight: 400; color: var(--white); margin-bottom: 12px; }

/* ============================================
   HERO
============================================ */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  max-width: 1200px; margin: 0 auto;
  padding-left: 32px; padding-right: 32px; padding-bottom: 80px;
}
.hero-inner { padding-top: 60px; }
.hero-badges-row {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s ease 0.1s forwards;
}
.hero-badge {
  padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  border: 1.5px solid;
}
.hero-badge.rera { background: rgba(26,107,58,0.08); border-color: rgba(26,107,58,0.25); color: var(--green); }
.hero-badge.loan { background: rgba(33,32,27,0.06); border-color: var(--border); color: var(--text); }
.hero-badge.legal { background: rgba(33,32,27,0.06); border-color: var(--border); color: var(--text); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 400; line-height: 1.0; letter-spacing: -0.02em;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-title em { font-style: italic; }
.hero-sub {
  font-size: 15px; line-height: 1.7; color: var(--text-muted);
  max-width: 460px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  opacity: 0; animation: fadeUp 0.8s ease 0.5s forwards;
}
.stat { text-align: left; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 400; line-height: 1; }
.stat-plus { font-family: var(--font-display); font-size: 1.5rem; }
.stat-label { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-img-wrap { position: relative; opacity: 0; animation: fadeIn 1s ease 0.3s forwards; }
.hero-img-card { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/5; }
.hero-img-card img { height: 100%; }
.hero-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(246,246,244,0.92); backdrop-filter: blur(10px);
  border-radius: var(--radius-sm); padding: 12px 20px;
  display: flex; flex-direction: column; gap: 2px;
}
.badge-tag { font-size: 11px; font-weight: 600; color: var(--green); text-transform: uppercase; letter-spacing: 0.06em; }
.badge-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; }
.hero-float-card {
  position: absolute; top: 32px; right: -28px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  animation: float 4s ease-in-out infinite;
}
.float-icon { font-size: 1.8rem; }
.float-name { font-size: 13px; font-weight: 600; }
.float-role { font-size: 11px; color: var(--text-muted); }
.float-rating { font-size: 18px; margin-left: 8px; }

/* ============================================
   MARQUEE
============================================ */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; background: var(--bg-dark);
}
.marquee-track {
  display: flex; align-items: center; gap: 28px;
  animation: marquee 25s linear infinite;
  width: max-content; white-space: nowrap;
}
.marquee-track span { font-family: var(--font-mono); font-size: 13px; color: rgba(255,255,255,0.65); }
.marquee-track .dot { color: rgba(255,255,255,0.25); }

/* ============================================
   LISTINGS / PROJECTS
============================================ */
.listings { background: var(--bg); }
.filter-bar { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 9px 20px; border-radius: 100px;
  border: 1.5px solid var(--border); background: transparent;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  color: var(--text-muted); cursor: pointer; transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover { background: var(--text); color: var(--white); border-color: var(--text); }
.listings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prop-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition); cursor: pointer;
}
.prop-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.prop-card.hidden { display: none; }
.prop-img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.prop-img-wrap img { height: 100%; transition: transform 0.5s ease; }
.prop-card:hover .prop-img-wrap img { transform: scale(1.04); }
.prop-badge {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
}
.prop-badge.sale { background: var(--text); color: var(--white); }
.prop-badge.rent { background: #1a4a6b; color: var(--white); }
.prop-badge.land-badge { background: var(--green); color: var(--white); }
.prop-fav {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(246,246,244,0.9); border: none;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.prop-fav:hover { background: var(--white); transform: scale(1.1); }
.prop-fav.active { color: #e84040; }
.prop-body { padding: 20px; }
.prop-price { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 4px; }
.prop-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.prop-loc { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.prop-meta { display: flex; gap: 10px; padding-top: 14px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.prop-meta span { font-size: 11px; color: var(--text-muted); }

/* ============================================
   LOCATIONS
============================================ */
.locations { background: var(--white); border-top: 1px solid var(--border); }
.locations-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.loc-card {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 20px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
  transition: all var(--transition); cursor: pointer;
}
.loc-card:hover { background: var(--text); color: var(--white); border-color: var(--text); }
.loc-card.highlight-loc { background: var(--text); color: var(--white); border-color: var(--text); }
.loc-icon { font-size: 1rem; flex-shrink: 0; }

/* ============================================
   SERVICES (dark bg)
============================================ */
.services { background: var(--bg-dark); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px 24px; transition: all var(--transition);
}
.service-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.service-card.highlight { background: var(--white); border-color: var(--white); }
.service-card.highlight h3, .service-card.highlight p, .service-card.highlight .service-link { color: var(--text); }
.service-icon { font-size: 1.8rem; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.service-link { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.service-link:hover { color: var(--white); }

/* ============================================
   RERA SECTION
============================================ */
.rera-section { background: var(--bg); border-top: 1px solid var(--border); }
.rera-intro {
  max-width: 800px; margin-bottom: 48px;
}
.rera-intro p { font-size: 15px; line-height: 1.75; color: var(--text-muted); }
.rera-intro strong { color: var(--text); }
.rera-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rera-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all var(--transition);
}
.rera-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.06); }
.rera-card.highlight-rera { background: var(--text); border-color: var(--text); }
.rera-card.highlight-rera h4, .rera-card.highlight-rera p { color: var(--white); }
.rera-card.highlight-rera p { color: rgba(255,255,255,0.65); }
.rera-icon { font-size: 1.8rem; margin-bottom: 14px; }
.rera-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--text); margin-bottom: 10px; }
.rera-card p { font-size: 13px; line-height: 1.65; color: var(--text-muted); }

/* ============================================
   REAL ESTATE OVERVIEW
============================================ */
.realestate-overview { background: var(--white); border-top: 1px solid var(--border); }
.overview-intro {
  font-size: 15px; line-height: 1.7; color: var(--text-muted);
  max-width: 700px; margin-bottom: 48px;
}
.overview-intro strong { color: var(--text); }
.overview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.overview-card {
  padding: 28px 24px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all var(--transition);
}
.overview-card:hover { transform: translateY(-3px); border-color: rgba(20,20,20,0.3); }
.overview-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.1em; margin-bottom: 14px;
}
.overview-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; margin-bottom: 10px; }
.overview-card p { font-size: 13px; line-height: 1.6; color: var(--text-muted); }
.trends-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 24px; background: var(--bg-dark); border-radius: var(--radius);
}
.trend-item { display: flex; flex-direction: column; gap: 4px; }
.trend-icon { font-size: 1.4rem; margin-bottom: 4px; }
.trend-item strong { font-size: 13px; font-weight: 600; color: var(--white); }
.trend-item span { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ============================================
   ABOUT
============================================ */
.about { background: var(--bg); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-stack { position: relative; aspect-ratio: 3/4; }
.about-img-main { height: 100%; border-radius: var(--radius); }
.about-img-small { position: absolute; bottom: -24px; right: -24px; width: 45%; height: 45%; border-radius: var(--radius-sm); border: 4px solid var(--bg); object-fit: cover; }
.about-award { position: absolute; top: 24px; left: -24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 18px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.award-icon { font-size: 1.4rem; }
.about-desc { font-size: 14px; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; }
.about-desc strong { color: var(--text); }
.about-points { margin-bottom: 40px; display: flex; flex-direction: column; gap: 20px; }
.about-point { display: flex; gap: 16px; align-items: flex-start; }
.point-check { width: 28px; height: 28px; border-radius: 50%; background: var(--text); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.about-point strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.about-point p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials { background: var(--bg); border-top: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; transition: all var(--transition); }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.testi-card.testi-featured { background: var(--text); color: var(--white); border-color: var(--text); }
.testi-stars { font-size: 14px; color: #f4a400; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 24px; }
.testi-card.testi-featured p { color: rgba(255,255,255,0.7); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 13px; font-weight: 600; }
.testi-author span { font-size: 12px; color: var(--text-muted); }
.testi-card.testi-featured .testi-author span { color: rgba(255,255,255,0.5); }

/* ============================================
   FAQ
============================================ */
.faq { background: var(--bg); }
.faq-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.faq-left p { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin-bottom: 32px; }
.faq-right { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border); overflow: hidden; cursor: pointer; outline: none; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-size: 14px; font-weight: 500; gap: 16px; transition: color var(--transition); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--text-muted); flex-shrink: 0; transition: transform var(--transition); line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { font-size: 13px; line-height: 1.7; color: var(--text-muted); padding-bottom: 22px; }

/* ============================================
   CONTACT (dark)
============================================ */
.contact { background: var(--bg-dark); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contact-left p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.contact-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-info div { font-size: 14px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 10px; }
.contact-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.c-badge { padding: 6px 14px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.7); }
.contact-form-wrap { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 14px; color: var(--white); outline: none;
  transition: border-color var(--transition); resize: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: rgba(255,255,255,0.3); }
.contact-form select option { background: var(--bg-dark); color: var(--white); }
.form-success { display: none; color: #5ecb8a; font-size: 14px; text-align: center; padding: 12px; background: rgba(94,203,138,0.1); border-radius: var(--radius-sm); }
.form-success.show { display: block; }

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; padding-top: 60px; padding-bottom: 60px; align-items: start; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 300px; margin-bottom: 20px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span { padding: 5px 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; font-size: 11px; color: rgba(255,255,255,0.55); }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 32px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.28); max-width: 1200px; margin: 0 auto; }

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .trends-strip { grid-template-columns: repeat(2, 1fr); }
  .rera-grid { grid-template-columns: repeat(2, 1fr); }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--nav-h) + 40px); }
  .hero-img-wrap { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-stack { aspect-ratio: 16/9; max-height: 400px; }
  .contact-inner { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(246,246,244,0.98); padding: 20px;
    gap: 4px; border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
  }
  .nav-links.mobile-open li { width: 100%; }
  .nav-links.mobile-open a { display: block; padding: 12px 16px; font-size: 15px; color: var(--text); border-radius: var(--radius-sm); }
  .listings-grid, .testi-grid, .rera-grid, .overview-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .trends-strip { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .section-header { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  .about-img-small { display: none; }
  .about-award { left: 0; }
}