/* ============================================================
   JALARAM ESTATE CONSULTANCY — Global Stylesheet
   dombivaliresaleproperties.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A0;
  --gold-dark: #8B6914;
  --black: #0E0E0E;
  --off-white: #F7F4EF;
  --warm-gray: #E8E4DC;
  --mid-gray: #9A9590;
  --dark-gray: #2C2B28;
  --text: #1A1916;
  --nav-h: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(14,14,14,0.96);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 36px; width: auto;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400;
  color: #fff; line-height: 1.2;
  letter-spacing: 0.02em;
}
.nav-logo-text span { color: var(--gold); display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; font-weight: 300; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.7); text-decoration: none;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-cta {
  display: flex; align-items: center; gap: 12px;
}

.btn-chat {
  display: flex; align-items: center; gap: 8px;
  background: #25D366;
  color: #fff !important;
  padding: 9px 18px; border-radius: 2px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: opacity 0.2s;
}
.btn-chat:hover { opacity: 0.9; }
.btn-chat svg { width: 14px; height: 14px; fill: #fff; }

.btn-enquire {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 9px 20px; border-radius: 2px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}
.btn-enquire:hover { background: var(--gold); color: #000 !important; }

/* hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 24px; height: 1px; background: #fff; display: block; transition: all 0.3s; }

/* ── SECTION UTILS ── */
.section { padding: 96px 60px; }
.section-sm { padding: 64px 60px; }

.label {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); font-weight: 400; margin-bottom: 16px;
}
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
h2.display { font-size: clamp(36px, 5vw, 64px); line-height: 1.15; margin-bottom: 24px; }
h2.display em { color: var(--gold); font-style: italic; }
.body-text { font-size: 15px; color: #5A5754; line-height: 1.8; max-width: 600px; }

.divider { height: 1px; background: var(--warm-gray); margin: 0 60px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--black);
  padding: 14px 28px; border-radius: 2px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; font-weight: 600;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-dark); color: #fff; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 13px 28px; border-radius: 2px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  text-decoration: none; font-weight: 500;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: #000; }

/* ── CARDS ── */
.property-card {
  background: #fff;
  border: 1px solid var(--warm-gray);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.property-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); transform: translateY(-4px); }

.property-card img {
  width: 100%; height: 220px; object-fit: cover; display: block;
}
.property-card-body { padding: 24px; }
.property-card-tag {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 8px;
}
.property-card h3 {
  font-size: 20px; font-weight: 400; margin-bottom: 10px; line-height: 1.3;
}
.property-card p { font-size: 13px; color: #6A6764; line-height: 1.7; margin-bottom: 16px; }
.property-card-price { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--gold); }
.property-card-price span { font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--mid-gray); letter-spacing: 0.1em; text-transform: uppercase; margin-left: 4px; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--black);
  display: flex; justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}
.stat-item {
  flex: 1; min-width: 150px;
  padding: 36px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; color: var(--gold); font-weight: 300; line-height: 1; }
.stat-lbl { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--mid-gray); margin-top: 6px; }

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--black);
  padding: 36px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: rgba(201,168,76,0.1);
  position: absolute;
  top: -10px; left: 24px;
  line-height: 1;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.7; margin-bottom: 20px;
  position: relative; z-index: 1;
}
.testimonial-author { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 64px 60px 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: #fff; font-weight: 300;
  margin-bottom: 16px; line-height: 1.3;
}
.footer-brand-name em { color: var(--gold); font-style: italic; }
.footer-tagline {
  font-size: 12px; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid-gray); text-decoration: none;
  font-size: 11px;
  transition: all 0.2s;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 400; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-rera { font-size: 10px; letter-spacing: 0.1em; color: rgba(201,168,76,0.5); text-transform: uppercase; }

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 8px; font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  background: var(--off-white); border: 1px solid var(--warm-gray);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 300;
  color: var(--text); outline: none;
  transition: border-color 0.2s;
  border-radius: 2px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── ENQUIRY MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(14,14,14,0.9);
  z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--off-white);
  max-width: 480px; width: 100%;
  padding: 48px;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  font-size: 22px; cursor: pointer; color: var(--mid-gray);
  background: none; border: none; line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; margin-bottom: 8px; }
.modal p { font-size: 13px; color: var(--mid-gray); margin-bottom: 28px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.25s; }
.fade-up-3 { animation-delay: 0.4s; }
.fade-up-4 { animation-delay: 0.55s; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  background: #25D366; color: #fff;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta .btn-enquire { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(14,14,14,0.98);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open a { font-size: 14px; }

  .section { padding: 64px 24px; }
  .section-sm { padding: 48px 24px; }
  .divider { margin: 0 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 24px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child { border-bottom: none; }
}
