    :root {
        --primary-blue: #2563eb;
        --accent-cyan: #06b6d4;
        --dark-navy: #0f172a;
        --card-shape: 50px 15px 50px 15px;
        --input-shape: 15px 5px 15px 5px;
        --pkg-shape: 20px 8px 20px 8px;
    }

    .order-section {
        background: #fcfdfe;
        position: relative;
        overflow: hidden;
    }

    /* Decorative Background Blobs */
    .blob {
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(37, 99, 235, 0.04);
        filter: blur(100px);
        border-radius: 50%;
        z-index: 0;
    }

    .title-gradient {
        background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
    }

    /* Left Side Benefits Styling */
    .benefit-item {
        background: white;
        padding: 20px;
        border-radius: 25px 8px;
        border: 1px solid #f1f5f9;
        transition: 0.3s;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .benefit-item:hover {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .check-icon {
        width: 50px;
        height: 50px;
        color: white;
        border-radius: 14px 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
    }

    /* Right Side Order Card */
    .order-card {
        background: white;
        border-radius: var(--card-shape);
        border: none;
        box-shadow: 0 40px 100px rgba(15, 23, 42, 0.08);
        position: relative;
        z-index: 1;
        padding: 50px 40px;
    }

    .form-label {
        font-weight: 700;
        color: var(--dark-navy);
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

    .custom-input {
        border-radius: var(--input-shape) !important;
        border: 2px solid #f1f5f9 !important;
        padding: 14px 20px !important;
        background: #f8fafc !important;
        transition: 0.3s;
    }

    .custom-input:focus {
        border-color: var(--primary-blue) !important;
        background: white !important;
        box-shadow: none !important;
    }

    /* Package Selection Styling */
    .pkg-option {
        cursor: pointer;
        border: 2px solid #f1f5f9;
        background: #f8fafc;
        border-radius: var(--pkg-shape);
        padding: 15px;
        text-align: center;
        transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        display: block;
        height: 100%;
    }

    .btn-check:checked + .pkg-option {
        border-color: var(--primary-blue);
        background: #eff6ff;
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
    }

    .pkg-title {
        font-weight: 800;
        font-size: 1.1rem;
        display: block;
        margin-bottom: 5px;
    }

    .pkg-price {
        font-weight: 600;
        color: var(--primary-blue);
    }

    .btn-order-submit {
        background: var(--primary-blue);
        color: white;
        border-radius: 25px 8px 25px 8px;
        padding: 18px;
        font-weight: 800;
        font-size: 1.1rem;
        border: none;
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        margin-top: 20px;
        width: 100%;
    }

    .btn-order-submit:hover {
        border-radius: 8px 25px 8px 25px;
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
        color: white;
    }

    @media (max-width: 991px) {
        .order-card { padding: 35px 20px; border-radius: 35px 12px; }
        .display-5 { font-size: 2.2rem; }
    }