/* Global Styles */
body {
    font-family: 'Roboto', 'Inter', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #333;
    line-height: 1.6;
}

.main-content {
    flex: 1;
    padding-bottom: 50px;
}

.an {
    display: none;
}

/* Premium Header */
.header-premium {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border-bottom: 3px solid #031fab;
}

.header-logo {
    max-height: 85px;
    transition: all 0.3s;
}

.header-logo:hover {
    transform: scale(1.05);
}

.header-title {
    color: #031fab;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.header-subtitle {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.header-subtitle i {
    color: #031fab;
    margin-right: 8px;
}

/* Premium Card Section */
.section-card {
    background: #fff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-header {
    background: linear-gradient(90deg, #031fab 0%, #0056b3 100%);
    color: #fff;
    padding: 12px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.section-header i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.section-body {
    padding: 25px;
}

/* Input Fields Polish */
.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 10px 15px;
    font-size: 0.95rem;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.form-control:focus {
    border-color: #031fab;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(3, 31, 171, 0.1);
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #eee;
    opacity: 1;
}

label.control-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Footer */
.footer-premium {
    background: #031fab;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: auto;
}

/* Button Polish */
/* Button Polish */
.btn-premium {
    background: linear-gradient(90deg, #031fab 0%, #2f54eb 100%);
    color: white !important;
    border: none;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(3, 31, 171, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
    z-index: -1;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 31, 171, 0.5);
    color: white !important;
}

/* Wizard Steps */
.step-wizard-list {
    background: #fff;
    color: #333;
    list-style-type: none;
    border-radius: 50px;
    display: flex;
    padding: 20px 10px;
    position: relative;
    z-index: 10;
    margin-bottom: 30px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.step-wizard-item {
    padding: 0 20px;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    min-width: 170px;
    position: relative;
}

.step-wizard-item+.step-wizard-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: #e0e0e0;
    width: 100%;
    height: 3px;
    transform: translateX(-50%);
    z-index: -10;
}

.progress-count {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    color: #fff;
    background: #e0e0e0;
    transition: all 0.3s ease;
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    color: #999;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Active State */
.step-wizard-item.current-item .progress-count {
    background: #031fab;
    box-shadow: 0 0 20px rgba(3, 31, 171, 0.4);
    transform: scale(1.1);
}

.step-wizard-item.current-item .progress-label {
    color: #031fab;
    font-weight: 800;
}

/* Completed State */
.step-wizard-item.completed-item .progress-count {
    background: #28a745;
    color: #fff;
}

.step-wizard-item.completed-item+.step-wizard-item:after {
    background: #28a745;
}

.step-wizard-item.completed-item .progress-label {
    color: #28a745;
}

.main-title-card {
    background: transparent;
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
    border-bottom: 2px dashed #031fab;
}

.main-title-card h2 {
    color: #031fab;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    font-size: 1.6rem;
    letter-spacing: 1px;
}


.formnhap {
    animation: slideInUp 0.6s ease;
    background: #fff;
    border: 5px solid #031fab;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 50px;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input Fields Beauty */
.form-control {
    border: 1px solid #d1d9e6;
    border-radius: 8px;
    transition: all 0.2s ease;
    height: auto !important;
    min-height: 48px;
    padding: 10px 18px;
    font-size: 15px;
    line-height: 1.5;
    color: #2d3436;
    background-color: #fdfdfd;
}

select.form-control {
    height: auto !important;
    min-height: 48px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.5;
    cursor: pointer;
}

.form-control:focus {
    border-color: #031fab;
    box-shadow: 0 0 8px rgba(3, 31, 171, 0.2);
    background-color: #fff;
}

label.control-label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .step-wizard-item {
        min-width: unset;
        padding: 0 5px;
    }

    .progress-label {
        font-size: 10px;
        margin-top: 5px;
    }

    .step-wizard-list {
        padding: 15px 5px;
    }

    .radio-card-group {
        flex-direction: column;
    }

    .radio-card {
        max-width: 100%;
    }

    .amount-badge {
        font-size: 1.2rem;
        padding: 8px 15px;
    }
}

/* Premium Radio Cards */
.radio-card-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.radio-card {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.radio-card input {
    display: none;
}

.radio-card-label {
    display: block;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
}

.radio-card-icon {
    font-size: 2rem;
    color: #999;
    margin-bottom: 10px;
    display: block;
}

.radio-card input:checked+.radio-card-label {
    border-color: #031fab;
    background: rgba(3, 31, 171, 0.05);
}

.radio-card input:checked+.radio-card-label .radio-card-icon {
    color: #031fab;
}

.radio-card-title {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.radio-card-desc {
    font-size: 0.9rem;
    color: #666;
}

/* Upload Box Styling */
.upload-box {
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    background: #fafafa;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.upload-box:hover {
    border-color: #031fab;
    background: #fff;
}

.upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-icon {
    font-size: 2.5rem;
    color: #031fab;
    margin-bottom: 10px;
}

.upload-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.upload-filename {
    font-size: 0.8rem;
    color: #28a745;
    font-weight: bold;
    margin-top: 5px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upload-btn-fake {
    display: inline-block;
    padding: 5px 15px;
    background: #031fab;
    color: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Step 3 Premium UI */
.bank-card {
    background: linear-gradient(135deg, #031fab 0%, #00d2ff 100%);
    border-radius: 15px;
    padding: 25px;
    color: white;
    box-shadow: 0 10px 20px rgba(3, 31, 171, 0.3);
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.bank-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.bank-card .bank-name {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.bank-card .account-number {
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-family: 'Consolas', monospace;
    margin: 15px 0;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.bank-card .account-holder {
    font-size: 0.9rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.step-instruction {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #031fab;
    margin-bottom: 25px;
}

.direct-payment-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.direct-payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.amount-badge {
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    display: inline-block;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Premium Footer */
.footer-premium {
    background: #031fab;
    background: linear-gradient(135deg, #031fab 0%, #021a8d 100%);
    color: #fff;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffcc00 0%, #031fab 50%, #ffcc00 100%);
    opacity: 0.8;
}

.footer-col-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffcc00;
    border-radius: 2px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #ffcc00;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    margin-top: 5px;
    margin-right: 15px;
    color: #ffcc00;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #ffcc00;
    color: #031fab;
    transform: translateY(-3px);
}