:root {
  --primary: #1B3A5C;
  --primary-dark: #122741;
  --accent: #E8622C;
  --bg: #FFFFFF;
  --surface: #F4F6F8;
  --text: #1A2332;
  --text-light: #5A6B7E;
  --border: #E2E8F0;
  --radius: 12px;
  --max-width: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Heebo', system-ui, -apple-system, sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  width: 100%;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); }
h1, h2, h3 { line-height: 1.4; font-weight: 800; }
h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--primary); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 56px 0; }
section:nth-of-type(even) { background: var(--surface); }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px; gap: 16px;
}
.site-header .logo { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--primary); text-decoration: none; }
.site-header .logo img { height: 44px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { text-decoration: none; color: var(--text); font-weight: 600; }
.site-nav a:hover { color: var(--primary); }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: #fff; padding: 10px 18px;
  border-radius: var(--radius); text-decoration: none; font-weight: 700;
}
.header-phone:hover { background: var(--primary-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 28px; height: 28px; color: var(--primary); }

@media (max-width: 860px) {
  .site-nav { position: fixed; inset: 0 0 0 auto; width: 78vw; max-width: 320px;
    background: #fff; flex-direction: column; align-items: flex-start; padding: 88px 24px 24px;
    transform: translateX(100%); transition: transform .25s ease; box-shadow: -6px 0 20px rgba(0,0,0,.15);
  }
  .site-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; }
}

/* Hero */
.hero { padding: 72px 0 56px; background: linear-gradient(180deg, var(--surface), #fff); }
.hero .container { display: grid; gap: 32px; align-items: center; }
.hero h1 { margin-bottom: 14px; }
.hero .subtitle { font-size: 1.15rem; color: var(--text-light); margin-bottom: 24px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: var(--radius); font-weight: 700;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; font-size: 1rem;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #c94f21; }
.btn-outline { background: #fff; border-color: var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--surface); }
.hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,.12); }

/* Contacts strip */
.contacts-strip { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 18px; }
.contacts-strip .contact-item { font-size: .98rem; color: var(--text-light); }
.contacts-strip a { color: var(--primary); font-weight: 700; text-decoration: none; }

/* Lists */
ul.check-list, ul.plain-list { list-style: none; }
ul.check-list li { position: relative; padding-inline-start: 28px; margin-bottom: 10px; }
ul.check-list li::before { content: "✔"; position: absolute; right: 0; color: var(--accent); font-weight: 800; }
ul.plain-list li { position: relative; padding-inline-start: 22px; margin-bottom: 8px; }
ul.plain-list li::before { content: "•"; position: absolute; right: 0; color: var(--primary); font-weight: 800; }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 800px) { .grid-2 { grid-template-columns: 1fr 1fr; } }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 24px; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.info-card h3 { color: var(--primary); margin-bottom: 8px; font-size: 1.05rem; }

.section-photo { border-radius: var(--radius); overflow: hidden; }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 24px; }
.why-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.why-item svg { width: 34px; height: 34px; color: var(--accent); margin-bottom: 10px; }

/* Contact form */
.contact-section { background: var(--surface); }
.contact-wrap { display: grid; gap: 32px; }
@media (min-width: 800px) { .contact-wrap { grid-template-columns: 1fr 1fr; } }
.contact-form-box { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: .92rem; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.contact-form-box button[type="submit"] {
  width: 100%; padding: 14px; background: var(--accent); color: #fff; border: none;
  border-radius: var(--radius); font-weight: 700; font-size: 1.05rem; cursor: pointer;
}
.contact-form-box button[type="submit"]:hover { background: #c94f21; }
.contact-form-box button[disabled] { opacity: .6; cursor: not-allowed; }
.contact-cta-note { margin-top: 14px; font-weight: 700; color: var(--primary); text-align: center; }

/* GMB reviews container fallback spacing handled by widget CSS injected at runtime */
.gmb-reviews { margin-top: 8px; }

/* Footer */
.site-footer { background: var(--primary-dark); color: #e7edf3; padding: 48px 0 20px; }
.footer-content { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.footer-content h3, .footer-content h4 { color: #fff; margin-bottom: 10px; }
.footer-content p { color: #c3cede; margin-bottom: 6px; }
.footer-content a { color: #cfe0f0; text-decoration: none; }
.footer-content a:hover { text-decoration: underline; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-copy { text-align: center; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); color: #9fb0c4; font-size: .9rem; }

/* FAB */
.fab-container {
  position: fixed; bottom: 24px; left: 24px; z-index: 2147483000;
  display: flex; flex-direction: column; gap: 12px; pointer-events: none;
}
.fab {
  pointer-events: auto; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25); transition: transform 0.2s, box-shadow 0.2s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.fab:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.fab.wa { background: #25D366; }
.fab.call { background: var(--primary); }
.fab svg { width: 28px; height: 28px; fill: white; }
@media (max-width: 480px) {
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 24px; height: 24px; }
}
@media print { .fab-container { display: none; } }

/* Thanks page */
.thanks-page { text-align: center; padding: 96px 24px; }
.thanks-page h1 { color: var(--primary); margin-bottom: 16px; }
.thanks-page .contacts-strip { justify-content: center; margin-top: 28px; }
