/* Westshore Computer Repair Services - Stylesheet */

:root {
  --navy: #0B2545;
  --navy-light: #13315C;
  --teal: #2DD4BF;
  --teal-dark: #14B8A6;
  --orange: #F97316;
  --bg: #FFFFFF;
  --bg-soft: #F8FAFC;
  --bg-section: #F1F5F9;
  --text: #1E293B;
  --text-soft: #475569;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(11, 37, 69, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 37, 69, 0.08);
  --shadow-lg: 0 10px 25px rgba(11, 37, 69, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HEADER === */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-link img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--teal-dark); }

.nav-phone {
  background: var(--teal);
  color: var(--navy) !important;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  font-size: 15px !important;
  transition: all 0.15s;
}

.nav-phone:hover {
  background: var(--teal-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--navy);
  cursor: pointer;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 60px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45,212,191,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.hero p.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,0.92);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.15s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: var(--navy);
}

.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.hero-trust {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.hero-trust span { margin: 0 8px; }

/* === STATS BAR === */
.stats {
  background: var(--bg-soft);
  padding: 36px 20px;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* === SECTIONS === */
section {
  padding: 70px 20px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  line-height: 1.15;
}

h3 {
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}

.lead-para {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 700px;
  margin-bottom: 40px;
}

/* === SERVICE CARDS === */
.bg-soft { background: var(--bg-soft); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  display: block;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.service-card .title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}

.service-card .desc {
  font-size: 14px;
  color: var(--text-soft);
}

/* === WHY US (3 columns) === */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.why-card {
  text-align: left;
}

.why-card .icon {
  width: 48px;
  height: 48px;
  background: var(--teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.stars {
  color: #FBBF24;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.review-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.review-loc {
  color: var(--text-muted);
  font-size: 13px;
}

/* === SERVICE AREAS === */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.area-link {
  display: block;
  padding: 18px 22px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.15s;
}

.area-link:hover {
  border-color: var(--teal);
  background: #F0FDFA;
  transform: translateY(-2px);
}

/* === SCAM ALERT === */
.scam-alert {
  background: #FEF3C7;
  border: 2px solid #FBBF24;
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  margin: 30px 0;
}

.scam-alert h3 { color: #92400E; }
.scam-alert p { color: #78350F; margin: 12px 0 18px; }
.scam-alert a {
  color: #92400E;
  font-weight: 700;
  text-decoration: underline;
}

/* === FAQ === */
.faq-list { max-width: 820px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.faq-item .q {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 17px;
}

.faq-item .a {
  color: var(--text-soft);
  line-height: 1.65;
}

/* === FINAL CTA === */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
}

.cta-band .hours {
  display: block;
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}

/* === FOOTER === */
.site-footer {
  background: #051426;
  color: rgba(255,255,255,0.7);
  padding: 60px 20px 30px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  height: 60px;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--teal); }

.footer-col p { font-size: 14px; margin-bottom: 6px; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin: 0 6px;
}

.footer-bottom a:hover { color: var(--teal); }

/* === CONTENT (for service/city pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

.page-hero h1 {
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 26px;
}

.content {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px;
}

.content p {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 18px;
  line-height: 1.7;
}

.content h2 {
  font-size: 28px;
  margin: 36px 0 18px;
}

.content h3 {
  font-size: 21px;
  margin: 28px 0 12px;
}

.content ul {
  margin: 12px 0 22px 22px;
  color: var(--text-soft);
}

.content ul li {
  margin-bottom: 10px;
  line-height: 1.65;
  font-size: 16px;
}

.content strong { color: var(--navy); }

.callout {
  background: var(--bg-soft);
  border-left: 4px solid var(--teal);
  padding: 22px 24px;
  border-radius: 6px;
  margin: 28px 0;
}

.callout p { margin: 0; }

.related-services {
  background: var(--bg-soft);
  padding: 50px 20px;
  margin-top: 40px;
}

.related-services h3 {
  text-align: center;
  margin-bottom: 28px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.related-grid a {
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--navy);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s;
}

.related-grid a:hover {
  border-color: var(--teal);
  background: #F0FDFA;
}

/* === RESPONSIVE === */
@media (max-width: 820px) {
  .menu-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open { display: flex; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .three-col { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  section { padding: 50px 20px; }
  .hero { padding: 50px 20px; }
  .page-hero { padding: 45px 20px; }
}
