/* ClearView Valet — Brand Style */
:root {
  --primary: #0a6e6e;
  --primary-dark: #064d4d;
  --primary-light: #e0f5f5;
  --accent: #f5a623;
  --text: #1a1a2e;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-gray: #f9fafb;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 12px;
}

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

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

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
nav {
  background: var(--bg);
  position: fixed; top: 0; width: 100%; z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
nav .container {
  display: flex; justify-content: space-between; align-items: center;
  height: 70px;
}
nav .logo {
  font-size: 1.4rem; font-weight: 700; color: var(--primary);
  text-decoration: none;
}
nav .logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text); text-decoration: none; font-size: 0.95rem;
  font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--primary); color: white !important; padding: 10px 24px;
  border-radius: 8px; font-weight: 600; font-size: 0.9rem !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0a8a8a 100%);
  color: white; padding: 160px 0 100px; text-align: center;
}
.hero h1 { font-size: 3rem; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 1.2rem; max-width: 650px; margin: 0 auto 36px;
  opacity: 0.9; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: var(--text); padding: 14px 36px;
  border-radius: 8px; text-decoration: none; font-weight: 700; font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
.btn-outline {
  border: 2px solid white; color: white; padding: 12px 36px;
  border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: background 0.2s; display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Pain Point Section */
.pain-points { padding: 80px 0; background: var(--bg); }
.pain-points h2 { text-align: center; font-size: 2rem; margin-bottom: 48px; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.pain-card {
  background: var(--bg-gray); border-radius: var(--radius); padding: 32px;
  border-left: 4px solid #ef4444; transition: transform 0.2s;
}
.pain-card:hover { transform: translateY(-3px); }
.pain-card.solved { border-left-color: var(--primary); }
.pain-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.pain-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pain-card .problem { color: #dc2626; font-size: 0.9rem; margin-bottom: 8px; }
.pain-card .solution { color: var(--primary); font-size: 0.9rem; font-weight: 600; }

/* Stats / Trust */
.stats { background: var(--primary-dark); color: white; padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; text-align: center; }
.stat-item h3 { font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.stat-item p { font-size: 0.95rem; opacity: 0.85; margin-top: 4px; }

/* Section common */
.section { padding: 80px 0; }
.section h2 { font-size: 2rem; margin-bottom: 12px; }
.section .subtitle { color: var(--text-light); font-size: 1.1rem; margin-bottom: 40px; max-width: 600px; }

/* Services page */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: var(--shadow); }
.service-card .icon { font-size: 2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.pricing-card {
  border: 1px solid var(--border); border-radius: var(--radius); padding: 32px;
  text-align: center; transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow); }
.pricing-card.featured {
  border: 2px solid var(--primary);
  position: relative;
}
.pricing-card.featured::before {
  content: "Most Popular"; position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%); background: var(--primary); color: white;
  padding: 4px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
}
.pricing-card .price { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin: 16px 0; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.pricing-card ul { list-style: none; margin: 24px 0; padding: 0; }
.pricing-card li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.pricing-card .btn-primary { margin-top: 16px; }

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.95rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: 8px; font-size: 1rem; font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,110,110,0.1);
}

/* Service Area Map */
.area-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
.area-item {
  background: var(--bg-gray); padding: 16px 20px; border-radius: 8px;
  font-weight: 500; text-align: center;
}

/* Flyer */
.flyer {
  max-width: 800px; margin: 40px auto; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.flyer-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white; padding: 40px; text-align: center;
}
.flyer-header h2 { font-size: 1.8rem; margin-bottom: 4px; }
.flyer-header p { opacity: 0.9; font-size: 1.1rem; }
.flyer-body { padding: 40px; }
.flyer-side-by-side { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 24px 0; }
.flyer-col { padding: 24px; border-radius: var(--radius); }
.flyer-problem { background: #fef2f2; border: 1px solid #fecaca; }
.flyer-problem h3 { color: #dc2626; font-size: 1.2rem; margin-bottom: 12px; }
.flyer-problem li { color: #991b1b; margin: 8px 0; }
.flyer-solution { background: var(--primary-light); border: 1px solid #99f6e4; }
.flyer-solution h3 { color: var(--primary-dark); font-size: 1.2rem; margin-bottom: 12px; }
.flyer-solution li { color: var(--primary-dark); margin: 8px 0; }
.flyer-cta {
  background: var(--primary); color: white; text-align: center; padding: 32px;
  border-radius: var(--radius);
}
.flyer-cta h3 { font-size: 1.4rem; margin-bottom: 8px; }
.flyer-cta .phone { font-size: 1.6rem; font-weight: 800; color: var(--accent); }

/* Footer */
footer {
  background: var(--text); color: rgba(255,255,255,0.7); padding: 48px 0 24px;
}
footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; }
footer h4 { color: white; margin-bottom: 16px; font-size: 1rem; }
footer p, footer a { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: white; }
footer .copyright { margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.85rem; }

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; background: white; position: absolute; top: 70px; left: 0; right: 0; padding: 20px; box-shadow: var(--shadow); gap: 16px; }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 2rem; }
  .hero { padding: 120px 0 60px; }
  footer .container { grid-template-columns: 1fr; }
  .flyer-side-by-side { grid-template-columns: 1fr; }
}
