:root {
  --primary: #0b1e3e;
  --primary-700: #0f2b5c;
  --accent: #d4af37;
  --text: #0f172a;
  --muted: #64748b;
  --surface: #0b1e3e0d;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
}

.navbar {
  background: var(--primary);
}

.text-accent {
  color: var(--accent) !important;
}

.btn-accent {
  background: var(--accent);
  border: none;
  color: #1f2937;
}

.btn-accent:hover {
  filter: brightness(0.95);
  color: #111827;
}

.link-accent {
  color: var(--accent);
  text-decoration: none;
}

.link-accent:hover {
  text-decoration: underline;
}

.hero .carousel,
.hero .carousel-item,
.hero .hero-img {
  height: 70vh;
  min-height: 420px;
}

.hero .hero-img {
  object-fit: cover;
  filter: brightness(0.6);
}

.carousel-caption {
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding-bottom: 10vh;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.section-padding {
  padding: 80px 0;
}

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

.section-title {
  color: var(--primary);
}

.bg-surface {
  background: var(--surface);
  border: 1px solid rgba(11, 30, 62, 0.08);
}

.alt-bg {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

section {
  scroll-margin-top: 96px;
}

.service-card {
  border: 1px solid rgba(11, 30, 62, 0.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  font-size: 24px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 30, 62, 0.12);
  border-color: rgba(11, 30, 62, 0.18);
}

.footer {
  background: var(--primary-700);
  color: #e5e7eb;
}

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

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.avatar-img {
  width: 132px;
  height: 132px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid rgba(212, 175, 55, 0.65);
  box-shadow: 0 10px 24px rgba(11, 30, 62, 0.12);
}
