/* ==========================================================================
   SpeedyFixers shared stylesheet
   Used by city pages. index.html keeps its own inline styles.
   ========================================================================== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

:root {
  --black: #111111;
  --dark: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f8f6f1;
  --gray-100: #e8e8e8;
  --gray-400: #888888;
  --gray-600: #555555;
  --accent: #c8981e;
  --accent-hover: #a67c15;
  --accent-light: rgba(200, 152, 30, 0.08);
  --gold: #facc15;
  --gold-dark: #c8981e;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 50px; font-weight: 700;
  font-size: 1rem; transition: all 0.3s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--gold); color: var(--black); border: 2px solid var(--gold); font-weight: 800; }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,152,30,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-dark { background: var(--black); color: var(--gold); border: 2px solid var(--black); }
.btn-dark:hover { background: #222; transform: translateY(-2px); }
.section-label {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900;
  line-height: 1.15; margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--gray-600); max-width: 600px;
  line-height: 1.7;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; align-items: center; gap: 8px; }
.nav-logo img { height: 80px; width: auto; }
.nav-logo-text { font-size: 1.25rem; font-weight: 900; letter-spacing: 1px; font-family: 'Arial Black','Impact','Helvetica Neue',sans-serif; }
.nav-logo-text span { color: var(--gold-dark); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.92rem; font-weight: 600; color: var(--gray-600); transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 1.05rem; color: var(--black); }
.nav-phone i { color: var(--gold-dark); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--black); margin: 5px 0; transition: all 0.3s; border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0;
  background: var(--white); padding: 24px; border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1); z-index: 999;
}
.mobile-menu.active { display: block; }
.mobile-menu a {
  display: block; padding: 14px 0; font-weight: 600;
  font-size: 1.05rem; color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:last-child { border: none; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--white); padding: 100px 0 0;
  border-bottom: 1px solid var(--gray-100);
}
.breadcrumb-inner {
  font-size: 0.85rem; color: var(--gray-400);
  padding-bottom: 14px;
}
.breadcrumb-inner a { color: var(--gray-600); font-weight: 600; }
.breadcrumb-inner a:hover { color: var(--gold-dark); }
.breadcrumb-inner .sep { margin: 0 8px; color: var(--gray-100); }
.breadcrumb-inner .current { color: var(--black); font-weight: 700; }

/* ===== HERO (city) ===== */
.hero {
  padding: 60px 0 90px;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250,204,21,0.1); padding: 8px 18px;
  border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px; border: 1px solid rgba(250,204,21,0.2);
}
.hero-badge i { color: var(--gold); }
.hero h1 {
  font-size: clamp(2.4rem, 4.8vw, 3.4rem);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 22px; letter-spacing: -1px;
}
.hero h1 .highlight { color: var(--gold); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 32px; max-width: 520px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 28px; display: flex; gap: 28px; flex-wrap: wrap;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.hero-meta i { color: var(--gold); margin-right: 6px; }
.hero-visual { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-icon-wrapper { display: flex; align-items: center; justify-content: center; position: relative; }
.hero-icon-wrapper img {
  width: 480px; height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-float {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  z-index: 2;
}
.hero-float i { font-size: 1rem; }
.hero-float-1 { top: -20px; right: -20px; }
.hero-float-2 { bottom: -10px; right: -20px; }
.hero-float .float-stars { color: #facc15; letter-spacing: 1px; }
.hero-float .float-count { font-size: 1.1rem; font-weight: 900; color: #fff; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  padding: 28px 0;
}
.trust-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--gray-600); font-size: 0.95rem; }
.trust-item i { font-size: 1.2rem; color: var(--gold-dark); }

/* ===== SERVICES (compact grid) ===== */
.services { padding: 90px 0; background: var(--gray-50); }
.services-header { text-align: center; margin-bottom: 50px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white); border-radius: 16px; padding: 32px 26px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(200,152,30,0.08); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 18px;
}
.service-card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.6; }

/* ===== LOCAL PROOF (city-specific block) ===== */
.local-proof { padding: 90px 0; background: var(--white); }
.local-proof-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.local-proof-list { display: grid; gap: 18px; margin-top: 30px; }
.local-proof-item { display: flex; gap: 16px; }
.local-proof-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: rgba(200,152,30,0.1); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.local-proof-item h4 { font-size: 1.02rem; font-weight: 800; margin-bottom: 4px; }
.local-proof-item p { font-size: 0.92rem; color: var(--gray-600); line-height: 1.6; }
.neighborhood-card {
  background: var(--gray-50); border-radius: 20px; padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.05);
}
.neighborhood-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 16px; }
.neighborhood-card p { font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 18px; }
.neighborhood-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.neighborhood-tag {
  background: var(--white); border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px; padding: 6px 14px;
  font-size: 0.82rem; font-weight: 600; color: var(--gray-600);
}

/* ===== SYMPTOMS LIST ===== */
.symptoms { padding: 90px 0; background: var(--gray-50); }
.symptoms-header { text-align: center; margin-bottom: 50px; }
.symptoms-header .section-subtitle { margin: 0 auto; }
.symptoms-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; max-width: 1000px; margin: 0 auto;
}
.symptom-card {
  background: var(--white); padding: 22px 24px; border-radius: 14px;
  display: flex; gap: 14px; align-items: flex-start;
  border: 1px solid rgba(0,0,0,0.05);
}
.symptom-card i { color: var(--gold-dark); font-size: 1rem; margin-top: 4px; }
.symptom-card h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.symptom-card p { font-size: 0.86rem; color: var(--gray-600); line-height: 1.5; }

/* ===== AREAS / NEARBY CITIES ===== */
.areas { padding: 80px 0; background: var(--white); }
.areas-inner { text-align: center; }
.areas-inner .section-subtitle { margin: 0 auto 36px; }
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.area-tag {
  padding: 10px 22px; border-radius: 50px;
  background: var(--gray-50); border: 1px solid rgba(0,0,0,0.08);
  font-weight: 600; font-size: 0.92rem; color: var(--gray-600);
  transition: all 0.2s;
}
.area-tag:hover { border-color: var(--gold-dark); color: var(--gold-dark); background: var(--white); }
.area-tag.current {
  background: var(--black); color: var(--gold); border-color: var(--black);
}
.areas-note { margin-top: 28px; font-size: 0.95rem; color: var(--gray-600); }
.areas-note a { color: var(--gold-dark); font-weight: 700; }

/* ===== FAQ ===== */
.faq { padding: 90px 0; background: var(--gray-50); }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-header .section-subtitle { margin: 0 auto; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: 14px; margin-bottom: 12px;
  border: 1px solid rgba(0,0,0,0.06); overflow: hidden;
}
.faq-question {
  width: 100%; padding: 22px 28px; background: none; border: none;
  text-align: left; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  font-size: 1.02rem; font-weight: 700; color: var(--black);
  font-family: inherit;
}
.faq-question i { transition: transform 0.3s; color: var(--gold-dark); font-size: 0.9rem; }
.faq-question.active i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner {
  padding: 0 28px 22px; font-size: 0.95rem;
  color: var(--gray-600); line-height: 1.7;
}

/* ===== CTA ===== */
.cta { padding: 100px 0; background: var(--white); }
.cta-box {
  background: var(--black); border-radius: 28px; padding: 72px 60px;
  text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(200,152,30,0.12); filter: blur(80px);
}
.cta-box .section-title { color: var(--white); position: relative; }
.cta-box p { color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 36px; position: relative; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.cta-phone {
  font-size: 2.2rem; font-weight: 900; color: var(--gold);
  margin-bottom: 12px; position: relative;
}
.cta-phone a { color: var(--gold); }
.cta-phone a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 60px 0 30px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { text-align: left; }
.footer-brand img { margin: 0; }
.footer-brand p { margin-top: 16px; font-size: 0.9rem; line-height: 1.7; max-width: 340px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 0.92rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px; display: flex;
  justify-content: space-between; align-items: center; font-size: 0.85rem;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); display: flex;
  align-items: center; justify-content: center;
  transition: all 0.2s; color: rgba(255,255,255,0.5);
}
.footer-socials a:hover { background: var(--gold); color: var(--black); }

/* ===== STICKY MOBILE BAR ===== */
.sticky-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1001; background: var(--black);
  padding: 12px 16px; box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-bar-inner { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 0; border-radius: 12px;
  font-weight: 800; font-size: 0.95rem; text-align: center;
}
.sticky-bar .sticky-call { background: var(--gold); color: var(--black); }
.sticky-bar .sticky-text {
  background: rgba(255,255,255,0.12); color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 12px; }
  .hero p { margin: 0 auto 18px; }
  .hero-buttons { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-icon-wrapper img { width: 100%; max-width: 400px; }
  .hero-float { display: none; }
  .local-proof-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-box { padding: 48px 24px; }
  .cta-phone { font-size: 1.6rem; }
  .sticky-bar { display: block; }
  body { padding-bottom: 80px; }
}
@media (max-width: 600px) {
  .hero { padding: 30px 0 60px; }
  .hero h1 { font-size: 1.95rem; }
  .hero p { font-size: 0.95rem; line-height: 1.6; }
  .hero-icon-wrapper img { width: 100%; max-width: 340px; }
  .services, .local-proof, .symptoms, .cta { padding: 60px 0; }
  .areas { padding: 50px 0; }
  .faq { padding: 60px 0; }
  .trust-items { gap: 20px; }
  .trust-item { font-size: 0.85rem; }
  .area-tags { gap: 8px; }
  .nav { height: 70px; }
  .nav-logo img { height: 70px; }
  .mobile-menu { top: 70px; }
  .section-title { font-size: 1.65rem; }
  .cta-box { padding: 40px 20px; border-radius: 18px; }
  .cta-phone { font-size: 1.4rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand img { height: 100px !important; }
  .container { padding: 0 16px; }
  .btn { padding: 14px 28px; font-size: 0.92rem; }
  .breadcrumb { padding-top: 80px; }
}
