/* MVA Quality Roofing & Landscaping - Main Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; line-height: 1.6; color: #333; background: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: #c53030; text-decoration: none; }
a:hover { color: #9b2c2c; }
img { max-width: 100%; height: auto; }

/* Header */
.site-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.logo img { max-height: 60px; width: auto; }

/* Navigation */
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { list-style: none; display: flex; gap: 5px; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu a { color: #333; font-weight: 500; padding: 10px 15px; display: block; border-radius: 4px; transition: all 0.3s; }
.nav-menu a:hover { background: #c53030; color: #fff; text-decoration: none; }
.sub-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; list-style: none; min-width: 180px; box-shadow: 0 4px 10px rgba(0,0,0,0.15); border-radius: 5px; padding: 10px 0; }
.nav-menu li:hover > .sub-menu { display: block; }
.sub-menu a { padding: 10px 20px; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 15px; }
.phone-link { font-weight: 600; color: #c53030; }
.btn { display: inline-block; padding: 10px 25px; border-radius: 5px; font-weight: 600; text-align: center; transition: all 0.3s; }
.btn-red { background: #c53030; color: #fff; }
.btn-red:hover { background: #9b2c2c; color: #fff; }
.btn-outline { background: transparent; border: 2px solid #c53030; color: #c53030; }
.btn-outline:hover { background: #c53030; color: #fff; }

/* Sections */
section { padding: 60px 0; }
h1, h2, h3 { margin-bottom: 1rem; font-weight: 700; }
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
.text-center { text-align: center; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: #f7f7f7; border-radius: 8px; padding: 30px; transition: transform 0.3s, box-shadow 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.service-card ul { list-style: none; }
.service-card li { padding: 8px 0; border-bottom: 1px solid #eee; }
.service-card li:last-child { border-bottom: none; }

/* Cities Grid */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; }
.cities-grid > div { background: #fff; padding: 15px; border-radius: 5px; transition: all 0.3s; }
.cities-grid > div:hover { background: #c53030; }
.cities-grid > div:hover a { color: #fff; }

/* Footer */
footer { background: #1a1a1a; color: #fff; padding: 50px 0; }
footer a { color: #fff; text-decoration: underline; }
footer a:hover { color: #c53030; }
.footer-logo img { filter: brightness(0) invert(1); }
.footer-info p { margin-bottom: 10px; }
.footer-links { border-top: 1px solid #333; padding-top: 20px; margin-top: 30px; }

/* Utility */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-2 { margin-top: 20px; }

/* Responsive */
@media (max-width: 768px) {
    .header-inner { flex-direction: column; text-align: center; }
    .main-nav { order: 3; width: 100%; }
    .nav-menu { flex-direction: column; text-align: center; }
    .sub-menu { position: static; box-shadow: none; }
    .header-cta { flex-direction: column; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
}
