/* ── Hero ── */
.hero {
  background: #f5f7fa;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  color: var(--navy);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107,189,227,0.18);
  border: 1px solid rgba(107,189,227,0.45);
  border-radius: 24px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}

.hero h1 { color: var(--navy); margin-bottom: 20px; max-width: 14ch; }
.hero h1 span { color: var(--blue); }

.hero-sub {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 40px;
  max-width: 48ch;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-van {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-van img {
  width: 100%;
  max-width: 640px;
  height: auto;
  display: block;
}

/* ── Hero Form ── */
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 460px;
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-form input,
.hero-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--navy);
  background: #f8fafc;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s;
}

.hero-form input:focus,
.hero-form select:focus {
  border-color: var(--blue);
  background: #fff;
}

.hero-form-note {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  text-align: center;
}

.hero-form-note a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px 0;
  }
  .hero-actions { justify-content: center; }
  .hero-form { max-width: 100%; }
  .hero-van { margin-top: 24px; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: 0;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(107,189,227,0.2);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid rgba(107,189,227,0.15);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 1.8rem; flex-shrink: 0; }
.trust-text strong { display: block; font-size: 1.1rem; font-weight: 700; color: var(--blue); }
.trust-text span { font-size: 0.8rem; opacity: 0.7; }

/* ── Services Overview ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  height: 420px;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.service-card-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 35%, rgba(10,20,50,0.82) 65%, rgba(10,20,55,0.97) 100%);
}
.service-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}
.service-card-body h3 { color: #fff; margin-bottom: 10px; font-size: 1.4rem; }
.service-card-body p { color: rgba(255,255,255,0.82); font-size: 0.92rem; margin-bottom: 20px; line-height: 1.6; }
.service-card-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Why Choose ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(107,189,227,0.12);
  border: 1px solid rgba(107,189,227,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.why-text h4 { font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.why-text p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.65; }

/* ── Testimonials ── */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 4rem;
  color: var(--blue);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}
.review-stars { margin-bottom: 12px; }
.review-text { font-size: 0.92rem; color: var(--gray-text); line-height: 1.75; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem;
}
.review-author-info strong { display: block; font-size: 0.9rem; color: var(--navy); }
.review-author-info span { font-size: 0.78rem; color: var(--gray-text); }

.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding: 16px 28px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 40px;
  box-shadow: var(--shadow);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.google-badge .g-logo { font-size: 1.4rem; font-weight: 800; color: #4285f4; font-family: Georgia, serif; }
.google-badge span { font-size: 0.9rem; font-weight: 600; color: var(--navy); }

/* ── Gallery Preview ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}

.gallery-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}
.gallery-thumb:hover { opacity: 0.85; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.gallery-thumb .label {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.4);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.gallery-cta { text-align: center; margin-top: 32px; }

/* ── CTA Banner ── */
.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

@media (max-width: 900px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }
}
