:root {
  --brand-navy: #10253f;
  --brand-blue: #1c3f67;
  --brand-gold: #c79a47;
  --brand-gold-soft: #e9c98a;
  --brand-text: #102132;
  --brand-muted: #64748b;
  --brand-light: #f5f7fb;
  --brand-border: rgba(16, 37, 63, 0.08);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--brand-text);
  background: #fff;
}

.topbar {
  background: linear-gradient(90deg, var(--brand-navy), #18385d);
}

.navbar { --bs-navbar-padding-y: 1rem; }
.navbar .nav-link {
  color: var(--brand-text);
  font-weight: 600;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus { color: var(--brand-blue); }

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-soft));
  color: var(--brand-navy);
  box-shadow: 0 12px 28px rgba(199, 154, 71, 0.28);
}
.brand-title { font-size: 1.05rem; line-height: 1.1; }

.btn-brand {
  background: linear-gradient(135deg, var(--brand-gold), #d9af61);
  border: 0;
  color: var(--brand-navy);
  font-weight: 700;
  padding-inline: 1.25rem;
  box-shadow: 0 12px 28px rgba(199, 154, 71, 0.25);
}
.btn-brand:hover,
.btn-brand:focus {
  color: var(--brand-navy);
  transform: translateY(-1px);
}
.btn-outline-brand {
  border: 1px solid rgba(199, 154, 71, 0.45);
  color: var(--brand-blue);
  font-weight: 700;
}
.btn-outline-brand:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

.hero-section {
  padding: 5rem 0;
  background:
    radial-gradient(circle at top right, rgba(199,154,71,0.20), transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 85%);
}
.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-size: .82rem;
}
.hero-badge {
  background: rgba(16, 37, 63, 0.05);
  border: 1px solid rgba(16, 37, 63, 0.08);
  padding: .6rem .9rem;
  border-radius: 999px;
}
.text-gradient {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-visual { border-radius: 28px; position: relative; }
.hero-overlay-card {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 1.25rem;
}
.fact-card,
.service-card,
.step-card,
.contact-card,
.form-card,
.dark-feature-card {
  border-radius: 24px;
}
.fact-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--brand-border);
  padding: 1rem;
  box-shadow: 0 14px 34px rgba(16, 37, 63, 0.06);
}
.fact-card strong,
.dark-feature-card strong { display: block; margin-bottom: .35rem; }
.fact-card span,
.dark-feature-card span { color: var(--brand-muted); font-size: .95rem; }
.section-pad { padding: 5rem 0; }
.section-head { max-width: 760px; }
.service-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  padding: 1.75rem;
  box-shadow: 0 18px 36px rgba(16, 37, 63, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(16, 37, 63, 0.10);
}
.service-card h3,
.step-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.service-card p,
.step-card p { color: var(--brand-muted); margin-bottom: 0; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--brand-blue);
  background: rgba(16, 37, 63, 0.06);
}
.dark-feature-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.1rem;
}
.dark-feature-card span { color: rgba(255,255,255,0.72); }
.step-card {
  height: 100%;
  background: #fff;
  padding: 1.75rem;
  border: 1px solid var(--brand-border);
  box-shadow: 0 18px 36px rgba(16, 37, 63, 0.05);
}
.step-card span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}
.gallery-grid img {
  width: 100%;
  display: block;
  border: 1px solid var(--brand-border);
}
.contact-card,
.form-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  padding: 1.15rem 1.25rem;
}
.contact-icon {
  color: var(--brand-gold);
  font-size: 1.2rem;
  margin-top: .15rem;
}
.form-control {
  border-radius: 14px;
  border-color: rgba(16, 37, 63, 0.12);
  padding: .85rem 1rem;
}
.form-control:focus {
  border-color: rgba(28, 63, 103, 0.45);
  box-shadow: 0 0 0 .25rem rgba(28, 63, 103, 0.10);
}
.footer {
  background: linear-gradient(180deg, var(--brand-navy), #0c1b2f);
}

@media (max-width: 991.98px) {
  .hero-section,
  .section-pad { padding: 4rem 0; }
  .hero-overlay-card { position: static; border-radius: 0; }
}
@media (max-width: 575.98px) {
  .brand-mark { width: 42px; height: 42px; border-radius: 12px; }
  .hero-section { padding-top: 3.5rem; }
}
