:root{
  --brand-blue:#0B4AA2;
  --brand-red:#E53935;
  --brand-yellow:#F2B705;

  --ink:#0f172a;
  --muted:#64748b;
  --bg:#ffffff;
  --soft:#f6f8fc;

  --radius:18px;
  --shadow: 0 18px 50px rgba(2, 6, 23, .10);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a{ text-decoration:none; }
.section{ padding: 80px 0; }
.section-soft{ background: var(--soft); }
.section-title{ margin-bottom: 22px; }
.text-accent{ color: var(--brand-red); }

.topbar{
  background: #0b1220;
  color: rgba(255,255,255,.85);
}
.topbar-link{
  color: rgba(255,255,255,.85);
}
.topbar-link:hover{ color: white; }

.navbar-glass{
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.navbar-glass.navbar-shrink{
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 25px rgba(2, 6, 23, .06);
}
.brand-logo{
  height: 38px;
  width: auto;
}

.btn-primary{
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}
.btn-primary:hover{
  background: #083a80;
  border-color: #083a80;
}
.btn-outline-primary{
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.btn-outline-primary:hover{
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn-warning{
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
  color: #1f2937;
}
.btn-warning:hover{
  filter: brightness(.95);
}

/* Hero */
.hero-section{
  position: relative;
  padding: 85px 0 40px;
  overflow: hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(11,74,162,.14), transparent 60%),
    radial-gradient(900px 500px at 80% 20%, rgba(229,57,53,.12), transparent 55%),
    radial-gradient(700px 500px at 60% 80%, rgba(242,183,5,.10), transparent 55%);
  pointer-events:none;
}
.hero-badge{
  background: rgba(11,74,162,.10);
  color: var(--brand-blue);
  border: 1px solid rgba(11,74,162,.18);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.hero-badge i{ margin-right: 6px; }

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 18px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.trust-item i{ color: var(--brand-blue); }

.hero-card{
  background: white;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.hero-card-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
}
.hero-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(229,57,53,.12);
  color: var(--brand-red);
  font-size: 20px;
}
.stat-number{
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
}
.stat-label{
  font-size: 12px;
  color: var(--muted);
}

.trust-strip{
  margin-top: 26px;
  background: white;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
}
.trust-strip-item{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.trust-strip-item i{
  color: var(--brand-blue);
  font-size: 18px;
}

/* Cards */
.service-card{
  background: white;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(2,6,23,.12);
}
.service-icon{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: rgba(11,74,162,.10);
  color: var(--brand-blue);
  font-size: 22px;
  margin-bottom: 12px;
}

.img-card{
  border-radius: 24px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15,23,42,.06);
}

.checkline{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--muted);
}
.checkline i{
  color: var(--brand-blue);
  font-size: 18px;
}

/* Features */
.feature-card{
  background: white;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
  display:flex;
  align-items:flex-start;
  gap: 12px;
  height: 100%;
}
.feature-card i{
  color: var(--brand-red);
  font-size: 22px;
}

/* Steps */
.step-card{
  background: white;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  height: 100%;
}
.step-num{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 800;
  color: #111827;
  background: rgba(242,183,5,.20);
  border: 1px solid rgba(242,183,5,.35);
  margin-bottom: 10px;
}

.callout{
  background: linear-gradient(135deg, rgba(11,74,162,.10), rgba(229,57,53,.08), rgba(242,183,5,.08));
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 24px;
  padding: 22px;
}

/* Testimonials */
.testimonial-card{
  background: white;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}
.stars i{ color: #f59e0b; margin-right: 2px; }
.avatar{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(11,74,162,.10);
  color: var(--brand-blue);
  font-weight: 700;
}

/* Contact */
.contact-card, .map-card{
  background: white;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}
.contact-link{
  color: var(--ink);
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.06);
  padding: 10px 12px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
}
.contact-link i{ color: var(--brand-blue); }

.map-header{
  padding: 24px 24px 0 24px;
}
.map-card{
  padding: 0;
  overflow:hidden;
}
.map-embed iframe{
  width: 100%;
  height: 280px;
  border: 0;
  display:block;
}

/* Footer */
.footer{
  background: #0b1220;
  padding: 56px 0 26px;
}
.footer-logo{
  height: 34px;
  width: auto;
}
.footer-links li{ margin: 8px 0; }
.footer-links a{
  color: rgba(255,255,255,.70);
}
.footer-links a:hover{
  color: white;
}
.footer-legal{
  color: rgba(255,255,255,.60);
}
.footer-legal:hover{ color: white; }

/* Back to top */
.back-to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: white;
  box-shadow: 0 12px 30px rgba(2,6,23,.12);
  display:none;
  align-items:center;
  justify-content:center;
  z-index: 1050;
}
.back-to-top i{ color: var(--brand-blue); font-size: 18px; }

/* Reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px){
  .hero-section{ padding-top: 58px; }
  .brand-logo{ height: 34px; }
}