/* =============================================
   Lizzy's Yard Cleaning — Landing Page Styles
   Colors: Navy #1a1a3e, Gold #d4a843, White
   ============================================= */

:root {
  --navy: #1a1a3e;
  --navy-dark: #0f0f24;
  --navy-light: #2a2a5e;
  --gold: #d4a843;
  --gold-light: #e8c46e;
  --gold-dark: #b8922e;
  --white: #ffffff;
  --white-off: #f5f5f7;
  --gray-100: #f0f0f5;
  --gray-300: #c8c8d4;
  --gray-500: #8888a0;
}

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

html { scroll-behavior: smooth; }

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

/* ---- Typography ---- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { font-size: 1rem; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(212,168,67,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn-secondary:hover { background: var(--gold); color: var(--navy-dark); }

/* ---- HEADER ---- */
.site-header {
  background: var(--navy);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 8px;
}
.header-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.header-logo-text span { color: var(--gold); }
.header-cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.9rem;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_176475/792a79d8-15af-404d-9970-f2e12ca28d74.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,36,0.88) 0%, rgba(26,26,62,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,168,67,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  color: var(--gray-300);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gray-300);
  font-size: 0.875rem;
}
.hero-trust svg { color: var(--gold); }

/* ---- SECTION COMMON ---- */
.section {
  padding: 5rem 0;
}
.section-alt { background: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header h2 span { color: var(--gold); }
.section-header p { color: var(--gray-500); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.section-navy .section-header p { color: var(--gray-300); }

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-100);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,26,62,0.12);
  border-color: var(--gold);
}
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(212,168,67,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}
.service-card h3 {
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.service-card p {
  color: var(--gray-500);
  font-size: 0.925rem;
  line-height: 1.6;
}
.service-price {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--gold-dark);
  font-weight: 600;
}
.badge-upsell {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.25s;
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(212,168,67,0.18);
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray-500); }
.pricing-desc {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin: 0.75rem 0 1.5rem;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.75rem;
}
.pricing-features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--gray-500);
  font-size: 0.875rem;
}
.pricing-note span { color: var(--gold-dark); font-weight: 600; }

/* ---- HOW IT WORKS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0.4;
}
.step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.step h3 { color: var(--navy); margin-bottom: 0.5rem; }
.step p { color: var(--gray-500); font-size: 0.925rem; }

/* ---- BOOKING FORM ---- */
.form-section { background: var(--navy-dark); }
.booking-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-100);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white-off);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  margin-top: 1.5rem;
}
.form-submit .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1.05rem;
}
.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--navy-dark);
  color: var(--gray-300);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand img { height: 44px; border-radius: 8px; }
.footer-brand p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--gray-500); }
.footer-cta { text-align: right; }
.footer-cta .phone-link {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-cta .phone-link:hover { color: var(--gold-light); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-cta { text-align: center; }
  .hero { min-height: 70vh; }
  .booking-form-wrap { padding: 1.75rem 1.25rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .section { padding: 3.5rem 0; }
  .btn { padding: 0.75rem 1.5rem; }
}