/* ========================================
   SUPREME CONTRACTING VA - landing.css
   Shared styles for city landing pages
   ======================================== */

/* ===== HERO ===== */
.lp-hero {
  background: linear-gradient(to bottom, rgba(17,17,17,0.85), rgba(17,17,17,0.92)), url('hero-bg.jpg') center/cover no-repeat;
  padding: 100px 0 80px;
  color: #fff;
  text-align: center;
}
.lp-hero .breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.lp-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}
.lp-hero .breadcrumb a:hover {
  color: #CC0000;
}
.lp-hero .breadcrumb span {
  color: rgba(255,255,255,0.9);
}
.lp-hero .badge {
  display: inline-block;
  background: rgba(204,0,0,0.15);
  border: 1px solid rgba(204,0,0,0.4);
  color: #CC0000;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 20px;
}
.lp-hero h1 .red {
  color: #CC0000;
}
.lp-hero .subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.lp-hero .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #CC0000;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-red:hover {
  background: #a00000;
  transform: translateY(-1px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: #CC0000;
  transform: translateY(-1px);
}

/* ===== TRUST BAR ===== */
.lp-hero .trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  text-align: center;
}
.trust-item .number {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.trust-item .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===== SHARED SECTION STYLES ===== */
.lp-section {
  padding: 80px 0;
}
.lp-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: #CC0000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #111;
}
.section-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 40px;
}

/* ===== BACKGROUNDS ===== */
.bg-dark {
  background: #2C2C2C;
  color: #fff;
}
.bg-dark .section-title {
  color: #fff;
}
.bg-dark .section-desc {
  color: rgba(255,255,255,0.7);
}
.bg-light {
  background: #f7f7f7;
}

/* ===== WHY CARDS ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e8e8e8;
  transition: box-shadow 0.2s;
}
.why-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.why-card .icon {
  width: 48px;
  height: 48px;
  background: rgba(204,0,0,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}
.why-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.65;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}
.service-item:hover {
  border-color: #CC0000;
}
.service-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.service-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ===== WHY US ===== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.why-us-item {
  text-align: center;
  padding: 24px;
}
.why-us-item .check {
  width: 44px;
  height: 44px;
  background: rgba(204,0,0,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #CC0000;
  font-weight: 700;
  font-size: 1.2rem;
}
.why-us-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.why-us-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ===== FAQ (landing page variant) ===== */
.faq-list {
  max-width: 800px;
}
.lp-section .faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 40px 24px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  line-height: 1.4;
}
.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: #CC0000;
  transition: transform 0.2s;
}
.faq-question.active::after {
  content: '\2212';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: #111;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.cta-section .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-section .bilingual {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
}

/* ===== EMERGENCY BAR ===== */
.emergency-bar {
  background: #CC0000;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.emergency-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.emergency-bar p {
  font-weight: 600;
  font-size: 1rem;
}
.emergency-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}

/* ===== INTERNAL LINKS ===== */
.internal-links {
  padding: 48px 0;
  background: #f7f7f7;
  border-top: 1px solid #e8e8e8;
}
.internal-links .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.internal-links h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}
.link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.link-grid a {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 10px 20px;
  border-radius: 8px;
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.link-grid a:hover {
  border-color: #CC0000;
  color: #CC0000;
}

@media (max-width: 768px) {
  .lp-hero {
    padding: 80px 0 60px;
  }
  .lp-hero .trust-bar {
    gap: 24px;
  }
  .why-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}
