:root {
  --primary-red: #d90429;
  --primary-red-hover: #ef233c;
  --dark-blue: #1b365d;
  --dark-slate: #0f172a;
  --light-bg: #f8fafc;
  --card-bg: #ffffff;
  --border-color: #cbd5e1;
  --text-main: #0f172a;
  --text-muted: #475569;
  --max-width: 1140px;
  --font-family: Inter, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  background: var(--light-bg);
  color: var(--text-main);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

.top-bar {
  background: var(--dark-slate);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 2px solid var(--primary-red);
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.license-info { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.license-badge, .insurance-badge {
  color: #fff;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.75rem;
}
.license-badge { background: var(--primary-red); }
.insurance-badge { background: #15803d; }
.top-contacts { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.top-phone, .top-email { color: #fff; text-decoration: none; font-weight: 600; }
.top-phone:hover, .top-email:hover { color: #ff4d6d; }

.header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
}
.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-title { font-size: 1.25rem; font-weight: 800; color: var(--dark-blue); }
.llc { font-size: 0.85rem; color: var(--primary-red); }
.logo-subtitle { font-size: 0.7rem; font-weight: 700; color: var(--primary-red); letter-spacing: 0.04em; }
.nav-menu { display: flex; align-items: center; list-style: none; gap: 1.25rem; }
.nav-link { text-decoration: none; color: var(--dark-slate); font-weight: 600; }
.nav-link:hover, .nav-link.active { color: var(--primary-red); }
.btn-nav {
  background: var(--primary-red);
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
}
.btn-nav:hover { background: var(--primary-red-hover); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, #1b365d 0%, #0f172a 100%);
  color: #fff;
  padding: 4.5rem 0;
  text-align: center;
}
.hero.page-hero { padding: 3rem 0; }
.badge {
  display: inline-block;
  background: rgba(217, 4, 41, 0.25);
  color: #ff4d6d;
  border: 1px solid var(--primary-red);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.hero h1 { font-size: 2.75rem; font-weight: 800; line-height: 1.15; margin-bottom: 0.75rem; }
.hero-tagline { font-size: 1.25rem; color: #93c5fd; font-weight: 600; margin-bottom: 0.5rem; }
.hero-promise { font-size: 1.4rem; color: #ff4d6d; font-weight: 800; margin-bottom: 2rem; }
.hero-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 0.375rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: 0.2s;
}
.btn-primary { background: var(--primary-red); color: #fff; }
.btn-primary:hover { background: var(--primary-red-hover); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #64748b; }
.btn-secondary:hover { border-color: #fff; }
.btn-full { width: 100%; }

.credentials-bar {
  background: var(--dark-blue);
  color: #fff;
  padding: 1.25rem 0;
}
.credentials-flex {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}
.cred-item strong { display: block; font-size: 0.8rem; text-transform: uppercase; color: #93c5fd; }
.cred-item span { font-size: 1.05rem; font-weight: 700; }

.section { padding: 4.5rem 0; }
.section-header { text-align: center; max-width: 650px; margin: 0 auto 3rem; }
.section-header h2 { font-size: 2.1rem; color: var(--dark-blue); margin-bottom: 0.5rem; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.04);
}
.card-body { padding: 1.5rem; }
.card h3 { font-size: 1.15rem; color: var(--dark-blue); margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; }
.photo-slot {
  height: 180px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  font-weight: 700;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.services-banner {
  margin-top: 3rem;
  background: var(--dark-blue);
  color: #fff;
  text-align: center;
  padding: 2.5rem;
  border-radius: 0.5rem;
  border-left: 6px solid var(--primary-red);
}
.services-banner p { color: #cbd5e1; margin: 0.5rem 0 1.5rem; }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.lead { font-weight: 700; color: var(--primary-red); margin: 0.5rem 0 1rem; }
.about-list { list-style: none; margin-top: 1rem; }
.about-list li { margin-bottom: 0.85rem; padding-left: 1.5rem; position: relative; }
.about-list li::before { content: "✓"; color: var(--primary-red); font-weight: bold; position: absolute; left: 0; }
.card-highlight {
  background: #fff;
  border: 2px solid var(--dark-blue);
  padding: 2rem;
  border-radius: 0.5rem;
}
.btn-fb { background: #1877f2; color: #fff; margin-top: 1rem; }
.btn-fb:hover { background: #166fe5; }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 2.5rem;
}
.info-item { margin-bottom: 1.15rem; }
.info-item strong { display: block; font-size: 0.9rem; }
.info-item a { color: var(--primary-red); text-decoration: none; font-weight: 700; }
.call-card {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 0.5rem;
  border: 1px solid var(--border-color);
}
.btn-call { background: var(--dark-blue); color: #fff; display: block; text-align: center; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  font-family: inherit;
  font-size: 0.95rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: 2px solid var(--primary-red);
  border-color: transparent;
}
.form-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }

.footer {
  background: var(--dark-slate);
  color: #94a3b8;
  padding: 2.5rem 0;
  text-align: center;
  border-top: 3px solid var(--primary-red);
}
.footer-title { color: #fff; font-size: 1.2rem; font-weight: 800; }
.footer-subtitle { color: #ff4d6d; font-weight: 700; font-size: 0.85rem; }
.footer-address { font-size: 0.85rem; color: #93c5fd; margin: 0.35rem 0; }
.footer-licenses { font-size: 0.8rem; color: #cbd5e1; }
.copyright { margin-top: 1.25rem; font-size: 0.8rem; }
.footer-nav { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin: 1rem 0; }
.footer-nav a { color: #cbd5e1; text-decoration: none; font-weight: 600; }
.footer-nav a:hover { color: #fff; }

@media (max-width: 768px) {
  .top-bar-content { justify-content: center; text-align: center; }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    border-bottom: 2px solid var(--border-color);
    padding: 1.5rem;
  }
  .nav-menu.active { display: flex; }
  .hero h1 { font-size: 2rem; }
  .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
}

.cities { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.city-pill {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-blue);
}
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.faq summary { font-weight: 700; color: var(--dark-blue); cursor: pointer; }
.faq details p { margin-top: 0.75rem; color: var(--text-muted); }

.card-link { text-decoration: none; color: inherit; display: block; }
.card-link:hover .card { transform: translateY(-3px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08); }
.photo-cover {
  height: 200px;
  width: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.album-grid a {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #fff;
}
.album-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.video-tile {
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #0f172a;
}
.video-tile video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; }
.how-to {
  background: #fff;
  border: 1px dashed var(--border-color);
  border-radius: 0.5rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.media-tile {
  margin: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #fff;
}
.media-tile a { display: block; }
.media-caption {
  margin: 0;
  padding: 0.65rem 0.85rem 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
}


.about-media {
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #fff;
}
.about-media img,
.about-media video {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}
.about-media video { display: none; }
.about-media .photo-slot {
  height: 200px;
}


.google-review { margin: 1rem 0; }
.btn-google {
  background: #188038;
  color: #fff;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.btn-google:hover { background: #137333; }
.qr-link { display: block; }
.qr-code {
  width: 160px;
  height: 160px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 0.375rem;
  padding: 0.35rem;
}


.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


.human-box-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  cursor: pointer;
}
.human-box-label input {
  width: 1.15rem;
  height: 1.15rem;
}


.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.hero-logo {
  height: 140px;
  width: auto;
  margin: 0 auto 1.25rem;
  display: block;
  background: #fff;
  border-radius: 50%;
  padding: 0.5rem;
}
.footer-logo {
  height: 88px;
  width: auto;
  margin: 0 auto 0.75rem;
  display: block;
  background: #fff;
  border-radius: 50%;
  padding: 0.4rem;
}
@media (max-width: 768px) {
  .logo-img { height: 44px; }
  .hero-logo { height: 110px; }
}
