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

/* Navigation */
.navbar { background: #fff; padding: 15px 20px; position: fixed; width: 100%; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-container { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { color: #1a1a1a; text-decoration: none; font-weight: 700; font-size: 1.2rem; }
.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-menu a { color: #1a1a1a; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-menu a:hover { color: #f59e0b; }
.nav-cta { background: #f59e0b; color: #000; padding: 10px 20px; text-decoration: none; font-weight: 700; border-radius: 6px; }
.nav-cta:hover { background: #d97706; }

/* Hero */
.hero { background: #f59e0b; padding: 120px 20px 80px; text-align: center; }
.hero-inner { max-width: 700px; margin: 0 auto; }
.hero-badge { display: inline-block; background: #000; color: #fff; padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; margin-bottom: 20px; }
.hero h1 { font-size: 2.8rem; font-weight: 700; margin-bottom: 20px; color: #000; }
.hero p { font-size: 1.2rem; color: #333; margin-bottom: 30px; }
.btn-primary { display: inline-block; background: #000; color: #f59e0b; padding: 18px 36px; text-decoration: none; font-weight: 700; font-size: 1.15rem; border-radius: 8px; transition: all 0.2s; }
.btn-primary:hover { background: #222; transform: translateY(-2px); }
.btn-large { padding: 20px 40px; font-size: 1.2rem; }
.hero-hours { margin-top: 25px; font-size: 1rem; color: #333; background: rgba(0,0,0,0.1); display: inline-block; padding: 10px 25px; border-radius: 50px; }

/* Services */
.services { padding: 80px 20px; background: #fff; }
.services h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.service-card { background: #fef3c7; padding: 30px; border-radius: 12px; text-align: center; }
.service-icon { font-size: 2.5rem; margin-bottom: 15px; }
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card p { color: #666; font-size: 0.95rem; }

/* Reviews */
.reviews { padding: 80px 20px; background: #f9fafb; }
.reviews h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.review-card { background: #fff; padding: 30px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border-left: 4px solid #f59e0b; }
.stars { color: #f59e0b; font-size: 1.2rem; margin-bottom: 15px; }
.review-card p { font-size: 1rem; color: #333; margin-bottom: 15px; font-style: italic; }
.reviewer { color: #888; font-size: 0.9rem; }

/* Hours Section */
.hours-section { padding: 80px 20px; background: #000; color: #fff; }
.hours-section h2 { text-align: center; font-size: 2rem; 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: #1a1a1a; padding: 30px; border-radius: 12px; text-align: center; }
.hours-card h3 { color: #f59e0b; margin-bottom: 10px; font-size: 1.2rem; }
.hours-card .time { color: #888; font-size: 0.9rem; margin-bottom: 5px; }
.hours-card .hours { color: #fff; font-size: 1.3rem; font-weight: 700; }

/* Location */
.location { padding: 80px 20px; }
.location h2 { text-align: center; font-size: 2rem; margin-bottom: 50px; }
.location-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: start; }
.info-item { margin-bottom: 25px; }
.info-item h4 { color: #f59e0b; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 8px; }
.info-item p { font-size: 1rem; }
.info-item a { color: #f59e0b; text-decoration: none; font-weight: 600; }
.map-wrapper { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.map-wrapper iframe { display: block; }

/* CTA */
.cta { padding: 80px 20px; background: #f59e0b; text-align: center; }
.cta h2 { font-size: 2rem; margin-bottom: 15px; }
.cta p { font-size: 1.1rem; margin-bottom: 30px; color: #333; }
.cta .btn-primary { background: #000; color: #f59e0b; }

/* Footer */
footer { background: #1a1a1a; color: #888; padding: 25px 20px; text-align: center; }
footer a { color: #f59e0b; text-decoration: none; }

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