/* ==================================================
   GLOBAL STYLES
   ================================================== */
body {
    font-family: "DM Sans", sans-serif;
    background: var(--bg-white);
    color: var(--primary-black);
    font-weight: 600;
}

/* ==================================================
   SHARED PAGE HERO BANNER (FAQ, About, etc.)
   ================================================== */
.page-hero-banner {
    width: 100%;
    position: relative;
    margin-top: 0;
}

.page-hero-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.page-hero-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-label {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(40px, 7vw, 90px);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1;
    text-align: center;
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
    margin: 0;
}

@media (max-width: 767px) {
    .page-hero-img-wrapper img {
        height: 280px;
    }
    .page-hero-label {
        letter-spacing: 2px;
    }
}

/* ==================================================
   GLOBAL RESPONSIVE (MIGRATED FROM RESPONSIVE.CSS)
   ================================================== */
@media (min-width: 1440px) {
    .container {
        max-width: 1380px;
        margin: auto;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ==================================================
   SCROLL TO TOP BUTTON
   ================================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.scroll-top-btn .bi-arrow-up {
    font-size: 20px;
    color: var(--primary-blue, #4F94D2);
    position: absolute;
    z-index: 2;
}

.scroll-top-btn .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(-90deg);
}

.scroll-top-btn .progress-ring__circle {
    transition: stroke-dashoffset 0.1s;
    transform-origin: 50% 50%;
}

/* Blue Floating Bubble for Scroll Top Button */
.floating-bubble.blue {
    background: radial-gradient(circle at 70% 30%, rgba(135, 206, 250, 0.6), rgba(79, 148, 210, 0.9));
    box-shadow: inset 6px 2px 8px rgba(255, 255, 255, 0.7), inset -2px -2px 6px rgba(0, 0, 0, 0.2);
}