    .hajj-form-section {
        background:
            linear-gradient(rgb(0 0 0 / 80%), rgb(16 120 101)),
            url('../img/hajj-form.jpg') center/cover no-repeat;
        padding: 110px 0;
        position: relative;
    }

    .hajj-form-section h2 {
        position: relative;
        padding-bottom: 14px;
        color: #f2f2f2;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-shadow: 0 0 12px rgba(255, 215, 71, 0.4);
    }

    .hajj-form-section h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 90px;
        height: 4px;
        border-radius: 4px;
        background: linear-gradient(90deg, #f6d46b, #b89127);
        box-shadow: 0 0 10px rgba(255, 215, 71, 0.45);
    }

    .hajj-form-section p {
        color: #e4e4e4;
        line-height: 1.75;
        font-size: 1.1rem;
    }

    /* Premium bullet list */
    .hajj-form-section ul li {
        margin-bottom: 12px;
        font-size: 1.08rem;
        color: #f4f4f4;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .hajj-form-section ul li::before {
        content: "✔";
        color: #f6d46b;
        font-weight: bold;
        font-size: 1.05rem;
    }

    /* FORM CARD - ULTRA PREMIUM */
    .form-card {
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(14px);
        border-radius: 22px;
        /* padding: 35px; */
        /* border: 1px solid rgba(255, 255, 255, 0.45); */

        box-shadow:
            0 25px 45px rgba(0, 0, 0, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.25);

        transition: all 0.35s ease;
    }

    .form-card:hover {
        transform: translateY(-10px);
        box-shadow:
            0 40px 70px rgba(0, 0, 0, 0.55),
            inset 0 0 25px rgba(255, 255, 255, 0.3);
    }

    /* MOBILE */
    @media (max-width: 767px) {
        .hajj-form-section {
            padding: 70px 0;
        }

        .hajj-form-section h2 {
            font-size: 1.75rem;
            text-align: center;
        }

        .hajj-form-section h2::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .form-card {
            padding: 25px;
        }
    }