/* Shared by the service subpages (computer-support, device-repair, networking, smart-home-setup). */

header { background: var(--navy); color: white; padding: 1rem 0; }
nav { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 1rem; }

.hero { color: white; padding: 7rem 0; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 1rem; }
.hero p { max-width: 700px; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }

.section-title { margin-bottom: 2rem; }
.section-title h2 { font-size: 2.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.section-title p { color: var(--muted); max-width: 720px; }

.content-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }

.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 2rem; }
.gallery-card { background: var(--card); border: 1px solid rgba(10,10,10,0.08); border-radius: 18px; overflow: hidden; box-shadow: 0 14px 30px rgba(2,6,23,0.06); }
.gallery-card img { display: block; width: 100%; height: 230px; object-fit: cover; }
.gallery-card p { padding: 1rem; color: var(--muted); font-size: 0.98rem; }

.card { background: var(--card); border: 1px solid rgba(10,10,10,0.08); border-radius: 20px; padding: 2rem; box-shadow: 0 14px 30px rgba(2,6,23,0.06); }
.card h3 { color: var(--navy); margin-bottom: 1rem; }
.card ul { list-style: disc; margin-left: 1.25rem; color: var(--muted); }

.pricing-card { background: var(--card); border: 1px solid rgba(10,10,10,0.08); border-radius: 20px; padding: 2rem; box-shadow: 0 14px 30px rgba(2,6,23,0.06); max-width: 480px; margin: 0 auto; text-align: center; }
.pricing-badge { display: inline-block; background: rgba(212,175,55,0.12); color: var(--gold); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 999px; margin-bottom: 1rem; }
.pricing-rate { font-size: 2.4rem; font-weight: 800; color: var(--navy); margin-bottom: 0.75rem; }
.pricing-rate span { font-size: 1.1rem; font-weight: 600; color: var(--muted); }
.pricing-includes { color: var(--muted); font-size: 0.98rem; }
.pricing-list { list-style: none; text-align: left; margin: 0 0 1rem; }
.pricing-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid rgba(10,10,10,0.06); color: var(--text); }
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li strong { color: var(--navy); }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.92rem; margin-top: 1.25rem; }
.pricing-note a { color: var(--gold); text-decoration: underline; font-weight: 600; }

.contact-cta { background: var(--navy); color: white; border-radius: 24px; padding: 2rem; text-align: center; }
.contact-cta p { max-width: 760px; margin: 0 auto 1.5rem; color: rgba(255,255,255,0.85); }

@media (min-width: 768px) {
  .content-grid { grid-template-columns: 1.2fr 0.8fr; }
}
