:root {
  --ic-primary: #0c4a6e;
  --ic-primary-dark: #082f49;
  --ic-primary-light: #0ea5e9;
  --ic-accent: #ea580c;
  --ic-accent-soft: #fed7aa;
  --ic-surface: #ffffff;
  --ic-surface-alt: #f1f5f9;
  --ic-text: #0f172a;
  --ic-text-muted: #475569;
  --ic-hero-overlay: 0.55;
  --ic-navbar-height: 76px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .carousel .carousel-item {
    transition: none;
  }
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ic-text);
  background: var(--ic-surface-alt);
}

.navbar-icmant {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.navbar-icmant .nav-link {
  font-weight: 500;
  color: var(--ic-text) !important;
  padding: 0.5rem 1rem !important;
}

.navbar-icmant .nav-link:hover,
.navbar-icmant .nav-link:focus {
  color: var(--ic-primary) !important;
}

.brand-logo {
  height: 44px;
  width: auto;
}

.hero-carousel {
  min-height: min(88vh, 820px);
}

.hero-carousel .carousel-item {
  min-height: min(88vh, 820px);
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(8, 47, 73, var(--ic-hero-overlay)) 0%,
    rgba(12, 74, 110, calc(var(--ic-hero-overlay) * 0.85)) 45%,
    rgba(15, 23, 42, calc(var(--ic-hero-overlay) * 0.75)) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--ic-navbar-height);
}

.hero-carousel .carousel-caption {
  position: static;
  padding: 0;
  max-width: 720px;
}

.display-hero {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lead-hero {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
}

.btn-accent {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--ic-accent);
  --bs-btn-border-color: var(--ic-accent);
  --bs-btn-hover-bg: #c2410c;
  --bs-btn-hover-border-color: #c2410c;
  --bs-btn-focus-shadow-rgb: 234, 88, 12;
  --bs-btn-active-bg: #9a3412;
  --bs-btn-active-border-color: #9a3412;
}

.btn-outline-hero {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255, 255, 255, 0.65);
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.12);
  --bs-btn-hover-border-color: #fff;
}

.section-padding {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.section-title {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ic-primary-dark);
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ic-primary);
}

.card-service {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.card-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12, 74, 110, 0.12);
}

.card-service img {
  width: 64px;
  height: 64px;
}

.icon-check {
  color: var(--ic-primary);
}

.quote-block {
  border-left: 4px solid var(--ic-accent);
  padding-left: 1.25rem;
  font-style: italic;
  color: var(--ic-text-muted);
}

.footer-icmant {
  background: var(--ic-primary-dark);
  color: rgba(255, 255, 255, 0.88);
}

.footer-icmant a {
  color: rgba(255, 255, 255, 0.9);
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
}

.form-control:focus {
  border-color: var(--ic-primary-light);
  box-shadow: 0 0 0 0.2rem rgba(14, 165, 233, 0.2);
}
