:root {
  --blue: #0b5ed7;
  --blue-dark: #073b86;
  --blue-soft: #edf6ff;
  --ink: #152238;
  --muted: #627086;
  --line: #dbe7f5;
  --white: #ffffff;
  --success: #16a34a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-dark);
}

.topbar {
  padding: 8px 0;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 0.92rem;
}

.topbar a {
  color: var(--white);
}

.navbar {
  box-shadow: 0 8px 24px rgba(15, 54, 105, 0.08);
}

.navbar-brand {
  color: var(--blue-dark);
  font-weight: 800;
}

.nav-link {
  color: #26364f;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 18px rgba(11, 94, 215, 0.22);
}

.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-success {
  background: var(--success);
  border-color: var(--success);
}

.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 42, 95, 0.94), rgba(11, 94, 215, 0.74), rgba(11, 94, 215, 0.2)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
}

.hero h1 {
  max-width: 820px;
  margin: 14px 0 20px;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.05;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
}

.page-hero {
  padding: 86px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 42, 95, 0.95), rgba(11, 94, 215, 0.75)),
    url("https://images.unsplash.com/photo-1556761175-4b46a572b786?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.page-hero h1 {
  margin: 12px 0;
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 800;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a,
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

.trust-row {
  margin-top: -50px;
  position: relative;
  z-index: 5;
}

.trust-card,
.service-card,
.value-card,
.quote-box,
.contact-form {
  height: 100%;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(17, 53, 96, 0.1);
}

.trust-card strong {
  display: block;
  font-size: 1.05rem;
}

.trust-card span,
.service-card p,
.value-card p,
.section-copy,
.check-list li {
  color: var(--muted);
}

.section-pad {
  padding: 86px 0;
}

.section-soft {
  background: #f6faff;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  margin: 10px 0 16px;
  font-weight: 800;
  line-height: 1.18;
}

.service-card span {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}

.service-card h3,
.value-card h3,
.quote-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
}

.service-img {
  box-shadow: 0 18px 44px rgba(15, 52, 96, 0.15);
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 32px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  line-height: 22px;
  text-align: center;
  font-weight: 900;
}

.cta-band {
  padding: 64px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.cta-band h2 {
  margin-bottom: 8px;
  font-weight: 800;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.map-frame {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 8px;
}

.form-control {
  min-height: 50px;
  border-color: var(--line);
}

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.2rem rgba(11, 94, 215, 0.15);
}

.footer {
  padding: 56px 0 0;
  background: #061d42;
  color: rgba(255, 255, 255, 0.78);
}

.footer h5,
.footer h6 {
  color: var(--white);
  font-weight: 800;
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: 30px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
}

.floating-buttons {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-buttons a {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(13, 43, 84, 0.22);
}

.float-call {
  background: var(--blue);
}

.float-whatsapp {
  background: var(--success);
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding: 92px 0 120px;
  }

  .trust-row {
    margin-top: -70px;
  }

  .section-pad {
    padding: 64px 0;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: 0.84rem;
  }

  .floating-buttons {
    right: 12px;
    bottom: 12px;
  }
}
