/* HeavyLifters - Shared Styles */

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

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.3s;
}

.header.scrolled {
  background: #1a1a1a;
  color: #fff;
}

.header.header-dark {
  background: #1a1a1a;
  color: #fff;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 24px;
  height: 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a:hover {
  opacity: 0.8;
}

.phone-btn {
  background: #FFE500;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.header-dark .phone-btn {
  background: #FFE500;
  color: #1a1a1a;
}

/* Buttons */
.btn {
  padding: 0.875rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, opacity 0.2s;
  display: inline-block;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn-primary {
  background: #1a1a1a;
  color: #fff;
}

.btn-secondary {
  background: #1a1a1a;
  color: #fff;
}

.btn-yellow {
  background: #FFE500;
  color: #1a1a1a;
}

/* Hero Section */
.hero {
  background: #FFE500;
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h2 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content .tagline {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Page Hero (smaller for subpages) */
.page-hero {
  background: #FFE500;
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Section Styles */
.section {
  padding: 5rem 2rem;
}

.section-light {
  background: #fff;
}

.section-gray {
  background: #fafafa;
}

.section-dark {
  background: #1a1a1a;
  color: #fff;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: #999;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature {
  background: #FFE500;
  padding: 1.25rem;
  border-radius: 8px;
}

.feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat {
  padding: 1rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: #FFF3CD;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.stat h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
}

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

.service-item {
  padding: 1rem;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: #FFE500;
}

.service-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-item ul {
  list-style: none;
}

.service-item li {
  font-size: 0.9rem;
  color: #999;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.service-item li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #FFE500;
  border-radius: 50%;
}

/* Quote Form */
.quote-section {
  padding: 6rem 2rem;
  background: #fafafa;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quote-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.quote-header p {
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

.quote-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #FFE500;
  box-shadow: 0 0 0 3px rgba(255, 229, 0, 0.2);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.quote-form .btn-submit {
  width: 100%;
  padding: 1rem;
  background: #FFE500;
  color: #1a1a1a;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.quote-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 229, 0, 0.4);
}

.form-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #666;
}

.form-note a {
  color: #1a1a1a;
  font-weight: 600;
}

/* Partner Profile */
.partner-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}

.partner-photo {
  position: relative;
}

.partner-photo img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.partner-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFE500;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.partner-info h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.partner-title {
  color: #666;
  margin-bottom: 1rem;
}

.partner-bio {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.partner-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.partner-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a1a1a;
  font-size: 0.9rem;
}

.partner-contact svg {
  width: 18px;
  height: 18px;
}

.partner-offer {
  background: #FFF3CD;
  padding: 1.25rem;
  border-radius: 8px;
  border-left: 4px solid #FFE500;
}

.partner-offer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.partner-offer p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* City Page Styles */
.city-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.city-stat {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}

.city-stat .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFE500;
}

.city-stat .label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.neighborhoods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.neighborhood {
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Footer */
.footer {
  padding: 4rem 2rem 2rem;
  background: #111;
  color: #fff;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFE500;
}

.footer ul {
  list-style: none;
}

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

.footer a {
  color: #999;
  font-size: 0.9rem;
}

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

.footer-contact a {
  display: block;
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  max-width: 1000px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #666;
}

.footer-bottom a {
  color: #FFE500;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .partner-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .partner-photo {
    max-width: 250px;
    margin: 0 auto;
  }

  .partner-contact {
    justify-content: center;
  }

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

  .neighborhoods {
    grid-template-columns: 1fr 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

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

/* Trust Section - E-E-A-T Signals */
.trust-section {
  padding: 6rem 2rem;
  background: #1a1a1a;
  color: #fff;
}

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

.trust-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-section .section-header h3 {
  font-size: 0.875rem;
  color: #FFE500;
  margin-bottom: 0.5rem;
}

.trust-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.trust-card {
  background: #252525;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  border-top: 3px solid #FFE500;
}

.trust-stat {
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFE500;
  margin-bottom: 0.5rem;
}

.trust-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.trust-card p {
  font-size: 0.85rem;
  color: #999;
  line-height: 1.6;
}

.trust-definition {
  background: #252525;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #FFE500;
}

.trust-definition p {
  color: #ccc;
  line-height: 1.8;
  font-size: 0.95rem;
}

.trust-definition strong {
  color: #fff;
}

/* Service Areas Grid */
.service-areas {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #fff;
  border-radius: 8px;
  border-left: 4px solid #FFE500;
}

.service-areas h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.areas-grid a {
  background: #FFE500;
  color: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
}

.areas-grid a:hover {
  background: #1a1a1a;
  color: #FFE500;
  transform: translateY(-2px);
}

/* FAQ Section */
.faq {
  padding: 6rem 2rem;
  background: #fff;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq h3 {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.5rem;
  text-align: center;
}

.faq h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.faq-item {
  background: #fafafa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #FFE500;
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1a1a1a;
}

.faq-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}
