/* AI Realtor Services — Style Sheet */
/* Forked from AI Dentist Services, adapted for Realtor branding */

:root {
  --primary: #c8a84f;
  --primary-dark: #a8883a;
  --primary-light: #e0c878;
  --bg: #ffffff;
  --bg-alt: #f8f6f1;
  --bg-dark: #1a1a2e;
  --text: #2d2d2d;
  --text-light: #666;
  --text-on-dark: #f0f0f0;
  --border: #e5e0d8;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.12);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

/* Navigation */
.site-header {
  background: var(--bg-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-on-dark);
  font-weight: 700;
  font-size: 1.2em;
}

.logo-icon { font-size: 1.5em; }
.logo span { color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-size: 1.5em;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu li a {
  padding: 8px 14px;
  text-decoration: none;
  color: var(--text-on-dark);
  font-size: 0.9em;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background: rgba(255,255,255,0.1);
}

.nav-menu li a.nav-cta {
  background: var(--primary);
  color: var(--bg-dark);
  font-weight: 600;
}

.nav-menu li a.nav-cta:hover {
  background: var(--primary-dark);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 1rem;
    gap: 8px;
  }
  .nav-menu.open { display: flex; }
}

/* Hero */
.hero {
  padding: 5rem 1.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8em;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.hero .subtitle {
  font-size: 1.2em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-badges span {
  background: rgba(255,255,255,0.1);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85em;
}

/* General sections */
.section {
  padding: 4rem 1.5rem;
}

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

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 2em;
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--bg-dark);
}

/* Grid */
.grid {
  display: grid;
  gap: 2rem;
}

.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4 {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.2s;
}

.card:hover { box-shadow: var(--shadow-hover); }

.card-icon { font-size: 2.5em; margin-bottom: 1rem; }

.card h3 {
  font-size: 1.2em;
  margin-bottom: 0.75rem;
  color: var(--bg-dark);
}

.card p { color: var(--text-light); font-size: 0.95em; }

/* Feature cards */
.feature-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.feature-icon { font-size: 2em; margin-bottom: 1rem; }

.feature-card h3 {
  font-size: 1.15em;
  margin-bottom: 0.75rem;
  color: var(--bg-dark);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.9em;
  margin-bottom: 1rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
}

.step {
  padding: 2rem;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 1.3em;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2em;
  margin-bottom: 0.5rem;
  color: var(--bg-dark);
}

.step p { color: var(--text-light); font-size: 0.95em; }

/* CTAs */
.cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background 0.2s, transform 0.1s;
}

.cta.primary {
  background: var(--primary);
  color: var(--bg-dark);
}

.cta.primary:hover {
  background: var(--primary-dark);
}

.cta.secondary {
  background: transparent;
  color: var(--text-on-dark);
  border: 2px solid rgba(255,255,255,0.3);
}

.cta.secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cta.text {
  background: none;
  color: var(--primary-dark);
  padding: 0;
  font-weight: 500;
}

.cta.text:hover {
  text-decoration: underline;
}

/* Service page specific */
.service-header {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: var(--text-on-dark);
}

.service-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

.service-header h1 {
  font-size: 2.2em;
  margin-bottom: 1rem;
}

.service-header .tagline {
  font-size: 1.2em;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.service-header .price {
  font-size: 1.1em;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.9);
}

.service-header .price span {
  color: var(--primary);
  font-weight: 700;
}

/* Feature list */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.feature-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

/* Comparison slider (for virtual staging) */
.comparison-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.comparison-image {
  display: block;
  width: 100%;
  height: auto;
}

.comparison-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.comparison-overlay img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
}

.comparison-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 10;
}

.comparison-label {
  position: absolute;
  bottom: 16px;
  padding: 4px 12px;
  background: rgba(0,0,0,0.7);
  color: white;
  font-size: 0.85em;
  border-radius: 4px;
  z-index: 5;
}

.comparison-label.original { left: 16px; }
.comparison-label.staged { right: 16px; }

.comparison-disclosure {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: var(--primary);
  color: var(--bg-dark);
  font-size: 0.75em;
  font-weight: 700;
  border-radius: 4px;
  z-index: 5;
}

/* Demo page specific */
.demo-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
}

.demo-upload-zone:hover {
  border-color: var(--primary);
}

.demo-upload-zone .icon {
  font-size: 3em;
  margin-bottom: 1rem;
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col li {
  color: rgba(255,255,255,0.7);
  font-size: 0.9em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85em;
  color: rgba(255,255,255,0.5);
}

.footer-eho {
  margin-top: 0.5rem;
  font-size: 0.85em;
}

/* Utility */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.pricing-grid { max-width: 1100px; margin: 0 auto; }

/* Pricing table */
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}

.pricing-card h3 {
  font-size: 1.2em;
  color: var(--bg-dark);
  margin-bottom: 0.5rem;
}

.pricing-card .price-setup {
  font-size: 0.95em;
  color: var(--text-light);
}

.pricing-card .price-monthly {
  font-size: 1.8em;
  font-weight: 700;
  color: var(--bg-dark);
  margin: 0.5rem 0;
}

.pricing-card .price-monthly small {
  font-size: 0.5em;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card .price-detail {
  font-size: 0.85em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pricing-card .features-mini {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-card .features-mini li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9em;
}

.pricing-card .features-mini li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary-dark);
}

/* Contact form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1em;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(200,168,79,0.2);
}

/* Disclosure badge */
.disclosure-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary);
  color: var(--bg-dark);
  font-size: 0.75em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

/* About page */
.about-content {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-content p {
  margin-bottom: 1rem;
  color: var(--text-light);
}
