/* ============================================================
   Pacific Coast Realty — Real Estate Demo Stylesheet
   OC Tech Co. Industry Demo | Standalone / Self-Contained
   ============================================================ */

/* ----------------------------------------------------------
   Google Fonts Import
   ---------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ----------------------------------------------------------
   CSS Custom Properties
   ---------------------------------------------------------- */
:root {
  --bg:            #ffffff;
  --bg-card:       #f8fafc;
  --bg-section:    #f1f5f9;
  --accent:        #2563eb;
  --accent-light:  #3b82f6;
  --accent-hover:  #1d4ed8;
  --accent-subtle: #eff6ff;
  --text:          #1e293b;
  --text-sec:      #475569;
  --text-ter:      #94a3b8;
  --border:        rgba(0, 0, 0, 0.08);
  --shadow-sm:     0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow:        0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg:     0 8px 40px rgba(0, 0, 0, 0.12);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    0.22s ease;

  --font-head: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

/* ----------------------------------------------------------
   Reset & Base
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

ul { list-style: none; }

/* ----------------------------------------------------------
   Typography
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { color: var(--text-sec); line-height: 1.7; }

/* ----------------------------------------------------------
   Layout Utilities
   ---------------------------------------------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-section);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ----------------------------------------------------------
   OC Tech Co. Demo Banner
   ---------------------------------------------------------- */
.demo-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 9px 24px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.demo-banner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
}

.demo-banner a:hover { opacity: 1; color: #fff; }

/* ----------------------------------------------------------
   Navigation
   ---------------------------------------------------------- */
.site-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 38px;
  z-index: 900;
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.nav-logo:hover { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-sec);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--accent-subtle);
  color: var(--accent);
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
}

/* ----------------------------------------------------------
   Hero
   ---------------------------------------------------------- */
.hero {
  background: linear-gradient(150deg, #f0f7ff 0%, #ffffff 45%, #f8fafc 100%);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-content { max-width: 540px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-eyebrow-text {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--text);
}

.hero h1 span { color: var(--accent); }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-sec);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Search Bar */
.search-bar {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6px 6px 6px 20px;
  gap: 12px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.search-bar:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), var(--shadow-lg);
}

.search-bar-icon {
  color: var(--text-ter);
  font-size: 1rem;
  flex-shrink: 0;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: transparent;
  min-width: 0;
}

.search-bar input::placeholder { color: var(--text-ter); }

.search-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 12px 24px;
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.search-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.hero-trust {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* Hero Image Side */
.hero-visual {
  position: relative;
}

.hero-image-main {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 40%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-image-main::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-image-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 1;
  color: #fff;
  font-family: var(--font-head);
}

.hero-image-label-name {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-image-label-sub {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 2px;
}

.hero-image-icon {
  font-size: 4rem;
  opacity: 0.25;
}

.hero-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  font-family: var(--font-head);
  border: 1px solid var(--border);
}

.hero-badge-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.hero-badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-ter);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ----------------------------------------------------------
   Featured Listings
   ---------------------------------------------------------- */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.listing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.listing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.listing-image {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.listing-image-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
}

.listing-image-bg.blue-1 {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.listing-image-bg.blue-2 {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.listing-image-bg.blue-3 {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
}

.listing-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.listing-body {
  padding: 22px 22px 24px;
}

.listing-location {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.listing-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.listing-details {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.listing-detail {
  font-size: 0.82rem;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 4px;
}

.listing-detail-icon {
  color: var(--text-ter);
  font-size: 0.85rem;
}

.listing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}

.listing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listing-price {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
}

.listing-btn {
  background: var(--accent-subtle);
  color: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.listing-btn:hover {
  background: var(--accent);
  color: #fff;
}

/* ----------------------------------------------------------
   About Agent
   ---------------------------------------------------------- */
.agent-section {
  background: var(--bg);
}

.agent-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.agent-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.agent-photo {
  width: 320px;
  height: 380px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #2563eb 0%, #1e40af 60%, #1e3a8a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  color: rgba(255,255,255,0.2);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.agent-photo::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}

.agent-photo-label {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 1;
}

.agent-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  box-shadow: var(--shadow);
}

.agent-exp-badge-num {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.agent-exp-badge-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.85;
  text-align: center;
  margin-top: 2px;
  line-height: 1.2;
}

.agent-content .section-label { margin-bottom: 12px; }

.agent-content h2 { margin-bottom: 8px; }

.agent-title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.agent-bio {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-sec);
  margin-bottom: 36px;
}

.agent-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.agent-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
}

.agent-stat-value {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.agent-stat-label {
  font-size: 0.75rem;
  color: var(--text-ter);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ----------------------------------------------------------
   Market Insights
   ---------------------------------------------------------- */
.market-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.market-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.market-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.market-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.market-card-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}

.market-card-value {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.market-card-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.market-card-sub {
  font-size: 0.8rem;
  color: var(--text-ter);
}

.market-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-ter);
  font-style: italic;
  margin-top: 8px;
}

/* ----------------------------------------------------------
   Testimonials
   ---------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.testimonial-quote-mark {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: -8px;
  display: block;
  opacity: 0.25;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-sec);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-author-sub {
  font-size: 0.75rem;
  color: var(--text-ter);
  margin-top: 1px;
}

/* ----------------------------------------------------------
   Contact
   ---------------------------------------------------------- */
.contact-section {
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 12px; }

.contact-info > p {
  margin-bottom: 36px;
  font-size: 1rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-subtle);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--accent);
}

.contact-item-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-ter);
  margin-bottom: 3px;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.contact-item-value a {
  color: var(--text);
  transition: color var(--transition);
}

.contact-item-value a:hover { color: var(--accent); }

/* Contact Form Card */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  margin-bottom: 24px;
  font-size: 1.15rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-sec);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-ter); }

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-btn {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 13px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: background var(--transition), transform var(--transition);
}

.form-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.footer-dre {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-credit {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.footer-credit a {
  color: var(--accent-light);
  font-weight: 600;
}

.footer-credit a:hover { color: #fff; }

/* ----------------------------------------------------------
   Responsive
   ---------------------------------------------------------- */
@media (max-width: 960px) {
  .hero-inner,
  .agent-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual { order: -1; }

  .hero-image-main { max-width: 480px; margin: 0 auto; }

  .agent-visual { order: -1; }

  .listings-grid,
  .market-stats,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .section { padding: 60px 0; }

  .hero { padding: 60px 0 52px; }

  .listings-grid,
  .market-stats,
  .testimonials-grid,
  .agent-stats,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero-trust { gap: 14px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-badge { display: none; }

  .agent-exp-badge { bottom: -10px; right: 0; }
}
