:root {
  --cla-primary: #1c3f5a;
  --cla-primary-dark: #152f44;
  --cla-accent: #b2d7eb;
  --cla-accent-dark: #7eb8d4;
}

[data-bs-theme="light"] {
  --bs-primary: var(--cla-primary);
  --bs-primary-rgb: 28, 63, 90;
  --bs-link-color: var(--cla-primary);
  --bs-link-hover-color: var(--cla-primary-dark);
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.navbar-brand {
  letter-spacing: -0.02em;
}

.page-hero {
  background: linear-gradient(135deg, var(--cla-primary) 0%, var(--cla-primary-dark) 60%, #0f2433 100%);
  color: #fff;
  padding: 4rem 0 3rem;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.75);
  max-width: 42rem;
}

.home-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--cla-primary);
  overflow: hidden;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 47, 68, 0.92) 0%, rgba(28, 63, 90, 0.75) 100%),
    url("../images/header.jpg") center / cover no-repeat;
  z-index: 0;
}

.home-hero .container {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.home-hero-img {
  display: none;
}

.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 2rem rgba(28, 63, 90, 0.15) !important;
}

.service-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--cla-primary);
}

.brand-card img {
  max-height: 64px;
  object-fit: contain;
}

.gallery-img {
  border-radius: 0.5rem;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
}

.sidebar-card {
  position: sticky;
  top: 5.5rem;
}

.table-pricing thead th {
  background: var(--cla-primary);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.table-pricing tbody tr:nth-child(even) {
  background: rgba(var(--bs-primary-rgb), 0.04);
}

.partner-card img {
  max-height: 80px;
  object-fit: contain;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-link:hover {
  color: #fff;
}

.velodyssee-badge {
  background: linear-gradient(90deg, var(--cla-accent) 0%, #fff 100%);
  color: var(--cla-primary-dark);
}
