/* Main Styles from index.html */
:root {
    --zipzap-red: #E11D48;
    --zipzap-dark: #0f172a;
}



body {
    font-family: 'Outfit', sans-serif;
}

/* Hero Section (V7: Subtle Dot Pattern) */
.hero {
    position: relative;
    padding: 4rem 0 6rem 0;
    background-color: #ffffff;
    /* Ultra Subtle Dot Pattern */
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 24px 24px;
    overflow: hidden;
    z-index: 1;
}

/* Fade out dots at the bottom */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, #ffffff 20%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

/* Clean up previous pseudo-elements */
.hero::before {
    display: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Badge Items */
.trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #ffe4e6;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
}

.badge-item i {
    color: #E11D48;
}

/* Typography */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.hero-content h1 .highlight {
    color: #E11D48;
    position: relative;
    z-index: 1;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: #fecdd3;
    z-index: -1;
    opacity: 0.6;
    border-radius: 4px;
}

.hero-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    padding: 1.5rem 0;
    border-top: 0px solid #f1f5f9;
    border-bottom: 0px solid #f1f5f9;
}

.stat-item h3 {
    font-weight: 800;
    color: #E11D48;
    margin-bottom: 0px;
    font-size: 2rem;
}

.stat-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #E11D48;
    border-color: #E11D48;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(225, 29, 72, 0.4);
    transition: all 0.3s ease;
}

.btn-zipzap {
    background-color: #E11D48;
    border-color: #E11D48;
    padding: 0.55rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(225, 29, 72, 0.4);
    transition: all 0.3s ease;
    color: white;
}

.btn-kaliber {
    background-color: #0056FF;
    border-color: #0056FF;
    padding: 0.55rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(29, 65, 225, 0.4);
    transition: all 0.3s ease;
    color:white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #be123c;
    border-color: #be123c;
}

.btn-outline {
    color: #475569;
    border: 2px solid #e2e8f0;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    background: white;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #E11D48;
    color: #E11D48;
    background: #fff1f2;
}

/* Support/Contact */
.emergency-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.emergency-icon {
    width: 50px;
    height: 50px;
    background: #fff1f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E11D48;
    font-size: 1.25rem;
}

.emergency-info {
    display: flex;
    flex-direction: column;
}

.emergency-info small {
    color: #64748b;
    font-weight: 500;
}

.emergency-info strong {
    color: #1e293b;
    font-size: 1.1rem;
}

/* Visual/Image Area */
.hero-visual {
    position: relative;
    padding: 2rem;
}

.main-image img {
    border-radius: 30px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    width: 100%;
    display: block;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.8);
    animation: float 4s ease-in-out infinite;
}

.appointment-card {
    top: 10%;
    left: -5%;
}

.rating-card {
    bottom: 10%;
    right: 0%;
    animation-delay: 1s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.card-content h6 {
    margin: 0;
    font-weight: 700;
    color: #1e293b;
}

.card-content p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
}

.card-content small {
    font-size: 0.75rem;
    color: #94a3b8;
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Background Elements */
.background-elements .element {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(60px);
}

.element-1 {
    width: 300px;
    height: 300px;
    background: rgba(225, 29, 72, 0.1);
    top: 0;
    right: -10%;
}

.element-2 {
    width: 200px;
    height: 200px;
    background: rgba(37, 99, 235, 0.1);
    bottom: -5%;
    left: 10%;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .trust-badges,
    .hero-actions,
    .emergency-contact,
    .hero-stats {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .floating-card {
        display: none;
    }
}

/* Section Titles */
/* Section Titles - Updated Divider */
.section-title {
    font-weight: 800;
    color: var(--zipzap-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

/* The thin grey line spanning wider */
.section-title::before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    /* Adjust width as needed */
    height: 1px;
    background-color: #cbd5e1;
    /* Grey line */
}

/* The thick red center line */
.section-title::after {
    content: '';
    display: block;
    position: absolute;
    bottom: -1.5px;
    /* Centered relative to the 1px line */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    /* Short thick line */
    height: 4px;
    background: var(--zipzap-red);
    /* Red color requested */
    border-radius: 2px;
    margin-top: 0;
}

.section-subtitle {
    color: var(--zipzap-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

/* Card Hover Effects */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Ebook Catalog */
.catalog-card img {
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Value CS Icons */
.value-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(225, 29, 72, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--zipzap-red);
    font-size: 32px;
    transition: 0.3s;
}

.value-card:hover .value-icon-box {
    background: var(--zipzap-red);
    color: white;
    transform: scale(1.1);
}

/* Dokumen Pendukung */
.doc-card {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 20px;
    transition: 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.doc-card:hover {
    border-color: var(--zipzap-red);
    background: #FFF5F5;
}

.doc-icon {
    font-size: 2rem;
    color: var(--zipzap-red);
    margin-bottom: 1rem;
}

/* Banner Promo */
.promo-banner {
    background: linear-gradient(135deg, #E11D48 0%, #BE123C 100%);
    border-radius: 20px;
    color: white;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.promo-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Quotes */
.quote-section {
    background: #f8fafc;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(225, 29, 72, 0.2);
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
}

/* --- WHY CHOOSE US SECTION (Red Theme) --- */
.why-choose-us {
    background: linear-gradient(135deg, #E11D48 0%, #BE123C 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.03) 10px,
            transparent 10px,
            transparent 20px);
    border-radius: 50%;
    pointer-events: none;
}

.check-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.check-icon-circle {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.check-icon-circle i {
    color: #E11D48;
    /* Red check */
    font-size: 0.9rem;
    font-weight: 900;
}

.stat-box-red {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease;
}

.stat-box-red:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

/* Document Cards */
.doc-card-new {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.doc-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.doc-icon-box {
    width: 60px;
    height: 60px;
    background-color: #e0f2fe;
    /* Light Blue background */
    color: #0284c7;
    /* Blue Icon */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.doc-content h4 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.doc-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.doc-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.doc-link:hover {
    gap: 0.8rem;
    color: #dc3545;
}

/* Section Showcase */
.showcase-section {
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Decorative Dots */
.dots-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.6;
}

.dots-left {
    top: 10%;
    left: -50px;
}

.dots-right {
    bottom: 10%;
    right: -50px;
}

/* Card Style */
.showcase-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid #f1f5f9;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
}

.card-preview {
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    /* A4 Portrait Ratio (210mm x 297mm) */
    aspect-ratio: 210/297;
    margin-bottom: 16px;
    position: relative;
}

.card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-card:hover .card-preview img {
    transform: scale(1.05);
}

.card-footer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 32px;
    height: 32px;
    /* Using ZipZap blue/brand color or generic brand colors */
    background-color: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.info-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
    margin: 0;
}

/* --- CATEGORY CARD STYLES --- */
.image-overlay-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 10;
    text-align: left;
    pointer-events: none;
}

.image-overlay-label span.variant-name {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    line-height: 1.2;
    opacity: 0.9;
}

.image-overlay-label span.variant-detail {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1.1;
}

.category-card-body {
    background: white;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Carousel Navigation Styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    background-size: 50%;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* --- POPULAR CATEGORIES SECTION --- */
.pop-cat-card {
    /* height: 400px; removed fixed height */
    aspect-ratio: 9 / 16;
    /* Mobile Portrait Ratio */
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pop-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pop-cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pop-cat-card:hover .pop-cat-img {
    transform: scale(1.05);
}

.pop-cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 2rem;
    pointer-events: none;
}

.pop-cat-overlay a {
    pointer-events: auto;
}

.pop-cat-title {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0 0 0.75rem 0;
    letter-spacing: 2px;
    line-height: 1.2;
    text-align: center;
}

.pop-cat-btn {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.pop-cat-btn:hover {
    background: white;
    color: black;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Grid Cols */
.grid-6-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Default mobile: 2 columns */
    gap: 1rem;
}

@media (min-width: 768px) {
    .grid-6-cols {
        grid-template-columns: repeat(3, 1fr);
        /* Tablet: 3 columns */
    }
}

@media (min-width: 1200px) {
    .grid-6-cols {
        grid-template-columns: repeat(6, 1fr);
        /* Desktop: 6 columns */
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #E11D48 0%, #be123c 100%);
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.cta-bg-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
}

/* Accordion */
/* Accordion - Modern Floating Card Style */
.custom-accordion .accordion-item {
    background-color: #f8fafc;
    /* Off-white to contrast with white section */
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Slightly more visible border */
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.custom-accordion .accordion-item:hover,
.custom-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    background-color: #ffffff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.custom-accordion .accordion-button {
    background-color: transparent;
    color: #334155;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: none;
    padding: 1.25rem 1.5rem;
    border-radius: 12px !important;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #E11D48;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Custom Indicator Icon Styling */
.custom-accordion .accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E11D48'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg) scale(1.1);
}

.custom-accordion .accordion-body {
    background-color: #ffffff;
    color: #64748b;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    /* Added top padding */
    border-top: none;
    line-height: 1.7;
}

/* Active State Border Accent */
.custom-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: rgba(225, 29, 72, 0.1);
    box-shadow: 0 10px 25px -5px rgba(225, 29, 72, 0.08);
    /* Red tint shadow */
    border-left: 4px solid #E11D48;
}

/* Vertical Pills */
.vertical-pills .nav-link {
    color: #64748b;
    font-weight: 600;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 0.75rem;
    border: 1px solid transparent;
}

.vertical-pills .nav-link:hover {
    color: #dc3545;
    background-color: #fff;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.vertical-pills .nav-link.active {
    background: linear-gradient(135deg, #dc3545 0%, #b02a37 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px -5px rgba(220, 53, 69, 0.4);
    transform: translateX(12px) scale(1.02);
    border: none;
}

/* Add a subtle shine animation for active state */
.vertical-pills .nav-link.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: shine 3s infinite;
    border-radius: 16px;
}

@keyframes shine {
    0% {
        background-position: 150% 150%;
    }

    100% {
        background-position: -50% -50%;
    }
}

.italic-text {
    font-style: italic;
}

.bg-soft {
    background-color: #f8fafc;
}

/* Progress Wrap */
.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(71, 85, 105, 0.1);
    /* Gray tint */
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
    background-color: #fff;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    font-family: 'bootstrap-icons';
    content: '\F148';
    /* bi-arrow-up */
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    color: #475569;
    /* Slate Gray */
    left: 0;
    top: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 1;
    transform: translateY(-2px);
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #475569;
    /* Slate Gray */
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/* Pulse Animation on Hover */
.progress-wrap:hover {
    box-shadow: 0 10px 20px rgba(71, 85, 105, 0.2);
    transform: translateY(-5px);
}

/* --- Refactored Inline Styles (Pembersihan HTML) --- */

/* Utilitas Latar Belakang */
.bg-soft-blue-light {
    background-color: #f0f7ff;
}

.bg-soft-slate {
    background-color: #f8fafc;
}

.bg-dark-footer {
    background-color: #1e1e1e;
}

/* Bagian Quotes */
.quotes-bg-gradient {
    background: radial-gradient(circle at center, #E11D48 0%, #BE123C 100%);
    width: 100%;
}

.quotes-overlay-grid {
    background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.quotes-overlay-glow {
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* Bagian Footer */
.footer-accent-line {
    height: 5px;
    background: linear-gradient(90deg, #dc3545, #cd0d0d);
}

.footer-desc {
    max-width: 400px;
    line-height: 1.6;
}

.footer-glass-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Utilitas Hover & Transisi Footer */
.hover-primary:hover {
    color: #dc3545 !important;
    transform: translateY(-2px);
}

.hover-white:hover {
    color: #fff !important;
    padding-left: 5px;
}

.transition-hover {
    transition: all 0.2s ease;
}

.ls-1 {
    letter-spacing: 1px;
}

/* --- Refactored Inline Styles (Lanjutan) --- */

/* Masking Gambar Banner Tentang Kami */
.mask-fade-bottom {
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Utilitas Ukuran Ikon */
.square-50 {
    width: 50px;
    height: 50px;
}

/* Utilitas Warna Background Banner Promo & Dokumen */
/* (Sudah ada bg-soft-blue-light dan bg-soft-slate di langkah sebelumnya) */