:root {
  --bs-primary: #e3b20a;
  --bs-primary-rgb: 227, 178, 10;
  --bs-dark: #0c0f14;
  --bs-dark-rgb: 12, 15, 20;
  --bs-link-color: #0c0f14;
  --bs-link-color-rgb: 12, 15, 20;
  --bs-link-hover-color: #c99a08;
  --bs-link-hover-color-rgb: 201, 154, 8;
  --bs-link-decoration: none;
  --bs-link-hover-decoration: underline;
  --bs-body-bg: #f4f6f9;
  --bs-body-color: #0c0f14;
  --bs-body-color-rgb: 12, 15, 20;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: none;
}

a:hover,
a:focus {
  color: rgba(var(--bs-link-hover-color-rgb), var(--bs-link-opacity, 1));
}

a:focus-visible {
  outline: 2px solid #e3b20a;
  outline-offset: 2px;
  border-radius: 0.15rem;
}

.btn-primary {
  --bs-btn-color: #0c0f14;
  --bs-btn-bg: #e3b20a;
  --bs-btn-border-color: #e3b20a;
  --bs-btn-hover-color: #0c0f14;
  --bs-btn-hover-bg: #c99a08;
  --bs-btn-hover-border-color: #c99a08;
  --bs-btn-active-color: #0c0f14;
  --bs-btn-active-bg: #b88907;
  --bs-btn-active-border-color: #b88907;
  --bs-btn-focus-shadow-rgb: 227, 178, 10;
}

.btn-primary:focus-visible,
.btn-dark:focus-visible,
.btn-outline-light:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(227, 178, 10, 0.45);
}

.navbar .nav-link {
  border-radius: 0.5rem;
  padding-inline: 0.75rem;
}

.navbar .nav-link.active {
  color: #0c0f14 !important;
  font-weight: 600;
  background-color: #fef9e8;
}

.navbar .btn-primary.active {
  pointer-events: none;
}

.navbar .btn-primary.active,
.navbar .btn-primary.active:hover {
  background-color: #b88907;
  border-color: #b88907;
  color: #0c0f14;
}

@media (max-width: 991.98px) {
  .main-nav-collapse {
    margin-top: 1rem;
    padding: 1.25rem 0 0.5rem;
    border-top: 1px solid rgba(12, 15, 20, 0.08);
  }

  .main-nav-list {
    align-items: center !important;
    text-align: center;
    gap: 0.35rem;
    width: 100%;
  }

  .main-nav-list .nav-item {
    width: 100%;
    max-width: 300px;
  }

  .main-nav-list .nav-link {
    display: block;
    width: 100%;
    padding: 0.7rem 1rem;
    font-size: 1.0625rem;
    font-weight: 500;
  }

  .main-nav-list .nav-item-cta {
    margin-left: 0 !important;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(12, 15, 20, 0.06);
  }

  .main-nav-list .nav-item-cta .btn {
    width: 100%;
    padding: 0.65rem 1.25rem;
    font-size: 1rem;
  }
}

.hero-section {
  background: linear-gradient(135deg, #0c0f14 0%, #1a1f2e 100%);
  overflow: hidden;
}

.hero-showcase {
  position: relative;
  max-width: 340px;
  margin-inline: auto;
  padding: 1px;
  border-radius: 1.35rem;
  background: linear-gradient(
    145deg,
    rgba(227, 178, 10, 0.35) 0%,
    rgba(227, 178, 10, 0.08) 50%,
    rgba(255, 255, 255, 0.04) 100%
  );
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.hero-showcase-glow {
  position: absolute;
  inset: -35%;
  background: radial-gradient(
    circle,
    rgba(227, 178, 10, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-showcase-inner {
  position: relative;
  z-index: 1;
  padding: 2.25rem 1.75rem 2rem;
  border-radius: calc(1.35rem - 1px);
  background: transparent;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-showcase-logo-ring {
  width: fit-content;
  margin: 0 auto 1.35rem;
  padding: 5px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e3b20a 0%, #fef9e8 42%, #b88907 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15),
    0 12px 36px rgba(227, 178, 10, 0.35);
}

.hero-showcase-logo {
  display: block;
  width: 200px;
  height: 200px;
  max-width: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(12, 15, 20, 0.9);
}

.hero-showcase-name {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: #fff;
}

.text-brand {
  color: #e3b20a !important;
}

.bg-brand-soft {
  background-color: #fef9e8 !important;
}

.card {
  --bs-card-bg: #fff;
  background-color: #fff;
}

.card > .card-header {
  background-color: #fff;
}

.package-card-featured {
  border: 2px solid #e3b20a !important;
}

.logo-round {
  width: 44px;
  height: 44px;
  object-fit: cover;
}

.navbar-brand-text {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.35rem;
  line-height: 1.2;
  white-space: nowrap;
  font-size: 1.05rem;
}

.navbar-brand-text .brand-title {
  font-weight: 700;
  color: #0c0f14;
}

.navbar-brand-text .brand-subtitle {
  font-weight: 500;
  color: #6c757d;
}

@media (min-width: 576px) {
  .navbar-brand-text {
    font-size: 1.2rem;
  }
}

.logo-round-lg {
  width: 220px;
  height: 220px;
  max-width: 100%;
  object-fit: cover;
}

.map-iframe {
  height: 260px;
  border: 0;
  width: 100%;
  display: block;
}

.section-eyebrow {
  letter-spacing: 0.12em;
}

.hero-section h1,
.hero-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

@media (max-width: 575.98px) {
  .logo-round-lg {
    width: 160px;
    height: 160px;
  }

  .hero-showcase-logo {
    width: 160px;
    height: 160px;
  }

  .hero-showcase-inner {
    padding: 1.75rem 1.25rem 1.5rem;
  }
}

@media (min-width: 992px) {
  .navbar .nav-link.active {
    background-color: #fef9e8;
  }
}

.card-hover {
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.card-hover:hover {
  transform: translateY(-2px);
}

.package-card-featured.card-hover:hover {
  transform: translateY(-3px);
}

.process-section {
  background: linear-gradient(180deg, #fff 0%, #f4f6f9 100%);
}

.process-card {
  border: 1px solid rgba(12, 15, 20, 0.06) !important;
}

.process-step {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem;
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #fef9e8;
  border: 1px solid rgba(227, 178, 10, 0.25);
  color: #c99a08;
  font-size: 1.65rem;
  transition:
    transform 0.15s ease,
    background-color 0.15s ease;
}

.process-card:hover .process-icon {
  background: #e3b20a;
  color: #0c0f14;
  transform: scale(1.05);
}
