/* ========================================
   Cable Satelite - Custom Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ---- General ---- */
body {
    background-color: #f5f6fa;
    margin: 0;
    padding: 0;
    color: #333;
}

/* ---- Header ---- */
.header-banner {
    background-color: #F59020;
}

.header-logo {
    max-width: 180px;
    height: auto;
}

/* ---- Progress Steps ---- */
.progress-steps {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    border-radius: 10px;
    color:#000;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
  
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    
}

    .step-item.active {
        background: #E91A2F !important;
        color: #fff !important;
        border-radius: 10px;
    }

.step-item.completed {
    background: #4caf50;
    color: #fff;
}

/* ---- Section Headings ---- */
.section-heading {
    font-weight: 800;
    font-size: 30px;
    color: #000;
    position: relative;
    padding-bottom: 8px;
}


/* ---- Card Section (Client Data) ---- */
.client-data-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #eee;
}

/* ---- Client Code Section ---- */
.client-code-section {
    background: linear-gradient(135deg, #fff7f0, #fff3e0);
    border: 1px solid #ffe0b2;
    border-radius: 12px;
    padding: 24px 30px;
    margin-bottom: 30px;
}

.client-code-section label {
    font-weight: 600;
    font-size: 15px;
    color: #555;
}

.client-data-card {
    background-color: #f4f4f4 !important;
}

.btn-accept {
    background-color: #1A7EFB !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 30px;
    border-radius: 30px !important;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(230, 92, 0, 0.2);
    width: 100%;
    min-width: 130px;
}


/* ---- Form Labels & Inputs ---- */
.form-label {
    font-weight: 700;
    font-size: 16px;
    color: #424344;
    margin-bottom: 6px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #e65c00;
    box-shadow: 0 0 0 3px rgba(230, 92, 0, 0.1);
    outline: none;
}

.form-control[readonly] {
    background-color: #f8f9fa;
    color: #666;
}

.input-validation-error {
    border: 1px solid #dc3545 !important;
}


.form-validation-error {
    border: 1px solid #dc3545 !important;
}

/* ---- Card Details Section ---- */
.card-details-section {
   
   
    margin-bottom: 30px;

}

.card-wrapper {
    margin-top: 10px;
}

/* ---- PCI Banner ---- */
.pci-banner {
    background-color: #fbfff5;
    border: 1px solid #D0E0BB;
    border-left: none !important;
    border-radius: 8px;
    padding: 0px 24px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

    .pci-banner .checkmark-icon {
        width: 48px;
        height: 48px;
        background-color: #4caf50;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        font-size: 24px;
        font-weight: bold;
    }

    .pci-banner .pci-text {
        flex-grow: 1;
        font-family: Arial, sans-serif;
        font-size: 16px;
        line-height: 1.4;
        color: #6D9433;
        padding-left: 90px;
    }

.pci-logo {
    width: 80px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}


@media (max-width: 768px) {
    .pci-banner {
        flex-direction: column;
        text-align: center;
        border: 1px solid #4caf50 !important;
        padding-left: 0px;
    }

    .shield-image {
        left: 42% !important;
    }

    .pci-banner .pci-text {
        margin-bottom: 16px;
        margin-top: 80px;
        text-align: center;
        padding-left: 20px;
    }

    .shield-img {
        width: 50px !important;
    }

    .captcha {
        overflow-x: scroll
    }
}

/* ---- Captcha ---- */
.captcha-section {
    margin-top: 30px;
}

.captchaAlert {
    display: none;
    color: #dc3545;
    font-size: 13px;
    margin-top: 8px;
}

/* ---- Terms and Conditions ---- */
.terms-section {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    letter-spacing: 0.3px;
}

    .terms-section a {
        color: #ef6170;
        text-decoration: underline;
        font-weight: 600;
    }

.terms-section a:hover {
    color: #d45500;
}

.termsConditionAlert {
    display: none;
    color: #dc3545;
    font-size: 13px;
    margin-top: 8px;
}

/* ---- Buttons ---- */

.btn-continue {
    background: #E91A2F !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 30px;
    border-radius: 30px !important;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(230, 92, 0, 0.2);
}

.btn-continue:hover:not(:disabled) {
    background: #E91A2F !important;
    box-shadow: 0 4px 16px rgba(230, 92, 0, 0.35);
    transform: translateY(-1px);
    color: #fff;
}


.btn-continue:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}



.btn-back ,.btn-print, .btn-finish {
    background: #E91A2F !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 10px 30px;
    border-radius: 30px !important;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .btn-print, .btn-finish ,.btn-back:hover:not(:disabled) {
        background: #E91A2F !important;
        box-shadow: 0 4px 16px rgba(230, 92, 0, 0.35);
        transform: translateY(-1px);
        color: #fff;
    }





.btn-back:hover {
    background: #fff5ee;
    box-shadow: 0 2px 8px rgba(230, 92, 0, 0.15);
}

.btn-print {
    background: #fff;
    color: #333;
    border: 2px solid #333;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-print:hover {
    background: #f5f5f5;
}

.btn-finish {
    background: linear-gradient(135deg, #e65c00, #f9a825);
    color: #fff;
    border: none;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(230, 92, 0, 0.2);
}

.btn-finish:hover {
    background: linear-gradient(135deg, #d45500, #e89b00);
    box-shadow: 0 4px 16px rgba(230, 92, 0, 0.35);
    transform: translateY(-1px);
    color: #fff;
}

/* ---- Confirmation (Step 2) ---- */
.confirm-row {
    padding: 2px 0;
   
}

.confirm-row:last-child {
    border-bottom: none;
}

.confirm-label {
    font-weight: 800;
    font-size: 16px;
    color: #343940;
}

.confirm-value {
    font-size: 16px;
    font-weight: 600;
    color: #343940;
}

.cvv-section {
 
    margin: 30px 0;
  
}

/* ---- Receipt (Step 3) ---- */
.receipt-card {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.receipt-header-success {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    color: #fff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.receipt-header-failure {
    background: linear-gradient(135deg, #ef5350, #f44336);
    color: #fff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.receipt-body {
    padding: 24px;
    background: #fff;
}

.receipt-row {
    padding: 2px 0;
}

.receipt-row:last-child {
    border-bottom: none;
}

.approved-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
}

.declined-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffebee;
    color: #c62828;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
}

#approvedMessageBox {
    background-color: #7EBA4A;
}
/* ---- Error Alert ---- */
.error-alert {
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    color: #c62828;
    border-radius: 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ---- Footer ---- */
.footer-banner {
   /* background: linear-gradient(135deg, #1a1a2e, #16213e);*/
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.footer-banner p {
    font-size: 13px;
}

/* ---- JP Card overrides ---- */
.jp-card-invalid {
    border: 1px solid red !important;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .header-logo {
        max-width: 140px;
    }

    .step-item {
        font-size: 12px;
        padding: 8px 10px;
    }

    .client-data-card,
    .card-details-section,
    .client-code-section {
        padding: 20px 16px;
    }

    .section-heading {
        font-size: 30px;
    }

    .captcha-section {
        overflow-x: auto;
    }

    .btn-continue,
    .btn-back,
    .btn-print,
    .btn-finish {
        width: 100%;
        padding: 12px;
    }

    .progress-steps {
        border-radius: 12px;
    }

    .confirm-label,
    .confirm-value {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .step-item {
        font-size: 11px;
        padding: 6px 6px;
    }

    .client-code-section {
        padding: 16px;
    }

    .btn-accept {
        width: 100%;
        margin-top: 10px;
    }
}
.footer-banner {
    position: relative;
    background-color: #183473 !important; 
    color: #fff;
    overflow: hidden;
}

    .footer-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/Content/Images/maps.png');
        background-size: cover;
        background-position: 50% 55%;
        background-repeat: no-repeat;
        filter: brightness(600%) grayscale(100%);
    }

    .footer-banner .container {
        position: relative;
        z-index: 2;
    }

.jp-card-container{
    margin: 0px !important;
}

.client-data-card {
    background-color: #e9e9e9;
    border-radius: 12px;
    border: 1px solid #ddd;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.data-label {
    font-weight: 800;
    color: #343940;
    width: 25%;
    text-align: left;
}

.data-value {
    width: 75%;
    text-align: left;
    color: #333;
}

.email-editable-input {
    border: none;
    outline: none;
    background: none;
    color: #333;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
    margin: 0;
    width: 100%;
}

.email-editable-input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.email-editable-input.input-validation-error {
    border: 1px solid #E91A2F;
    border-radius: 4px;
    padding: 4px 8px;
    background-color: #fff5f5;
}

.data-row.email-error {
    border: 1px solid #E91A2F;
    border-radius: 6px;
    padding: 6px 8px;
    background-color: #fff5f5;
}

@media (max-width: 768px) {
    .data-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .data-label,
    .data-value {
        width: 100%;
    }
}
.auto-debit-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #6c757d;
}
.auto-debit-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; 
    font-size: 20px;
    color: #6c757d;
}
.auto-debit-text li {
    margin-bottom: 10px; 
}