* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; background: #0f172a; color: #e2e8f0; line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Nav */
.navbar { background: #0f172a; padding: 15px 20px; position: fixed; width: 100%; top: 0; z-index: 100; border-bottom: 1px solid #1e293b; }
.nav-container { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { color: #fff; text-decoration: none; font-weight: 800; font-size: 1.4rem; }
.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-menu a { color: #94a3b8; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-menu a:hover { color: #3b82f6; }
.nav-cta { background: #3b82f6; color: #fff; padding: 10px 20px; text-decoration: none; font-weight: 700; border-radius: 8px; }

/* Hero */
.hero { background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%); padding: 130px 20px 80px; text-align: center; }
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero-badge { display: inline-block; background: #1e293b; color: #3b82f6; padding: 10px 24px; border-radius: 50px; font-weight: 600; margin-bottom: 25px; }
.hero h1 { font-size: 3rem; font-weight: 800; color: #fff; margin-bottom: 20px; }
.hero p { font-size: 1.2rem; color: #94a3b8; margin-bottom: 30px; }
.btn-primary { display: inline-block; background: #3b82f6; color: #fff; padding: 18px 36px; text-decoration: none; font-weight: 700; font-size: 1.15rem; border-radius: 10px; }
.btn-large { padding: 20px 40px; font-size: 1.2rem; }
.hero-hours { margin-top: 25px; font-size: 1rem; color: #94a3b8; background: rgba(59,130,246,0.1); display: inline-block; padding: 10px 25px; border-radius: 50px; }

/* Services */
.services { padding: 80px 20px; background: #0f172a; }
.services h2 { text-align: center; font-size: 2rem; color: #fff; margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; }
.service-card { background: #1e293b; padding: 30px; border-radius: 12px; position: relative; }
.service-card .num { position: absolute; top: 20px; right: 20px; font-size: 2rem; font-weight: 800; color: #3b82f6; opacity: 0.3; }
.service-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.service-card p { color: #94a3b8; font-size: 0.95rem; }

/* Reviews */
.reviews { padding: 80px 20px; background: #1e293b; }
.reviews h2 { text-align: center; font-size: 2rem; color: #fff; margin-bottom: 50px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.review-card { background: #0f172a; padding: 30px; border-radius: 12px; border-top: 3px solid #3b82f6; }
.stars { color: #3b82f6; margin-bottom: 15px; }
.review-card p { color: #cbd5e1; margin-bottom: 15px; font-style: italic; }
.review-card span { color: #64748b; font-size: 0.9rem; }

/* Hours */
.hours-section { padding: 80px 20px; background: #3b82f6; }
.hours-section h2 { text-align: center; font-size: 2rem; color: #fff; margin-bottom: 50px; }
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 700px; margin: 0 auto; }
.hours-card { background: #0f172a; padding: 30px; border-radius: 12px; text-align: center; }
.hours-card h3 { color: #3b82f6; margin-bottom: 10px; }
.hours-card .days { color: #64748b; font-size: 0.9rem; }
.hours-card .time { color: #fff; font-size: 1.3rem; font-weight: 700; }

/* Location */
.location { padding: 80px 20px; background: #0f172a; }
.location h2 { text-align: center; font-size: 2rem; color: #fff; margin-bottom: 50px; }
.location-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.info-item { margin-bottom: 25px; }
.info-item h4 { color: #3b82f6; font-size: 0.85rem; text-transform: uppercase; margin-bottom: 8px; }
.info-item p { color: #e2e8f0; }
.info-item a { color: #3b82f6; text-decoration: none; }
.map-wrapper { border-radius: 12px; overflow: hidden; }

/* CTA */
.cta { padding: 80px 20px; background: #1e293b; text-align: center; }
.cta h2 { font-size: 2rem; color: #fff; margin-bottom: 15px; }
.cta p { color: #94a3b8; margin-bottom: 30px; }

footer { background: #0f172a; color: #64748b; padding: 25px 20px; text-align: center; border-top: 1px solid #1e293b; }
footer a { color: #3b82f6; text-decoration: none; }

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero h1 { font-size: 2rem; }
    .location-grid { grid-template-columns: 1fr; }
}