.registration-header {
    padding: 100px 0 36px 0 !important;
    background-color: #1a0f06;
}

.registration-title {
    font-family: var(--conf-font-heading);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 6px;
    color: #ffffff;
}

.conference-subtitle {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Registration Section - Scoped Styles ===== */
.registration-section.section {
    background: var(--conf-bg-body);
    padding: 30px 0 40px;
}

/* Form Sections */
.reg-form-section {
    background: white;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.06);
    margin-bottom: 14px;
    border: 1px solid var(--conf-premium-card-border);
    transition: all 0.3s ease;
}

    .reg-form-section:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }

.reg-section-title {
    font-family: var(--conf-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--conf-text-heading);
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f5;
}

    .reg-section-title i {
        color: var(--conf-primary);
        font-size: 1.3rem;
    }

/* Registration Fees Table */
.registration-fees-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

    .registration-fees-table thead tr {
        background: linear-gradient(135deg, var(--conf-primary) 0%, #d66500 100%);
        color: white;
    }

    .registration-fees-table th {
        padding: 15px 12px;
        font-weight: 600;
        font-size: 0.9rem;
        text-align: center;
        border: 1px solid rgba(255,255,255,0.1);
    }

        .registration-fees-table th small {
            font-size: 0.7rem;
            font-weight: normal;
            opacity: 0.9;
            display: block;
            margin-top: 4px;
        }

    .registration-fees-table td {
        padding: 12px;
        text-align: center;
        border: 1px solid var(--conf-premium-card-border);
        vertical-align: middle;
    }

    .registration-fees-table .category-name {
        text-align: left;
        font-weight: 600;
        background-color: #f8f9fa;
        width: 30%;
        color: #2c3e50;
    }

    .registration-fees-table .price-cell {
        padding: 8px;
        width: 23.33%;
    }

/* Price Radio Buttons */
.price-radio {
    display: none;
}

.price-label {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--conf-primary);
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    text-align: center;
    border: 2px solid transparent;
}

    .price-label:hover {
        background: var(--conf-premium-card-border);
        transform: translateY(-2px);
    }

.price-radio:checked + .price-label {
    background: linear-gradient(135deg, var(--conf-primary) 0%, #d66500 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(248, 117, 0, 0.3);
    transform: translateY(-2px);
}

.price-radio:disabled + .price-label {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    color: #adb5bd;
}

.price-radio:disabled + .price-label:hover {
    transform: none;
    background: #f8f9fa;
}

/* Accommodation Table */
.accommodation-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

    .accommodation-table thead tr {
        background: linear-gradient(135deg, var(--conf-primary) 0%, #d66500 100%);
        color: white;
    }

    .accommodation-table th {
        padding: 12px;
        font-weight: 600;
        text-align: center;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .accommodation-table td {
        padding: 12px;
        text-align: center;
        border: 1px solid var(--conf-premium-card-border);
        vertical-align: middle;
    }

.room-type-label {
    font-weight: 600;
    background-color: #f8f9fa;
    text-align: left !important;
}

.accommodation-radio {
    display: none;
}

.accommodation-label {
    cursor: pointer;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--conf-primary);
    background: #f8f9fa;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    border: 2px solid transparent;
}

.accommodation-radio:checked + .accommodation-label {
    background: linear-gradient(135deg, var(--conf-primary) 0%, #d66500 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(248, 117, 0, 0.3);
}

.accommodation-label:hover {
    background: var(--conf-premium-card-border);
    transform: translateY(-2px);
}

.accommodation-note {
    background: #fff3e6;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #994800;
}

/* Order Summary */
.order-summary {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 90px;
    border: 1px solid var(--conf-premium-card-border);
}

.summary-header {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f5;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .summary-header i {
        color: var(--conf-primary);
    }

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
}

.summary-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.summary-sub-label {
    font-size: 0.75rem;
    color: #adb5bd;
    margin-top: 2px;
}

.summary-value {
    font-size: 0.95rem;
    color: #495057;
    text-align: right;
}

.summary-divider {
    margin: 16px 0;
    border-color: var(--conf-premium-card-border);
}

.summary-row-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--conf-premium-card-border);
}

.total-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: #212529;
}

.total-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--conf-primary);
}

.btn-pay {
    background: linear-gradient(135deg, var(--conf-primary) 0%, #d66500 100%);
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .btn-pay:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(248, 117, 0, 0.35);
    }

    .btn-pay:disabled {
        opacity: 0.65;
        cursor: not-allowed;
        background: #6c757d;
    }

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Form Fields */
.registration-section .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.registration-section .form-control,
.registration-section .form-select {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.88rem;
    transition: all 0.3s ease;
}

    .registration-section .form-control:focus,
    .registration-section .form-select:focus {
        border-color: var(--conf-primary);
        box-shadow: 0 0 0 0.2rem rgba(var(--conf-primary-rgb), 0.15);
    }

/* Includes Section UI */
.includes-card {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.includes-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2b2b2b;
    display: flex;
    align-items: center;
}

.includes-title i {
    font-size: 1.3rem;
    color: var(--conf-primary);
}

.include-item {
    font-size: 0.88rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: white;
    border-radius: 8px;
    border: 1px solid #f1f3f5;
    transition: all 0.2s ease;
    height: 100%;
}

.include-item:hover {
    border-color: rgba(248, 117, 0, 0.3);
    box-shadow: 0 2px 8px rgba(248, 117, 0, 0.08);
    transform: translateY(-2px);
}

.include-item i {
    color: var(--conf-primary);
    font-size: 1.15rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .order-summary {
        position: relative;
        top: 0;
    }
}

@media (max-width: 767px) {
    .registration-section.section {
        padding: 24px 0 32px;
    }

    .reg-form-section {
        padding: 16px;
        margin-bottom: 12px;
    }

    .order-summary {
        padding: 16px;
    }

    .registration-fees-table th,
    .registration-fees-table td {
        padding: 8px 6px;
        font-size: 0.75rem;
    }

    .price-label {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .total-value {
        font-size: 1.25rem;
    }
}

.summary-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 12px;
}
