html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* =========================================================
   JolanIDX Home Page
   ========================================================= */

.hero-section {
    position: relative;
    background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.12), transparent 30%), radial-gradient(circle at bottom right, rgba(111, 66, 193, 0.12), transparent 28%), linear-gradient(180deg, #f8fbff 0%, #f5f7fb 50%, #ffffff 100%);
    min-height: 100vh;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.45;
    pointer-events: none;
}

.hero-bg-shape-1 {
    width: 280px;
    height: 280px;
    background: rgba(13, 110, 253, 0.18);
    top: -60px;
    right: -80px;
}

.hero-bg-shape-2 {
    width: 240px;
    height: 240px;
    background: rgba(111, 66, 193, 0.18);
    bottom: 30px;
    left: -70px;
}

.hero-lead {
    max-width: 760px;
}

.hero-showcase {
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
}

.showcase-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(13, 110, 253, 0.22);
}

.mini-stat-card {
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid rgba(13, 110, 253, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.mini-stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.mini-stat-value {
    font-weight: 700;
    font-size: 1rem;
    color: #212529;
}

.showcase-panel {
    border-radius: 1rem;
    padding: 1rem;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border: 1px solid rgba(13, 110, 253, 0.08);
}

.feature-card,
.info-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(13, 110, 253, 0.08);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .feature-card:hover,
    .info-card:hover,
    .hero-showcase:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
    }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #0d6efd;
    background: rgba(13, 110, 253, 0.08);
}

.info-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6c757d;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.info-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #212529;
}

.py-lg-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
    }

    .hero-showcase {
        margin-top: 0.5rem;
    }
}