/* Blue Collar AI — Generated Website Styles */
/* Primary: #1e3a5f | Secondary: #f5a623 */

:root {
  --primary: #1e3a5f;
  --primary-dark: #00072c;
  --primary-light: #ffffff;
  --secondary: #f5a623;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); line-height: 1.6; }

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

/* ── Buttons ── */
.btn-primary {
  display: inline-block; padding: 14px 28px; background: var(--primary); color: white;
  text-decoration: none; border-radius: var(--radius); font-weight: 600; font-size: 1rem;
  transition: background 0.2s, transform 0.1s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block; padding: 12px 24px; background: transparent; color: var(--primary);
  text-decoration: none; border-radius: var(--radius); font-weight: 600;
  border: 2px solid var(--primary); transition: all 0.2s;
}
.btn-secondary:hover { background: var(--primary); color: white; }

/* ── Sticky Nav ── */
.sticky-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: white; box-shadow: var(--shadow); transition: box-shadow 0.3s;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo { text-decoration: none; }
.logo-text { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.logo-img { height: 45px; width: auto; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.btn-phone {
  display: flex; align-items: center; gap: 6px; padding: 8px 16px;
  background: var(--primary-light); color: var(--primary); text-decoration: none;
  border-radius: var(--radius); font-weight: 600; font-size: 0.95rem; transition: all 0.2s;
}
.btn-phone:hover { background: var(--primary); color: white; }
.phone-icon { font-size: 1.1rem; }
.mobile-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 24px; position: relative; padding: 0;
}
.mobile-menu-btn span {
  display: block; width: 100%; height: 3px; background: var(--text);
  border-radius: 2px; position: absolute; left: 0; transition: all 0.3s;
}
.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 10px; }
.mobile-menu-btn span:nth-child(3) { top: 20px; }

/* ── Mobile Menu ── */
.mobile-menu {
  display: none; position: fixed; top: 70px; left: 0; right: 0;
  background: white; box-shadow: var(--shadow-lg); z-index: 999;
  flex-direction: column; padding: 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; text-decoration: none; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }
.btn-phone-mobile {
  margin-top: 12px; padding: 14px; background: var(--primary); color: white;
  text-align: center; border-radius: var(--radius); font-weight: 600; text-decoration: none;
}

/* ── Hero ── */
.hero {
  position: relative; min-height: 600px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  margin-top: 70px; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; text-align: center; color: white; padding: 40px 20px; max-width: 800px; }
.hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 16px; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.hero-tagline { font-size: 1.35rem; margin-bottom: 32px; opacity: 0.95; font-weight: 400; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.btn-hero-primary {
  padding: 16px 32px; background: var(--secondary); color: #1a1a1a; font-weight: 700;
  font-size: 1.15rem; border-radius: var(--radius); text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s; box-shadow: var(--shadow-lg);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.2); }
.btn-hero-secondary {
  padding: 16px 32px; background: transparent; color: white; font-weight: 600;
  font-size: 1.1rem; border-radius: var(--radius); text-decoration: none;
  border: 2px solid rgba(255,255,255,0.6); transition: all 0.2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.15); border-color: white; }
.hero-trust { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; opacity: 0.9; font-size: 0.95rem; }

/* ── Services ── */
.services { padding: 80px 0; background: var(--bg-alt); }
.services h2, .reviews h2, .about h2, .service-area h2, .contact h2 {
  font-size: 2.25rem; font-weight: 800; text-align: center; margin-bottom: 12px; color: var(--text);
}
.section-subtitle { text-align: center; color: var(--text-light); font-size: 1.1rem; margin-bottom: 48px; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px; max-width: 1000px; margin: 0 auto;
}
.service-card {
  background: white; padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s; text-align: center;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon { font-size: 2.5rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* ── Reviews ── */
.reviews { padding: 80px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; margin-bottom: 32px; }
.review-card {
  background: var(--bg-alt); padding: 28px; border-radius: var(--radius);
  border-left: 4px solid var(--secondary);
}
.review-stars { font-size: 1.2rem; margin-bottom: 12px; }
.review-card p { font-style: italic; color: var(--text); margin-bottom: 12px; line-height: 1.6; }
.review-author { font-weight: 600; color: var(--text-light); font-size: 0.9rem; }
.reviews-cta { text-align: center; }

/* ── About ── */
.about { padding: 80px 0; background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: center; }
.about-text p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 24px; color: var(--text); }
.about-features { list-style: none; margin-bottom: 28px; }
.about-features li { padding: 8px 0; font-size: 1rem; font-weight: 500; }
.about-image { display: flex; justify-content: center; }
.about-placeholder {
  width: 100%; max-width: 350px; aspect-ratio: 4/5; background: white;
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; box-shadow: var(--shadow);
  border: 2px dashed var(--border);
}
.about-icon { font-size: 4rem; margin-bottom: 12px; }
.about-placeholder p { color: var(--text-light); font-size: 0.9rem; }

/* ── Service Area ── */
.service-area { padding: 80px 0; text-align: center; }
.area-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin: 32px 0;
}
.area-list li {
  padding: 10px 20px; background: var(--primary-light); color: var(--primary);
  border-radius: 999px; font-weight: 500; font-size: 0.95rem;
}
.area-note { color: var(--text-light); margin-bottom: 24px; }

/* ── Contact ── */
.contact { padding: 80px 0; background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px; border: 1px solid var(--border); border-radius: var(--radius);
  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 #ffffff;
}
button.full-width { grid-column: 1 / -1; font-size: 1.1rem; }
.contact-info { padding: 24px 0; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 20px; }
.contact-phone {
  display: block; font-size: 1.5rem; font-weight: 700; color: var(--primary);
  text-decoration: none; margin-bottom: 12px;
}
.contact-email { display: block; color: var(--text); text-decoration: none; margin-bottom: 16px; font-size: 1.05rem; }
.contact-address { color: var(--text-light); margin-bottom: 24px; }
.contact-hours h4 { font-size: 1rem; margin-bottom: 8px; }
.contact-hours p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 4px; }

/* ── Footer ── */
.footer { background: #111827; color: white; padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { color: #9ca3af; margin-top: 8px; }
.footer h3, .footer h4 { margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a, .footer-contact a { color: #d1d5db; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact p { color: #9ca3af; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: #9ca3af; font-size: 0.9rem; }
.powered-by a { color: var(--secondary); text-decoration: none; }

/* ── Mobile CTA Bar ── */
.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: white; box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  padding: 12px; gap: 12px;
}
.mobile-cta-call, .mobile-cta-estimate {
  flex: 1; text-align: center; padding: 14px; border-radius: var(--radius);
  font-weight: 700; text-decoration: none; font-size: 1rem;
}
.mobile-cta-call { background: var(--primary); color: white; }
.mobile-cta-estimate { background: var(--secondary); color: #1a1a1a; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: block; }
  .mobile-cta-bar { display: flex; }
  .hero { min-height: 500px; margin-top: 70px; }
  .hero-content h1 { font-size: 2.25rem; }
  .hero-tagline { font-size: 1.1rem; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  body { padding-bottom: 70px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.75rem; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
}