/* =========================================================
   QUICK REALTY & DEVELOPERS — style.css
   Design System: Luxury · Navy · Gold · Teal
   ========================================================= */

/* ── RESET & ROOT ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0B1D26;
  --gold:   #D4AF37;
  --gold-lt: #e8cc66;
  --teal:   #1F7A8C;
  --off-wh: #F5F5F5;
  --white:  #FFFFFF;
  --dark:   #071219;
  --mid:    #1a2e3a;
  --text:   #2d2d2d;
  --muted:  #6b7280;
  --border: rgba(212,175,55,0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius: 12px;
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --trans: 0.35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--off-wh);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-desc { color: var(--muted); max-width: 520px; font-size: .95rem; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-desc { margin: 0 auto; }

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: 6rem 5vw; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--trans);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-lt);
  box-shadow: 0 0 24px rgba(212,175,55,.45);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.55);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: .55rem 1.25rem; font-size: .8rem; }

/* ── NAVBAR ───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 0.8rem 5vw;
  display: flex;
  align-items: center;
  transition: background var(--trans), padding var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: var(--navy);
  padding: .85rem 5vw;
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
.nav-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  max-height: 70px;
  width: auto;
  transition: max-height var(--trans);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-quick {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
}
.logo-realty {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.navbar.scrolled .logo-img {
  max-height: 55px;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
  align-items: center;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-links a:hover, .nav-links a:focus { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: .55rem 1.4rem !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 3px;
  color: var(--gold) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%; height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7,18,25,.92) 0%,
    rgba(11,29,38,.78) 60%,
    rgba(31,122,140,.18) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  letter-spacing: .08em;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem; right: 5vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.45);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.3)} }

/* ── STATS STRIP ──────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 2.5rem 5vw;
}
.stat-item {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 1rem 2rem;
}
.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-item span {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .35rem;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(212,175,55,.2);
}

/* ── PROPERTIES ───────────────────────────────────────── */
.properties-section { background: var(--off-wh); }
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.prop-video-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
}
.prop-video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.prop-card:hover .prop-video { transform: scale(1.04); }
.prop-badge {
  position: absolute;
  top: .9rem; left: .9rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 3px;
  z-index: 2;
}
.prop-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,18,25,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  z-index: 1;
}
.prop-card:hover .prop-overlay { opacity: 1; }
.play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(212,175,55,.9);
  color: var(--navy);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--trans), background var(--trans);
  padding-left: 3px;
}
.play-btn:hover { background: var(--gold); transform: scale(1.12); }

.prop-body { padding: 1.4rem 1.5rem; }
.prop-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}
.prop-loc {
  font-size: .8rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: .8rem;
}
.prop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.prop-tags li {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--off-wh);
  color: var(--navy);
  padding: .28rem .7rem;
  border-radius: 3px;
  border: 1px solid rgba(11,29,38,.1);
}
.prop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .9rem;
  border-top: 1px solid var(--off-wh);
}
.prop-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}
.prop-cta {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .4rem .9rem;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  transition: background var(--trans), color var(--trans);
}
.prop-cta:hover { background: var(--gold); color: var(--navy); }

/* ── DETAILS SECTION ──────────────────────────────────── */
.details-section { background: var(--navy); }
.details-section .section-title { color: var(--white); }
.details-section .section-desc { color: rgba(255,255,255,.55); }
.details-inner { max-width: 1200px; margin: 0 auto; }

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.detail-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: background var(--trans), transform var(--trans);
}
.detail-card:hover {
  background: rgba(212,175,55,.06);
  transform: translateY(-3px);
}
.detail-icon {
  font-size: 1.6rem;
  margin-bottom: .9rem;
  color: var(--gold);
}
.detail-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}
.detail-card ul { padding-left: .1rem; }
.detail-card li {
  font-size: .875rem;
  color: rgba(255,255,255,.62);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.detail-card li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: .7rem;
}
.detail-card strong { color: var(--gold-lt); font-weight: 600; }

/* ── SERVICES ─────────────────────────────────────────── */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(11,29,38,.08);
  background: var(--white);
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  border-color: var(--gold);
}
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(31,122,140,.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  color: var(--teal);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .65rem;
}
.service-card p { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ── LOCATIONS ────────────────────────────────────────── */
.locations-section { background: var(--off-wh); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.loc-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  overflow: hidden;
  border-left: 3px solid transparent;
  box-shadow: 0 2px 18px rgba(0,0,0,.07);
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  animation-delay: var(--delay, 0s);
}
.loc-card:hover {
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.loc-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(11,29,38,.06);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.2rem;
}
.loc-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .55rem;
}
.loc-card p { font-size: .86rem; color: var(--muted); margin-bottom: 1rem; }
.loc-tag {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(31,122,140,.08);
  padding: .28rem .7rem;
  border-radius: 3px;
}

/* ── ABOUT ────────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-text p { color: var(--muted); margin-bottom: 1.2rem; }
.about-text strong { color: var(--navy); }
.about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 2.5rem;
  flex-wrap: wrap;
}
.a-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.a-stat span {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
  display: block;
}

.about-card-large {
  position: relative;
  background: var(--navy);
  border-radius: 16px;
  padding: 2.8rem;
  overflow: hidden;
}
.about-card-accent {
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(212,175,55,.08);
  pointer-events: none;
}
.about-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.profile-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.about-profile strong { display: block; font-size: .95rem; color: var(--white); }
.about-profile span { font-size: .78rem; color: rgba(255,255,255,.5); }
.about-card-large blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
  margin-bottom: 1.8rem;
}
.about-badge {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.25);
  padding: .55rem 1.1rem;
  border-radius: 4px;
  display: inline-block;
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials-section { background: var(--off-wh); overflow: hidden; }
.testimonials-slider {
  overflow: hidden;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.testi-track {
  display: flex;
  gap: 2rem;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.testi-card {
  min-width: 360px;
  max-width: 360px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: .1em; margin-bottom: .9rem; }
.testi-card > p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.testi-author { display: flex; align-items: center; gap: .85rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .88rem; color: var(--navy); }
.testi-author span { font-size: .78rem; color: var(--muted); }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 2rem;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(11,29,38,.2);
  transition: background var(--trans), transform var(--trans);
  cursor: pointer;
  border: none;
}
.testi-dot.active { background: var(--gold); transform: scale(1.4); }

/* ── CONTACT ──────────────────────────────────────────── */
.contact-section { background: var(--navy); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-section .section-title { color: var(--white); }
.contact-info > p { color: rgba(255,255,255,.62); margin-bottom: 2.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.4rem; }
.c-item { display: flex; gap: 1rem; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(212,175,55,.1);
  border: 1px solid rgba(212,175,55,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.c-icon svg { width: 20px; height: 20px; }
.c-item strong { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .2rem; }
.c-item span, .c-item a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color var(--trans); }
.c-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 2.8rem;
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.8rem;
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid rgba(11,29,38,.12);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--off-wh);
  transition: border-color var(--trans), box-shadow var(--trans);
  resize: vertical;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
  background: var(--white);
}
.form-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .9rem; }

/* ── FOOTER ───────────────────────────────────────────── */
.footer { background: var(--dark); padding: 5rem 5vw 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.45); margin: 1.2rem 0 1.8rem; line-height: 1.8; }
.social-icons { display: flex; gap: .8rem; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-links h5, .footer-contact h5 {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .75rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color var(--trans); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: .875rem; color: rgba(255,255,255,.5); margin-bottom: .6rem; }
.footer-contact a { color: rgba(255,255,255,.5); transition: color var(--trans); display: block; margin-bottom: .6rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact .btn-outline { margin-top: 1rem; font-size: .78rem; border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.6); }
.footer-contact .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.25); }

/* ── WHATSAPP FLOAT ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--trans), box-shadow var(--trans);
}
.whatsapp-float svg { width: 26px; height: 26px; }
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.65); }

/* ── SCROLL REVEAL ANIMATIONS ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2.5rem 2rem;
    gap: 1.5rem;
    transition: right var(--trans);
    box-shadow: -10px 0 40px rgba(0,0,0,.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: .95rem; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(2.4rem, 8vw, 3.5rem); }
  .hero-actions { flex-direction: column; gap: .8rem; }
  .hero-actions .btn { text-align: center; justify-content: center; }

  .stats-strip { gap: 0; }
  .stat-divider { display: none; }
  .stat-item { min-width: 50%; }

  .section { padding: 4rem 5vw; }
  .properties-grid { grid-template-columns: 1fr; }
  .testi-card { min-width: 85vw; max-width: 85vw; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
}
