:root {
            --primary: #4f46e5;
            --primary-dark: #3730a3;
            --dark: #111827;
            --muted: #6b7280;
            --light: #f8fafc;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: system-ui, -apple-system, BlinkMacSystemFont,
                         "Segoe UI", sans-serif;
            color: var(--dark);
            background: #fff;
        }

        /* Navbar */
        .navbar {
            padding: 18px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
    text-decoration: none;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.brand-name span {
    color: var(--primary);
}

.brand-phone {
    margin-top: 4px;

    font-size: 0.75rem;
    font-weight: 400;

    color: #9ca3af;

    letter-spacing: 0.3px;
}

        .navbar-brand span {
            color: var(--primary);
        }

        .nav-link {
            font-weight: 500;
            color: #4b5563;
            margin-left: 20px;
            transition: 0.2s;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary);
        }

        /* Hero */
        .hero {
            padding: 100px 0;
            background:
                radial-gradient(
                    circle at 90% 10%,
                    rgba(79, 70, 229, 0.12),
                    transparent 30%
                ),
                linear-gradient(180deg, #fff 0%, #f8fafc 100%);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 50px;
            background: #eef2ff;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -2px;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero-description {
            color: var(--muted);
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 550px;
            margin: 25px 0 30px;
        }

        .btn-primary-custom {
            background: var(--primary);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            transition: 0.25s;
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            color: white;
            transform: translateY(-2px);
        }

        .btn-outline-custom {
            border: 1px solid #d1d5db;
            background:  #f0bb0d;
            color: var(--dark);
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            margin-left: 8px;
        }

        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Hero Image */
        .hero-image-wrapper {
            position: relative;
            /* padding: 20px; */
             overflow: visible;
        }

        .hero-image {
           width: 100%;
            height: 420px;

            position: relative;

            display: flex;
            align-items: center;
            justify-content: center;


            /* background: linear-gradient(
                135deg,
                #4f46e5,
                #7c3aed
            );

            box-shadow:
                0 30px 70px
                rgba(79, 70, 229, 0.25); */
            overflow: visible;
        }
         .hero-image img {
             position: absolute;

                width: 100%;
                height: auto;

                bottom: 0;

                /* object-fit: contain; */
            /* transform: translateY(-10px); */
                z-index: 2;

            
        }

        .hero-image-content {
            min-height: 420px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 100px;
        }

       

        /* Section */
        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title .label {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 2px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-top: 10px;
        }

        .section-title p {
            color: var(--muted);
            max-width: 600px;
            margin: 15px auto 0;
        }

        /* Application */
        .application-section {
            background: var(--light);
        }

        .application-preview {
            background: white;
            border-radius: 20px;
            padding: 15px;
            box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
        }

        .application-preview img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 12px;
        }

        .preview-placeholder {
            height: 380px;
            border-radius: 12px;
            background: linear-gradient(
                135deg,
                #e0e7ff,
                #ede9fe
            );
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 90px;
        }

        .application-content {
            padding: 30px;
        }

        .application-content h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .application-content p {
            color: var(--muted);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .feature-list li {
            margin-bottom: 12px;
            color: #4b5563;
        }

        .feature-list i {
            color: #22c55e;
            margin-right: 8px;
        }

        /* Donation */
        .donation {
            text-align: center;
        }

        .donation-card {
            max-width: 700px;
            margin: auto;
            padding: 50px 30px;
            border-radius: 24px;
            background: linear-gradient(
                135deg,
                #4f46e5,
                #7c3aed
            );
            color: white;
            box-shadow: 0 25px 60px rgba(79, 70, 229, 0.25);
        }

        .donation-card h2 {
            font-weight: 800;
            margin-bottom: 15px;
        }

        .donation-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .btn-light-custom {
            background: white;
            color: var(--primary);
            border: none;
            padding: 12px 25px;
            border-radius: 10px;
            font-weight: 700;
        }

        .btn-light-custom:hover {
            background: #f3f4f6;
            color: var(--primary-dark);
        }

        /* Footer */
        footer {
            padding: 25px 0;
            border-top: 1px solid #e5e7eb;
            color: var(--muted);
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 991px) {
            .hero {
                padding: 70px 0;
            }

            .hero-image-wrapper {
                margin-top: 50px;
            }

            .nav-link {
                margin-left: 0;
                padding: 10px 0;
            }
        }

        @media (max-width: 767px) {
            section {
                padding: 70px 0;
            }

            .hero h1 {
                letter-spacing: -1px;
            }

            .hero-image,
            .hero-image-content {
                min-height: 300px;
            }

            .preview-placeholder {
                height: 280px;
            }

            .application-content {
                padding: 25px 5px;
                margin-top: 20px;
            }

            .btn-outline-custom {
                margin-left: 0;
                margin-top: 10px;
            }
        }
.hero-profile-image {
    width: 70%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
}

.application-divider {
    display: flex;
    align-items: center;
    gap: 20px;

    margin: 80px 0;
}

.application-divider::before,
.application-divider::after {
    content: "";
    flex: 1;

    height: 1px;

    background: #e5e7eb;
}

.application-divider span {
    color: #9ca3af;

    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    white-space: nowrap;
}

@media (max-width: 991.98px) {

    .navbar .dropdown-menu {
        margin-top: 0;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    }

    .navbar .dropdown-item {
        padding: 10px 16px;
        color: #374151;
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background: #eef2ff;
        color: var(--primary);
    }

}

/* =========================================================
   DONATION MODAL
========================================================= */

.donation-modal {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.20);
}

.donation-modal-label {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.donation-modal .modal-title {
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 800;
}

.donation-modal-description {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}


/* =========================================================
   NOMINAL
========================================================= */

.donation-amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.donation-amount {
    border: 1px solid #e5e7eb;
    background: #fff;
    color: var(--dark);

    padding: 14px 10px;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s,
        transform 0.2s;
}

.donation-amount:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.donation-amount.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow:
        0 8px 20px rgba(79, 70, 229, 0.20);
}


/* =========================================================
   INPUT
========================================================= */

.donation-form-label {
    color: #374151;
    font-size: 14px;
    font-weight: 600;
}

.donation-modal .input-group-text {
    background: #f8fafc;
    border-color: #e5e7eb;
    color: #6b7280;
    font-weight: 600;
}

.donation-modal .form-control {
    border-color: #e5e7eb;
    padding: 12px;
}

.donation-modal .form-control:focus {
    border-color: var(--primary);
    box-shadow:
        0 0 0 0.2rem rgba(79, 70, 229, 0.10);
}

.donation-error {
    color: #dc2626;
    font-size: 12px;
    margin-top: 6px;
}


/* =========================================================
   SELECTED AMOUNT
========================================================= */

.selected-donation {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 18px;
    padding: 14px 16px;

    border-radius: 12px;

    background: #eef2ff;
    color: #4338ca;

    font-size: 13px;
}

.selected-donation strong {
    font-size: 16px;
}


/* =========================================================
   PRIMARY DONATION BUTTON
========================================================= */

.btn-donation-primary {
    background: linear-gradient(
        135deg,
        #4f46e5,
        #7c3aed
    );

    border: none;
    color: white;

    padding: 13px 20px;

    border-radius: 12px;

    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(79, 70, 229, 0.20);

    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

.btn-donation-primary:hover {
    color: white;

    transform: translateY(-2px);

    box-shadow:
        0 15px 30px rgba(79, 70, 229, 0.30);
}


/* =========================================================
   PAYMENT
========================================================= */

.payment-title {
    color: var(--dark);
    font-size: 18px;
    font-weight: 800;
}

.payment-amount {
    margin-top: 5px;
    color: var(--primary);
    font-size: 24px;
    font-weight: 800;
}


/* =========================================================
   QRIS PLACEHOLDER
========================================================= */

.qris-placeholder {
    width: 220px;
    height: 220px;

    margin: 25px auto;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #eef2ff,
            #f5f3ff
        );

    border: 2px dashed #c7d2fe;

    color: var(--primary);
}

.qris-placeholder i {
    font-size: 70px;
    line-height: 1;
}

.qris-placeholder-title {
    margin-top: 12px;

    font-size: 17px;
    font-weight: 800;
}

.qris-placeholder-text {
    margin-top: 3px;

    color: #6b7280;

    font-size: 12px;
}

.payment-note {
    padding: 10px 12px;

    border-radius: 10px;

    background: #f8fafc;

    color: #64748b;

    font-size: 12px;
    line-height: 1.6;
}

.donation-back {
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.donation-back:hover {
    color: var(--primary);
}


/* =========================================================
   SUCCESS
========================================================= */

.donation-success {
    text-align: center;
    padding: 15px 5px 5px;
}

.donation-success-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ecfdf5;
    color: #10b981;

    font-size: 35px;

    animation: donationSuccessPop 0.4s ease-out;
}

.donation-success h3 {
    color: var(--dark);
    font-size: 24px;
    font-weight: 800;
}

.donation-success > p {
    color: var(--muted);
    line-height: 1.7;
}

.donation-success-amount {
    margin-top: 20px;
    padding: 15px;

    border-radius: 14px;

    background: #f8fafc;

    color: #64748b;

    font-size: 13px;
}

.donation-success-amount strong {
    display: block;

    margin-top: 4px;

    color: var(--primary);

    font-size: 22px;
}

.donation-success-message {
    margin-top: 18px;
    font-size: 13px;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes donationSuccessPop {

    0% {
        opacity: 0;
        transform: scale(0.7);
    }

    70% {
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


/* =========================================================
   MOBILE
========================================================= */

/* =========================
   DONATION MODAL
========================= */
/* =========================================
   DONATION MODAL
========================================= */

#qrisDonationModal .nav-pills .nav-link {
    color: #6b7280;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    font-weight: 600;
    transition: all 0.2s ease;
}

#qrisDonationModal .nav-pills .nav-link:hover {
    color: #4f46e5;
    background: #eef2ff;
}

#qrisDonationModal .nav-pills .nav-link.active {
    color: #fff;
    background: #4f46e5;
    border-color: #4f46e5;
}


/* QRIS */

.qris-container {
    width: 260px;
    max-width: 100%;
    padding: 15px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.qris-image {
    width: 100%;
    display: block;
    border-radius: 10px;
}


/* E-Wallet */

.donation-wallet-card {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 15px;

    margin-bottom: 12px;

    background: #fff;

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    transition: all 0.2s ease;
}

.donation-wallet-card:hover {
    border-color: #c7d2fe;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
}


.wallet-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    font-size: 22px;
}


.wallet-icon.gopay {
    background: #ecfeff;
    color: #0891b2;
}


.wallet-icon.dana {
    background: #eff6ff;
    color: #2563eb;
}


.wallet-icon.shopee {
    background: #fff7ed;
    color: #ea580c;
}


.wallet-info {
    flex: 1;
    min-width: 0;
}


.wallet-name {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}


.wallet-number {
    margin-top: 2px;

    font-size: 16px;
    font-weight: 700;

    color: #4f46e5;

    letter-spacing: 0.3px;
}


.wallet-owner {
    margin-top: 1px;

    font-size: 12px;
    color: #9ca3af;
}


@media (max-width: 575px) {

    #qrisDonationModal .modal-dialog {
        margin: 10px;
    }

    .donation-wallet-card {
        padding: 12px;
    }

    .wallet-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .wallet-number {
        font-size: 14px;
    }

    .donation-wallet-card .btn {
        padding: 6px 8px;
        font-size: 12px;
    }

}