:root {
  --blue: #0A3D91;
  --blue-dark: #062A63;
  --red: #F72535;
  --red-dark: #B90E1C;
  --green: #118C4F;
  --yellow: #FFC43D;
  --ink: #172033;
  --muted: #64748B;
  --soft: #F4F8FC;
  --white: #FFFFFF;
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

.top-strip {
  background: var(--blue-dark);
  color: var(--white);
  font-size: 14px;
  padding: 10px 0;
}

.top-strip a {
  color: var(--yellow);
  font-weight: 700;
}

.top-strip i {
  color: var(--yellow);
  margin-right: 6px;
}

.site-nav {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 61, 145, .08);
}

.navbar-brand img {
  width: 205px;
  max-height: 64px;
}

.nav-link {
  color: var(--ink);
  font-weight: 700;
  margin: 0 6px;
}

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

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 22px;
}

.btn-brand {
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
}

.btn-brand:hover {
  color: var(--white);
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline-brand {
  color: var(--blue);
  background: transparent;
  border: 2px solid var(--blue);
}

.btn-outline-brand:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

.btn-light-brand {
  color: var(--blue-dark);
  background: var(--white);
  border: 2px solid var(--white);
}

.hero-section {
  position: relative;
  padding: 96px 0 82px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .13;
  z-index: 0;
}

.shape-one {
  width: 380px;
  height: 380px;
  background: var(--red);
  top: -120px;
  right: -80px;
}

.shape-two {
  width: 300px;
  height: 300px;
  background: var(--blue);
  bottom: -100px;
  left: -80px;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--red);
  background: rgba(247, 37, 53, .09);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 12px;
}

.eyebrow-light {
  color: var(--yellow);
  background: rgba(255,255,255,.12);
}

.hero-title {
  font-size: clamp(42px, 6vw, 76px);
  line-height: .96;
  font-weight: 900;
  color: var(--blue-dark);
  margin: 22px 0;
}

.hero-copy,
.section-copy,
.center-heading p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.trust-row div {
  background: var(--soft);
  border: 1px solid rgba(10, 61, 145, .08);
  border-radius: 18px;
  padding: 16px;
}

.trust-row strong {
  display: block;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
  background: var(--soft);
}

.hero-card img,
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--blue-dark);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 800;
  border: 1px solid rgba(10, 61, 145, .08);
}

.floating-card i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--red);
  color: white;
}

.card-top {
  top: 24px;
  left: 24px;
}

.card-bottom {
  bottom: 24px;
  right: 24px;
}

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

.bg-soft {
  background: var(--soft);
}

.bg-deep {
  background: radial-gradient(circle at top left, #0E55C7 0%, var(--blue-dark) 44%, #041A3E 100%);
}

.section-title {
  color: var(--blue-dark);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.06;
  margin: 16px 0;
}

.bg-deep .section-title,
.contact-section h2,
.site-footer h4 {
  color: var(--white);
}

.center-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.feature-card,
.service-card,
.testimonial-card {
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(10, 61, 145, .08);
  border-radius: 24px;
  padding: 28px;
  transition: .25s ease;
}

.feature-card:hover,
.service-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 37, 53, .25);
}

.feature-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 25px;
  margin-bottom: 24px;
}

.feature-card h3,
.service-card h3,
.timeline-item h3 {
  color: var(--blue-dark);
  font-size: 21px;
  font-weight: 900;
}

.feature-card p,
.service-card p,
.timeline-item p,
.testimonial-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card span {
  display: inline-flex;
  color: var(--red);
  background: rgba(247, 37, 53, .09);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 900;
  margin-bottom: 24px;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.job-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 24px;
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
}

.job-pill i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--yellow);
  color: var(--blue-dark);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.timeline-item {
  background: var(--white);
  border: 1px solid rgba(10, 61, 145, .08);
  border-radius: 24px;
  padding: 26px;
}

.timeline-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 22px;
  margin-bottom: 20px;
}

.about-img {
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
}

.values-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.values-list div {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 800;
  color: var(--blue-dark);
}

.values-list i {
  color: var(--green);
  font-size: 22px;
}

.testimonial-card i {
  color: var(--red);
  font-size: 42px;
}

.testimonial-card strong {
  color: var(--blue);
}

.contact-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
  padding: 90px 0;
}

.contact-panel {
  background: var(--blue-dark);
  color: var(--white);
  border-radius: 34px;
  padding: clamp(28px, 5vw, 58px);
  position: relative;
  overflow: hidden;
}

.contact-panel::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: var(--red);
  opacity: .18;
  border-radius: 50%;
  right: -90px;
  top: -80px;
}

.contact-panel > .row {
  position: relative;
  z-index: 1;
}

.contact-panel p {
  color: rgba(255,255,255,.78);
  line-height: 1.7;
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-info a,
.contact-info span {
  color: var(--white);
  display: flex;
  gap: 10px;
  align-items: center;
}

.lead-form {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  color: var(--ink);
}

.lead-form label {
  font-weight: 800;
  margin-bottom: 8px;
}

.form-control,
.form-select {
  border-radius: 16px;
  border: 1px solid #D8E2EF;
  padding: 13px 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 .2rem rgba(10, 61, 145, .12);
}

.site-footer {
  background: #031839;
  color: var(--white);
  padding: 70px 0 26px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 18px;
}

.site-footer a {
  display: block;
  color: rgba(255,255,255,.72);
  margin-bottom: 10px;
}

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

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  width: 58px;
  height: 58px;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 28px;
  z-index: 20;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .hero-section {
    padding: 70px 0;
  }

  .hero-card,
  .about-img {
    min-height: auto;
    height: 420px;
  }

  .timeline,
  .job-grid {
    grid-template-columns: 1fr 1fr;
  }

  .navbar-brand img {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 64px 0;
  }

  .trust-row,
  .timeline,
  .job-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
  }

  .hero-card {
    padding: 12px;
    background: var(--white);
  }

  .hero-card img {
    height: 330px;
    border-radius: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
