
:root {
  --red: #C0392B;
  --navy: #1a2550;
  --light-red: #e74c3c;
  --gray: #f5f5f5;
  --text: #333;
  --white: #fff;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); line-height: 1.6; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR */
.navbar { background: var(--navy); padding: 0; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.nav-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; gap: 2rem; height: 60px; }
.logo { font-size: 1.6rem; font-weight: 800; text-decoration: none; }
.logo-mike { color: var(--red); }
.logo-can { color: var(--white); }
.nav-links { display: flex; gap: 1.2rem; flex: 1; }
.nav-links a { color: #ccc; font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); text-decoration: none; }
.nav-cta { background: var(--red); color: var(--white) !important; padding: 8px 18px; border-radius: 4px; font-weight: 700; font-size: 0.9rem; white-space: nowrap; text-decoration: none; }
.nav-cta:hover { background: var(--light-red); text-decoration: none; }

/* HERO */
.hero { background: linear-gradient(135deg, var(--navy) 0%, #2c3e6b 100%); color: var(--white); padding: 80px 20px; text-align: center; }
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; line-height: 1.2; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; color: #ccc; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-phone { font-size: 2rem; font-weight: 800; color: var(--white); background: var(--red); display: inline-block; padding: 16px 40px; border-radius: 6px; margin-bottom: 1rem; }
.hero-phone:hover { background: var(--light-red); text-decoration: none; }
.hero-sub { font-size: 0.95rem; color: #aaa; }

/* SERVICE GRID */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 60px 0; }
.service-card { background: var(--white); border: 2px solid #e0e0e0; border-radius: 8px; padding: 2rem; text-align: center; transition: border-color 0.2s, transform 0.2s; }
.service-card:hover { border-color: var(--red); transform: translateY(-3px); text-decoration: none; }
.service-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p { color: #666; font-size: 0.9rem; }

/* CTA BOX */
.cta-box { background: var(--navy); color: var(--white); padding: 40px; border-radius: 8px; text-align: center; margin: 2rem 0; }
.cta-box h2 { margin-bottom: 0.5rem; }
.cta-box p { color: #ccc; margin-bottom: 1.5rem; }
.cta-btn { display: inline-block; background: var(--red); color: var(--white); padding: 16px 36px; border-radius: 6px; font-size: 1.1rem; font-weight: 700; text-decoration: none; }
.cta-btn:hover { background: var(--light-red); text-decoration: none; }
.phone-number { font-size: 1.6rem; font-weight: 800; color: var(--white); margin-top: 1rem; display: block; }

/* CONTENT */
.content-section { padding: 60px 0; }
.content-section h2 { color: var(--navy); font-size: 1.8rem; margin-bottom: 1rem; }
.content-section h3 { color: var(--navy); font-size: 1.3rem; margin: 1.5rem 0 0.5rem; }
.content-section p { margin-bottom: 1rem; }
.content-section ul { margin: 1rem 0 1rem 2rem; }
.content-section ul li { margin-bottom: 0.5rem; }
.license-note { background: #fff8e1; border-left: 4px solid #ffc107; padding: 12px 16px; border-radius: 4px; font-size: 0.9rem; margin: 1rem 0; }

/* CITIES GRID */
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 40px 0; }
.city-card { background: var(--white); border: 1px solid #ddd; border-radius: 6px; padding: 1.2rem; text-align: center; color: var(--navy); font-weight: 600; transition: background 0.2s; }
.city-card:hover { background: var(--red); color: var(--white); text-decoration: none; }

/* PAGE HEADER */
.page-header { background: var(--navy); color: var(--white); padding: 50px 20px; text-align: center; }
.page-header h1 { font-size: 2.2rem; }
.page-header p { color: #ccc; margin-top: 0.5rem; font-size: 1.05rem; }

/* TRUST BAR */
.trust-bar { background: var(--gray); padding: 20px; text-align: center; }
.trust-bar span { margin: 0 20px; font-size: 0.9rem; color: #555; }
.trust-bar span::before { content: "✓ "; color: var(--red); font-weight: bold; }

/* BREADCRUMB */
.breadcrumb { padding: 10px 20px; font-size: 0.85rem; color: #888; background: #fafafa; border-bottom: 1px solid #eee; }
.breadcrumb a { color: var(--red); }

/* FOOTER */
.footer { background: var(--navy); color: #ccc; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer h4 { color: var(--white); margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul li a { color: #aaa; }
.footer ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #2c3e6b; padding-top: 1rem; text-align: center; font-size: 0.85rem; }
.phone-link { color: var(--red); font-weight: 700; font-size: 1.1rem; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero h1 { font-size: 1.8rem; }
  .hero-phone { font-size: 1.4rem; }
}
