:root {
  --primary-color: #0886dc;
  --secondary-color: #ff5c5c;
  --dark-color: #0b2139;
  --light-color: #f8f9fa;
  --gradient-bg: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
}

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.7;
  color: #1f2937;
}

.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand img { height: 56px; width: auto; }

.navbar-nav .nav-link {
  font-weight: 600;
  margin: 0 6px;
  color: var(--dark-color) !important;
  white-space: nowrap;
}

.navbar-nav {
  flex-wrap: nowrap;
}

.navbar-nav .nav-link:hover { color: var(--primary-color) !important; }

.btn-call {
  background: var(--gradient-bg);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-call:hover { transform: translateY(-1px); color: #fff; }

/* Mobile nav spacing (collapse at <xl) */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    padding: 12px 0 26px; /* extra bottom space for Call Us button */
  }

  /* Make the Call Us button full-width inside the collapsed menu */
  .navbar .btn-call {
    width: 100%;
  }
}

.page-hero {
  padding: 110px 0 50px;
  background: linear-gradient(rgba(8, 134, 220, 0.88), rgba(11, 33, 57, 0.88));
  color: #fff;
}

.page-hero h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section {
  padding: 60px 0;
}

.card-soft {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.footer {
  background: var(--gradient-bg);
  color: #fff;
  text-align: center;
  padding: 40px 0;
}

.footer img { max-width: 250px; margin-bottom: 16px; }

.small-muted { color: rgba(255,255,255,0.8); }

/* Images */
img { max-width: 100%; height: auto; }

/* Accessibility */
:focus-visible { outline: 3px solid rgba(8,134,220,0.5); outline-offset: 3px; }

/* Icon badges (services page, etc.) */
.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 134, 220, 0.12);
  color: var(--primary-color);
  font-size: 1.35rem;
  flex: 0 0 auto;
}

/* Service tiles (services.html) */
.service-tile {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-tile__head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.service-tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 134, 220, 0.12);
  color: var(--primary-color);
  flex: 0 0 auto;
}

.service-tile__title {
  margin: 0;
  font-weight: 800;
  font-size: 1.05rem;
}

.service-tile__list {
  margin: 0;
  padding-left: 18px;
  color: rgba(31, 41, 55, 0.9);
  line-height: 1.55;
}

.service-tile__footer {
  margin-top: auto;
}

/* Global button standardization (override Bootstrap colors to match brand) */
.btn-primary {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  font-weight: 600;
  border-radius: 999px;
}

.btn-primary:hover,
.btn-primary:focus {
  filter: brightness(0.95);
}

.btn-outline-primary {
  border-color: var(--secondary-color) !important;
  color: var(--secondary-color) !important;
  font-weight: 600;
  border-radius: 999px;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: #fff !important;
}

/* Trust strip below hero */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-strip__inner {
  padding: 14px 0;
}

.trust-strip__item {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-weight: 600;
  text-align: center;
}

.trust-strip__icon {
  color: var(--secondary-color);
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 10px 0;
}

/* About page testimonial */
.testimonial-meta {
  margin-top: 10px;
  padding-top: 6px;
}

.sticky-cta__inner {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.sticky-cta__inner {
  width: 100%;
}

.sticky-cta__inner .btn {
  flex: 1 1 200px;
  max-width: 260px;
}

/* Give room at the bottom so content doesn't hide behind the sticky CTA */
body { padding-bottom: 72px; }

@media (min-width: 992px) {
  body { padding-bottom: 78px; }
  .sticky-cta__inner { justify-content: flex-end; }
}
