/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #0c1f3d;
  --blue:    #2563eb;
  --blue-lt: #93c5fd;
  --amber:   #f59e0b;
  --bg:      #f8fafc;
  --slate:   #475569;
  --slate-lt:#64748b;
  --border:  #e2e8f0;
  --blue-bg: #eff6ff;
  --red:     #ef4444;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--slate);
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.brand-name strong { font-size: 1.1rem; letter-spacing: 0.08em; }

.brand-sub {
  font-size: 0.65rem;
  font-variant: small-caps;
  color: var(--blue-lt);
  letter-spacing: 0.12em;
}

.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
}

.phone-number {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--amber);
}

.phone-label {
  font-size: 0.68rem;
  color: var(--blue-lt);
  letter-spacing: 0.05em;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.25rem 4rem;
  width: 100%;
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin-left: max(1.25rem, calc(50vw - 550px));
}

.badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-sub {
  color: var(--blue-lt);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-primary {
  background: var(--amber);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  display: inline-block;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-primary:hover { background: #d97706; }

.btn-ghost {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 6px;
  display: inline-block;
  transition: border-color 0.2s;
}

.btn-ghost:hover { border-color: #fff; }

.hero-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: #1e3a6e;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10%;
}

/* ── Trust Bar ────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--bg);
  border-top: 3px solid var(--blue);
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.trust-stat {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--slate-lt);
  margin-top: 0.25rem;
}

/* ── Services ─────────────────────────────────────────────────────────────── */
.services {
  padding: 4rem 0;
  background: #fff;
}

.section-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
}

.service-card.service-emergency {
  border-top-color: var(--red);
}

.service-icon {
  background: var(--blue-bg);
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-icon--red { background: #fef2f2; }

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.service-card p { font-size: 0.92rem; }

/* ── Reviews ──────────────────────────────────────────────────────────────── */
.reviews {
  background: var(--blue-bg);
  padding: 4rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.stars {
  color: var(--amber);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.review-quote {
  font-style: italic;
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
  line-height: 1.7;
}

.reviewer { font-size: 0.88rem; color: var(--navy); }

/* ── About ────────────────────────────────────────────────────────────────── */
.about { padding: 4rem 0; background: #fff; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.about-text p { margin-bottom: 1.25rem; }

.service-area {
  display: inline-block;
  background: var(--blue-bg);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  line-height: 1.5;
}

.about-photo {
  background: var(--navy);
  border-radius: 8px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-lt);
  font-size: 0.9rem;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq { padding: 4rem 0; background: var(--bg); }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
}

.faq-toggle {
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.open { max-height: 300px; }

.faq-answer p {
  padding-bottom: 1.1rem;
  color: var(--slate);
  font-size: 0.95rem;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #fff; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 1.25rem;
}

.footer-col h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 1rem;
}

.footer-phone {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 0.5rem;
}

.footer-col p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 0.3rem; }

.footer-col ul li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  padding: 0.2rem 0;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.25rem;
}

.footer-copy p { font-size: 0.8rem; color: var(--slate); text-align: center; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .hero { min-height: auto; }

  .hero-content {
    padding: 3rem 1.25rem 14rem;
    margin-left: 0;
    max-width: 100%;
  }

  .hero-panel {
    width: 100%;
    height: 200px;
    top: auto;
    bottom: 0;
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 100%);
  }

  .services-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .about-inner { grid-template-columns: 1fr; }
  .about-photo { min-height: 160px; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .btn-primary { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .trust-inner { gap: 1.5rem; }
  .trust-item { min-width: 80px; }
}
