/* Spring International - Theme */
:root {
  --si-orange: #f5a623;
  --si-dark: #2f3134;
  --si-dark-2: #1f2124;
  --si-light: #f6f7f9;
  --si-text: #1f2937;
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--si-text);
  background: #fff;
}

a {
  color: var(--si-orange);
}
a:hover {
  color: #d38a12;
}

.bg-si-dark {
  background-color: var(--si-dark) !important;
}

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

.btn-si {
  --bs-btn-bg: var(--si-orange);
  --bs-btn-border-color: var(--si-orange);
  --bs-btn-hover-bg: #e79a18;
  --bs-btn-hover-border-color: #e79a18;
  --bs-btn-active-bg: #cf8612;
  --bs-btn-active-border-color: #cf8612;
  --bs-btn-color: #111;
  font-weight: 700;
  border-radius: 999px;
  padding: .75rem 1.25rem;
}

.btn-si-outline {
  --bs-btn-color: #fff;
  --bs-btn-border-color: rgba(255,255,255,.55);
  --bs-btn-hover-bg: rgba(255,255,255,.12);
  --bs-btn-hover-border-color: rgba(255,255,255,.75);
  border-radius: 999px;
  padding: .75rem 1.25rem;
  font-weight: 700;
}

.navbar {
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.navbar .nav-link {
  color: rgba(255,255,255,.85);
  font-weight: 600;
}
.navbar .nav-link:hover {
  color: #fff;
}
.navbar .nav-link.active {
  color: var(--si-orange) !important;
}

.brand-lockup {
  display: flex;
  gap: .75rem;
  align-items: center;
}
.brand-lockup img {
  height: 44px;
  width: auto;
}

.hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: center;
  padding: 6rem 0 4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.65), rgba(0,0,0,.35));
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.hero .lead {
  max-width: 56ch;
  color: rgba(255,255,255,.9);
}

.hero-cards {
  margin-top: -3.5rem;
  position: relative;
  z-index: 2;
}
.card-soft {
  border: 0;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}
.icon-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(245,166,35,.14);
  color: var(--si-orange);
}

.section {
  padding: 4.5rem 0;
}
.section-title {
  font-weight: 900;
  letter-spacing: -0.01em;
}
.section-muted {
  background: var(--si-light);
}

.img-round {
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.kpi {
  border-radius: 1.25rem;
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}
.kpi .num {
  font-size: 2.1rem;
  font-weight: 900;
}
.kpi .label {
  color: #6b7280;
  font-weight: 600;
}

.footer {
  background: var(--si-dark-2);
  color: rgba(255,255,255,.85);
}
.footer a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.footer a:hover {
  color: var(--si-orange);
}

.page-hero {
  min-height: 44vh;
  padding: 6rem 0 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(47,49,52,.88);
  color: #fff;
  padding: .35rem .6rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
}
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.45));
  opacity: 0;
  transition: opacity .2s ease;
}
.gallery-item:hover .overlay {
  opacity: 1;
}

.form-control, .form-select {
  border-radius: .9rem;
  padding: .75rem 1rem;
}
