/* ============================
   DARY CARRERAS — WEBSITE CSS
   ============================ */

:root {
  --navy: #0D1B2A;
  --navy-mid: #1a2e42;
  --gold: #C49A3C;
  --gold-light: #d4aa52;
  --white: #FFFFFF;
  --off-white: #F8F6F1;
  --gray-light: #F2F0EB;
  --gray: #8A8A8A;
  --gray-dark: #4A4A4A;
  --text: #1A1A1A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --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; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Full-page fixed background — desktop */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=85&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================
   TYPOGRAPHY
   ============================ */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

.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.light { color: var(--white); }

.section-sub {
  font-size: 1.1rem;
  color: var(--gray-dark);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,154,60,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 2rem;
  transition: var(--transition);
}
.nav.scrolled {
  background: var(--navy);
  padding: 0.875rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(105deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.72) 45%, rgba(13,27,42,0.35) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,154,60,0.06) 0%, transparent 60%);
}
.hero-bg { display: none; }
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-contact a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
}
.hero-contact a:hover { color: var(--gold); }
.hero-lang {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,154,60,0.12);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(196,154,60,0.3);
}
.hero-photo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(196,154,60,0.25);
  border-radius: var(--radius);
  transform: rotate(2deg);
}
.hero-photo-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
/* AGENT CARD */
.agent-card {
  position: relative;
  background: linear-gradient(145deg, rgba(20,35,52,0.92) 0%, rgba(13,27,42,0.97) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(196,154,60,0.2);
  border-radius: 24px;
  padding: 2rem;
  max-width: 380px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}
.agent-card-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196,154,60,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.agent-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.agent-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}
.agent-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid rgba(196,154,60,0.5);
}
.agent-verified {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  border: 2px solid rgba(13,27,42,0.9);
}
.agent-header-info { flex: 1; min-width: 0; }
.agent-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.agent-designation {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0.2rem 0 0.15rem;
}
.agent-brokerage {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}
.agent-card-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.25), transparent);
  margin: 1.1rem 0;
}
.agent-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}
.agent-stat { flex: 1; }
.agent-stat-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
}
.agent-stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.agent-stat-lbl {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.agent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.agent-tags span {
  font-size: 0.63rem;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.02em;
}
.agent-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.agent-lang {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
}
.agent-lang svg { color: var(--gold); }
.agent-lic {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* CONTACT SPANISH NOTE */
.contact-spanish-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.75rem;
}
.contact-spanish-note svg { flex-shrink: 0; color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================
   STATS
   ============================ */
.stats {
  background: rgba(13,27,42,0.93);
  padding: 2.5rem 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0 3rem;
  flex: 1;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================
   ABOUT
   ============================ */
.about {
  padding: 6rem 2rem;
  background: rgba(255,255,255,0.91);
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  background: var(--gold);
  opacity: 0.08;
  border-radius: var(--radius);
}
.about-photo-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  z-index: 2;
  box-shadow: var(--shadow);
}
.about-badge span:first-child {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.about-badge span:last-child {
  font-size: 0.85rem;
  font-weight: 600;
}
.about-lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.about-content p {
  color: var(--gray-dark);
  margin-bottom: 1rem;
  line-height: 1.75;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}
.highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-dark);
}
.highlight-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* ============================
   SERVICES
   ============================ */
.services {
  padding: 6rem 2rem;
  background: rgba(248,246,241,0.90);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-featured {
  background: linear-gradient(135deg, #0D1B2A 0%, #1a2e42 100%);
  border: 1.5px solid rgba(196,154,60,0.45);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(196,154,60,0.1);
}
.service-card.service-card-featured h3 { color: #ffffff !important; font-size: 1.35rem; }
.service-card.service-card-featured p { color: rgba(255,255,255,0.92) !important; }
.service-card-featured .service-link { color: var(--gold); }
.service-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-link:hover { gap: 0.6rem; }

/* ============================
   NEIGHBORHOODS
   ============================ */
.neighborhoods {
  padding: 6rem 2rem;
  background: rgba(255,255,255,0.91);
}
.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.neighborhood-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.neighborhood-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.neighborhood-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.n1 { background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=800&q=80&fit=crop'); }
.n2 { background-image: url('https://images.unsplash.com/photo-1587525080471-8a99e92e9534?w=800&q=80&fit=crop'); }
.n3 { background-image: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?w=800&q=80&fit=crop'); }
.n4 { background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&q=80&fit=crop'); }
.n5 { background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=800&q=80&fit=crop'); }
.n6 { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=800&q=80&fit=crop'); }
.neighborhood-info {
  padding: 1.5rem;
  background: var(--white);
}
.neighborhood-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.neighborhood-info p {
  font-size: 0.85rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
.price-range {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(196,154,60,0.08);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
}

/* ============================
   WHY DARY
   ============================ */
.why {
  background: rgba(13,27,42,0.93);
  padding: 6rem 2rem;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.why-content {
  max-width: 720px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2.5rem;
}
.why-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(196,154,60,0.3);
  line-height: 1;
  min-width: 2.5rem;
}
.why-point h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.why-point p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ============================
   BLOG
   ============================ */
.blog {
  padding: 6rem 2rem;
  background: rgba(248,246,241,0.90);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,154,60,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.875rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.blog-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-link:hover { gap: 0.6rem; }

/* ============================
   CONTACT
   ============================ */
.contact {
  padding: 6rem 2rem;
  background: rgba(255,255,255,0.91);
}
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info p {
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--gray-dark);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-item:hover { color: var(--navy); }
.contact-icon {
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}
.contact-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-btn {
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* FORM */
.contact-form-wrap {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.optional { color: var(--gray); font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid #E0DDD5;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(196,154,60,0.15);
}
.form-group select {
  accent-color: var(--gold);
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: -0.5rem;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: rgba(13,27,42,0.96);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.footer-title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-license {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .neighborhoods-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-photo-wrap img { height: 400px; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-photo { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .neighborhoods-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-wrap: wrap; gap: 1rem; }
  .stat { padding: 0.5rem 1rem; flex: unset; min-width: 40%; }
  .stat-divider { display: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about, .services, .neighborhoods, .why, .blog, .contact { padding: 4rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
  .about-highlights { grid-template-columns: 1fr; }
}

/* ============================
   NEIGHBORHOOD OVERLAY
   ============================ */
.neighborhood-img {
  position: relative;
  overflow: hidden;
}
.neighborhood-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.neighborhood-card:hover .neighborhood-overlay { opacity: 1; }
.neighborhood-cta {
  background: var(--gold);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}
.neighborhood-card:hover .neighborhood-cta { transform: translateY(0); }

/* ============================
   SERVICE ICON SVG
   ============================ */
.service-icon svg { color: var(--gold); }
.service-card-featured .service-icon svg { color: var(--gold-light); }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
  padding: 6rem 2rem;
  background: rgba(13,27,42,0.93);
}
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials .section-title { color: var(--white); }
.testimonials-slider {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 100%;
  padding: 2.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.testimonial-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.75rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.testimonial-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.testimonial-btn:hover {
  border-color: var(--gold);
  background: rgba(196,154,60,0.15);
  color: var(--gold);
}
.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================
   FLOATING CALL BUTTON
   ============================ */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(196,154,60,0.45);
  transition: var(--transition);
}
.float-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196,154,60,0.55);
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.5rem; }
  .section-title { font-size: 1.75rem; }
  .stat-num { font-size: 1.75rem; }
}

/* Mobile background fix — iOS Safari doesn't support fixed pseudo-elements */
@media (max-width: 768px) {
  body::before {
    position: fixed;
    background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=800&q=80&fit=crop');
    background-attachment: scroll;
    will-change: transform;
  }
}
