:root {
    --primary-blue: #1976d2;
    --primary-dark-blue: #0d47a1;
    --primary-red: #d32f2f;
    --text-main: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --black: #212121;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
    position: relative;
    width: 30px;
    height: 30px;
}

.logo-icon i:first-child {
    position: absolute;
    top: 0;
    left: 0;
}
.logo-icon i:last-child {
    position: absolute;
    bottom: 0;
    right: 0;
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    line-height: 1;
}

.logo-text span {
    font-size: 10px;
    color: var(--text-light);
    font-style: italic;
}

.menu-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
}

/* App Container */
#app-container {
    position: relative;
    min-height: calc(100vh - 70px); /* Minus header */
    overflow: hidden;
}

/* Views */
.view {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
    padding-bottom: 80px; /* Space for sticky footer */
}

.view.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- VIEW 1: HOME --- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark-blue) 100%);
    color: var(--white);
    padding: 30px 20px 0;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 20px;
}

.hero-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-dark-blue);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-white:active {
    transform: scale(0.95);
}

.hashtag {
    font-size: 12px;
    margin-top: 15px;
    opacity: 0.8;
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 60%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    display: block;
    mask-image: linear-gradient(to top, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to top, black 50%, transparent 100%);
}

.tabs {
    display: flex;
    background-color: var(--primary-dark-blue);
}

.tab {
    flex: 1;
    padding: 15px 0;
    text-align: center;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.tab.active {
    color: var(--white);
    border-bottom: 3px solid var(--primary-red);
}

.content-section {
    padding: 30px 20px;
    background-color: var(--white);
}

.content-section h3 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 5px;
}

.underline {
    height: 3px;
    width: 40px;
    background-color: var(--primary-red);
    margin-bottom: 20px;
}

.underline.center {
    margin: 10px auto 20px;
}

.content-section p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Tab Content */
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.btn-footer {
    flex: 1;
    padding: 12px 15px;
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-footer.dark {
    background-color: #333;
}

.btn-footer.red {
    background-color: var(--primary-red);
}

.btn-footer:active {
    filter: brightness(0.9);
}

.btn-footer-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.btn-footer-main {
    font-size: 15px;
    font-weight: 700;
}
.btn-footer-sub {
    font-size: 11px;
    font-weight: 400;
    opacity: 0.85;
}

/* ===== OUR LOAN OFFERINGS ===== */
.offerings-section {
    background: #fff;
    padding: 0 20px 20px;
}

.section-heading {
    font-size: 22px;
    font-weight: 700;
    padding: 20px 0 16px;
    margin: 0;
}

.section-heading.red {
    color: var(--primary-red);
}

.offering-card {
    margin-bottom: 32px;
}

.offering-img-wrap {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #f0f0f0;
    height: 220px;
}

.offering-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.offering-info {
    padding: 16px 0 0;
    text-align: center;
}

.offering-info h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.offering-info h4 a {
    color: var(--primary-dark-blue);
    text-decoration: underline;
}

.offering-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ===== FEATURES & BENEFITS GRID ===== */
.features-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    padding: 0 0 30px;
}

.feature-benefit-card {
    padding: 24px 16px 20px;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fb-icon {
    font-size: 32px;
    color: var(--black);
    margin-bottom: 12px;
}

.fb-line {
    width: 40px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
    margin: 0 auto 12px;
}

.feature-benefit-card p {
    font-size: 13px;
    color: var(--text-main);
    line-height: 1.5;
    margin: 0;
}

/* ===== EMI CALCULATOR ===== */
.emi-calc-wrap {
    padding: 24px 20px 100px;
    background: #fff;
}

.emi-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.emi-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.emi-field {
    margin-bottom: 24px;
}

.emi-field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.emi-field-header label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.emi-value-badge {
    background: var(--primary-dark-blue);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.emi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #dde8f5;
    outline: none;
    cursor: pointer;
}

.emi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-dark-blue);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(13,71,161,0.35);
    border: 3px solid #fff;
}

.emi-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-dark-blue);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(13,71,161,0.35);
}

.emi-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 6px;
}

/* EMI Result Card */
.emi-result-card {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 8px 0 20px;
    border: 1px solid #dbe4ff;
}

.emi-result-main {
    text-align: center;
    margin-bottom: 18px;
}

.emi-result-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.emi-result-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-dark-blue);
    margin: 0;
}

.emi-result-divider {
    height: 1px;
    background: #cdd9f5;
    margin-bottom: 18px;
}

.emi-result-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.emi-breakdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dot.blue  { background: var(--primary-dark-blue); }
.dot.red   { background: var(--primary-red); }
.dot.dark  { background: #333; }

.breakdown-label {
    font-size: 12px;
    color: var(--text-light);
    margin: 0 0 2px;
}

.breakdown-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

/* Donut chart */
.emi-donut-wrap {
    text-align: center;
}

.emi-donut {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 10px;
    background: conic-gradient(
        var(--primary-dark-blue) 0% 88.5%,
        var(--primary-red) 88.5% 100%
    );
    -webkit-mask: radial-gradient(farthest-side, transparent 55%, black 56%);
    mask: radial-gradient(farthest-side, transparent 55%, black 56%);
}

.emi-donut-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
}

/* ===== FAQs ===== */
.faq-wrap {
    padding: 24px 20px 100px;
    background: #fff;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    gap: 12px;
}

.faq-arrow {
    font-size: 13px;
    color: var(--text-light);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
}

.faq-a {
    display: none;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.65;
    padding: 0 0 16px;
}

.faq-item.open .faq-a {
    display: block;
    animation: fadeIn 0.25s ease;
}

/* --- VIEW 2: INITIAL LEAD --- */
#view-lead {
    background: radial-gradient(circle at center, #ffffff 0%, #f0f4f8 100%);
    min-height: 100vh;
}

.quote-section {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.quote-icon {
    color: var(--primary-red);
    font-size: 20px;
    opacity: 0.8;
}

.quote-section h3 {
    font-size: 18px;
    color: var(--primary-dark-blue);
    margin: 10px 0;
    line-height: 1.4;
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 20px 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 24px;
    color: var(--primary-red);
}

.feature span {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.2;
}

.person-image-center {
    text-align: center;
    margin-top: -20px;
}

.person-image-center img {
    width: 250px;
    border-radius: 50% 50% 0 0;
    mask-image: radial-gradient(circle, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, black 60%, transparent 100%);
}

.floating-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: -50px 20px 20px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.card-header {
    background-color: #333;
    color: var(--white);
    padding: 20px;
    text-align: center;
    position: relative;
}

.card-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0 0;
    border-style: solid;
    border-color: var(--primary-red) transparent transparent transparent;
}

.card-header h4 {
    font-size: 16px;
    font-weight: 500;
}

.card-body {
    padding: 25px 20px;
}

.form-group {
    margin-bottom: 20px;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="date"],
select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-size: 16px;
    color: var(--text-main);
    background-color: #fafafa;
    transition: border-color 0.3s;
    outline: none;
}

input:focus, select:focus {
    border-color: var(--primary-blue);
    background-color: var(--white);
}

button:disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
}

.btn-dark-full {
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-dark-full:active {
    background-color: #000;
}

.secure-text {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 15px;
}

/* --- VIEW 3: LOAN TYPE --- */
#view-loan-type {
    background: radial-gradient(circle at bottom right, #f8e1e1 0%, #e1ebf8 100%);
    min-height: 100vh;
}

.page-title {
    text-align: center;
    padding: 30px 20px 10px;
}

.page-title h2 {
    font-size: 24px;
    color: var(--black);
}

.banner-with-person {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #e6eef6 0%, #cfdef0 100%);
    padding: 0 20px;
    margin-bottom: 30px;
}

.banner-text {
    flex: 1;
}

.banner-text p {
    font-size: 13px;
    margin: 5px 0;
    color: var(--text-light);
}

.text-red {
    color: var(--primary-red);
}

.banner-with-person img {
    width: 120px;
    margin-top: -20px;
}

.selection-container {
    padding: 0 20px;
}

.selection-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.loan-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.loan-card {
    background: var(--white);
    border: 1px solid var(--primary-dark-blue);
    border-radius: var(--radius-md);
    padding: 20px 15px;
    text-align: center;
    width: calc(50% - 10px);
    font-size: 14px;
    color: var(--primary-dark-blue);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.loan-card:hover, .loan-card:active {
    background-color: var(--primary-dark-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.loan-card.full-width {
    width: 100%;
}

/* --- VIEW 4: CONTACT DETAILS --- */
#view-contact {
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f3 100%);
    min-height: 100vh;
}

.form-container {
    padding: 0 20px 30px;
}

.btn-primary-full {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-dark-blue);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: var(--shadow-md);
}

.btn-primary-full:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-sm);
}

.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
}

/* --- VIEW 5: CIBIL RESULT (MOCK) --- */
#view-result {
    display: none; /* Controlled by JS */
    background-color: var(--white);
    min-height: 100vh;
    padding: 40px 20px;
    text-align: center;
}

.result-container {
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    font-size: 60px;
    color: #4caf50;
    margin-bottom: 20px;
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

#view-result h2 {
    color: var(--black);
    margin-bottom: 10px;
}

.cibil-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    margin-top: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e0e0e0;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 8px solid #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    font-size: 40px;
    font-weight: 700;
    color: #4caf50;
    position: relative;
}

.cibil-message {
    font-size: 16px;
    font-weight: 500;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.loading-overlay.active {
    visibility: visible;
    opacity: 1;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(25, 118, 210, 0.2);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- VIEW 4.5: KYC UPLOAD --- */
#view-kyc {
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f3 100%);
    min-height: 100vh;
}

.kyc-summary {
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-blue);
}

.kyc-summary h4 {
    margin-bottom: 10px;
    color: var(--primary-dark-blue);
}

.kyc-summary p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.upload-card {
    background: var(--white);
    border: 2px dashed #ccc;
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.upload-card:hover {
    border-color: var(--primary-blue);
    background-color: #f8fbff;
}

.upload-icon {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    background-color: #e3f2fd;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.upload-card:hover .upload-icon {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.upload-text {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
}

.upload-subtext {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}

.upload-card input[type="file"] {
    display: none;
}

.face-verification {
    text-align: center;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.camera-frame {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px dashed var(--primary-red);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.camera-frame i {
    font-size: 40px;
    color: #ccc;
}

.btn-capture {
    background-color: var(--primary-red);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-capture i {
    margin-right: 5px;
}

.verification-status {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-light);
}

/* E-Mandate Styles */
.secure-banner {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 10px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.relative-icon {
    position: relative;
}

/* ===================================================
   DOCUMENT UPLOAD VIEW  (Aadhaar / PAN)
   =================================================== */

.doc-upload-view {
    background-color: #ffffff;
    min-height: 100vh;
    flex-direction: column;
    padding-bottom: 0;
}

/* Override: when active, use flex instead of block */
.view.doc-upload-view.active {
    display: flex;
}

/* ---- Top Navigation Bar ---- */
.doc-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 12px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.doc-back-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--black);
    cursor: pointer;
    padding: 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    line-height: 1;
}

.doc-back-btn::after {
    content: '';
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.doc-topbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.doc-icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--black);
    cursor: pointer;
    padding: 4px;
}

/* ---- Step Indicator ---- */
.doc-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px 0;
}

.doc-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dde8f5;
    transition: var(--transition);
}

.doc-step-dot.active {
    background: var(--primary-dark-blue);
    width: 24px;
    border-radius: 4px;
}

.doc-step-dot.done {
    background: #4caf50;
}

/* ---- Title Section ---- */
.doc-title-section {
    padding: 16px 24px 20px;
}

.doc-main-title {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin-bottom: 6px;
}

.doc-sub-title {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

/* ---- Upload tip badge ---- */
.doc-tip-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 10px;
    padding: 10px 14px;
    margin: 0 0 20px;
    font-size: 12px;
    color: #795548;
}

.doc-tip-badge i {
    color: #f9a825;
    font-size: 14px;
    flex-shrink: 0;
}

/* ---- (legacy alias kept for backward compat) ---- */
.doc-upload-header {
    padding: 28px 24px 10px;
    border-bottom: 1px solid #f0f0f0;
}

.doc-upload-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    position: relative;
    padding-bottom: 14px;
}

.doc-upload-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.doc-upload-body {
    flex: 1;
    padding: 24px 24px 100px;
    overflow-y: auto;
}

.doc-upload-group {
    margin-bottom: 24px;
}

.doc-upload-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 500;
}

.doc-upload-zone {
    border: 2px dashed #c8d6e5;
    border-radius: 14px;
    background: #f8fafc;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    gap: 10px;
    padding: 20px;
}

.doc-upload-zone:hover {
    border-color: var(--primary-blue);
    background: #edf4ff;
}

.doc-upload-zone.uploaded {
    border-color: #4caf50;
    background: #f0faf0;
}

.doc-upload-zone input[type="file"] {
    display: none;
}

.doc-preview-img {
    width: 100%;
    max-height: 120px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.doc-upload-btn {
    background: var(--primary-dark-blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(13, 71, 161, 0.30);
    transition: var(--transition);
    pointer-events: none; /* parent zone handles click */
}

.doc-upload-zone:hover .doc-upload-btn {
    background: var(--primary-blue);
    box-shadow: 0 5px 14px rgba(25, 118, 210, 0.40);
    transform: translateY(-1px);
}

.doc-upload-zone.uploaded .doc-upload-btn {
    background: #4caf50;
    box-shadow: 0 3px 10px rgba(76,175,80,0.30);
}

.doc-upload-status {
    font-size: 13px;
    font-weight: 600;
    color: #4caf50;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.doc-upload-error {
    color: var(--primary-red);
    font-size: 13px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Sticky Continue button */
.doc-upload-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: #ffffff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    z-index: 50;
}

.doc-continue-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary-dark-blue);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(13, 71, 161, 0.35);
    letter-spacing: 0.3px;
}

.doc-continue-btn:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-sm);
}

.doc-continue-btn.inactive {
    background: #c5d3e8;
    color: #8fa3bf;
    box-shadow: none;
    cursor: default;
}

/* =====================================================
   HEADER: Sign In Button & User Info
   ===================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-signin {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark-blue));
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.35);
    white-space: nowrap;
}

.btn-signin:active {
    transform: scale(0.95);
}

.header-user {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f0f4ff;
    border: 1px solid #c5d5f5;
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark-blue);
    animation: fadeIn 0.3s ease;
}

.header-user i.fa-circle-user {
    font-size: 18px;
    color: var(--primary-blue);
}

.btn-logout {
    background: none;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    font-size: 15px;
    padding: 2px 4px;
    transition: var(--transition);
}

.btn-logout:active { opacity: 0.6; }

/* =====================================================
   OTP MODAL OVERLAY
   ===================================================== */
.otp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, 0.65);
    z-index: 9999;
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
    animation: overlayIn 0.25s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

@keyframes overlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.otp-overlay[style*="display:none"],
.otp-overlay[style*="display: none"] {
    display: none !important;
}

.otp-modal {
    background: #fff;
    width: 100%;
    max-width: 480px;
    border-radius: 24px 24px 0 0;
    padding: 32px 24px 40px;
    position: relative;
    animation: modalSlideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 340px;
}

@keyframes modalSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.otp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f0f0f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.otp-modal-close:active { background: #e0e0e0; }

/* OTP Steps */
.otp-step {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.otp-step.active {
    display: flex;
}

.otp-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0fe, #d0e3ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(25,118,210,0.2);
}

.otp-modal-icon.success {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #e65100;
    box-shadow: 0 4px 16px rgba(230,81,0,0.2);
}

.otp-modal-icon.verified {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    box-shadow: 0 4px 16px rgba(46,125,50,0.25);
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.otp-modal-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.otp-modal-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Mobile input group */
.otp-input-group {
    display: flex;
    align-items: center;
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
    margin-bottom: 12px;
    background: #fafafa;
}

.otp-input-group:focus-within {
    border-color: var(--primary-blue);
    background: #fff;
}

.otp-country-code {
    padding: 0 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    border-right: 2px solid #e0e0e0;
    line-height: 52px;
    background: #f5f5f5;
    white-space: nowrap;
}

.otp-mobile-field {
    flex: 1;
    border: none !important;
    padding: 15px 14px !important;
    font-size: 16px !important;
    background: transparent !important;
    outline: none;
    width: 100%;
}

/* Error message */
.otp-error {
    width: 100%;
    background: #fff3f3;
    border: 1px solid #ffcdd2;
    border-radius: 8px;
    color: var(--primary-red);
    font-size: 13px;
    padding: 10px 14px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    animation: fadeIn 0.2s ease;
}

/* Primary OTP button */
.otp-btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark-blue));
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(25,118,210,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.otp-btn-primary:active {
    transform: scale(0.97);
    box-shadow: none;
}

.otp-btn-ghost {
    width: 100%;
    padding: 12px;
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.otp-btn-ghost:active { background: #f5f5f5; }

/* 6-box OTP input */
.otp-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
    width: 100%;
}

.otp-box {
    width: 44px !important;
    height: 52px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 10px !important;
    text-align: center;
    font-size: 22px !important;
    font-weight: 700;
    color: var(--primary-dark-blue);
    background: #fafafa !important;
    caret-color: var(--primary-blue);
    transition: all 0.2s ease;
    padding: 0 !important;
    outline: none;
    flex: 1;
    max-width: 52px;
}

.otp-box:focus {
    border-color: var(--primary-blue) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(25,118,210,0.15);
    transform: scale(1.05);
}

.otp-box.filled {
    border-color: var(--primary-dark-blue) !important;
    background: #e8f0fe !important;
}

.otp-box.error-shake {
    border-color: var(--primary-red) !important;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-5px); }
    40%       { transform: translateX(5px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

/* Resend timer row */
.otp-resend-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.otp-resend-link {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.otp-resend-link:disabled {
    color: #aaa;
    text-decoration: none;
    cursor: default;
}

/* Success bar animation */
.otp-success-bar {
    width: 0%;
    height: 5px;
    background: linear-gradient(90deg, #43a047, #66bb6a);
    border-radius: 10px;
    margin-top: 20px;
    animation: fillBar 1.2s ease forwards;
}

@keyframes fillBar {
    from { width: 0%; }
    to   { width: 100%; }
}

/* =====================================================
   E-MANDATE PREMIUM CARD DETAILS BOX
   ===================================================== */
.card-details-box {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
    text-align: left;
}

.card-box-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.card-title-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-box-title {
    font-size: 18px;
    font-weight: 700;
    color: #2e1065; /* Darker indigo matching image */
}

.card-brand-logos {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* VISA Logo Styling */
.brand-logo.visa {
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
    color: #1a1f71;
    font-family: 'Montserrat', sans-serif;
}

/* Mastercard Circle Logo Styling */
.brand-logo.mastercard {
    display: flex;
    align-items: center;
    height: 16px;
}
.brand-logo.mastercard .mc-red {
    width: 14px;
    height: 14px;
    background: #eb001b;
    border-radius: 50%;
    margin-right: -6px;
    opacity: 0.9;
}
.brand-logo.mastercard .mc-yellow {
    width: 14px;
    height: 14px;
    background: #f79e1b;
    border-radius: 50%;
    opacity: 0.9;
}

/* RuPay Logo Styling */
.brand-logo.rupay {
    font-size: 14px;
    font-weight: 800;
    font-style: italic;
    color: #0b4a99;
    display: flex;
    align-items: center;
}
.brand-logo.rupay .rupay-arrow {
    display: inline-block;
    width: 0; 
    height: 0; 
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #ea7227;
    margin-left: 2px;
}

.card-box-arrow {
    color: #1e293b;
    font-size: 16px;
    margin-top: 4px;
    font-weight: bold;
}

.card-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.card-input-group label {
    font-size: 15px;
    font-weight: 500;
    color: #718096;
    text-align: left;
    margin: 0;
}

.card-input-group input {
    width: 100%;
    padding: 14px 16px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    color: #4a5568 !important;
    background: #ffffff !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.card-input-group input::placeholder {
    color: #718096 !important;
    opacity: 0.8 !important;
}

.card-input-group input:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15) !important;
}

.card-input-row {
    display: flex;
    gap: 16px;
}

.card-input-row .col-6 {
    flex: 1;
}

/* =====================================================================
   SIGN IN PAGE (view-signin & view-signin-otp)
   ===================================================================== */
.signin-page-wrap {
    min-height: calc(100vh - 70px);
    background: linear-gradient(160deg, #f0f4ff 0%, #e8f0fe 100%);
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
}

.signin-back-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.signin-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 24px 24px;
    text-align: center;
}

.signin-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(25,118,210,0.35);
    animation: pulseCircle 2.5s ease-in-out infinite;
}

.signin-icon-circle.otp-blue {
    background: linear-gradient(135deg, #1565c0, #0d47a1);
}

@keyframes pulseCircle {
    0%, 100% { box-shadow: 0 8px 24px rgba(25,118,210,0.35); }
    50%       { box-shadow: 0 8px 32px rgba(25,118,210,0.55); }
}

.signin-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 8px;
}

.signin-subtitle {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.signin-card {
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    padding: 28px 24px 40px;
    margin-top: auto;
    flex-shrink: 0;
}

.signin-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Sign-in OTP boxes (slightly larger than modal ones) */
.signin-otp-box {
    width: 44px;
    height: 52px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid #c5cae9;
    border-radius: 10px;
    outline: none;
    background: #f8f9ff;
    color: var(--primary-dark-blue);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    caret-color: transparent;
}

.signin-otp-box:focus {
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(25,118,210,0.15);
    transform: scale(1.06);
}

.signin-otp-box.filled {
    border-color: var(--primary-dark-blue);
    background: #e8f0fe;
}

/* =====================================================================
   KYC PENDING PAGE
   ===================================================================== */
.kyc-pending-wrap {
    min-height: calc(100vh - 70px);
    background: #f4f6fb;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 40px;
}

/* Header */
.kyc-pending-header {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: #fff;
    padding: 40px 24px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 0 0 32px 32px;
    position: relative;
    overflow: hidden;
}

.kyc-pending-header::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.kyc-pending-header::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -30px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

/* Pulse ring animation */
.kyc-pulse-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    animation: kycPulse 2s ease-in-out infinite;
}

.kyc-pulse-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    animation: kycRingGrow 2s ease-in-out infinite;
}

@keyframes kycPulse {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.06); }
}

@keyframes kycRingGrow {
    0%   { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.4); }
}

.kyc-pulse-inner {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

.kyc-pending-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.kyc-pending-subtitle {
    font-size: 14px;
    opacity: 0.85;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.kyc-eta-badge {
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

/* Steps Card */
.kyc-steps-card {
    background: #fff;
    margin: 0 16px;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.kyc-steps-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.kyc-step-list {
    display: flex;
    flex-direction: column;
}

.kyc-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.kyc-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    background: #e8eaf0;
    color: #aaa;
    transition: all 0.3s;
}

.kyc-step.done .kyc-step-icon {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #a5d6a7;
}

.kyc-step.active .kyc-step-icon {
    background: #e3f2fd;
    color: var(--primary-blue);
    border: 2px solid #90caf9;
    box-shadow: 0 0 0 4px rgba(25,118,210,0.12);
}

.kyc-step.pending .kyc-step-icon {
    background: #f5f5f5;
    color: #bdbdbd;
    border: 2px dashed #e0e0e0;
}

.kyc-step-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kyc-step-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.kyc-step.pending .kyc-step-title {
    color: #bdbdbd;
}

.kyc-step-desc {
    font-size: 12px;
    color: var(--text-light);
}

.kyc-step-connector {
    width: 2px;
    height: 24px;
    background: #e0e0e0;
    margin-left: 19px;
    border-radius: 2px;
}

.kyc-step-connector.done {
    background: #a5d6a7;
}

.kyc-step-connector.active {
    background: linear-gradient(to bottom, #a5d6a7, #90caf9);
}

/* Info Card */
.kyc-info-card {
    background: #fff;
    margin: 0 16px;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.kyc-info-title {
    font-size: 14px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.kyc-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kyc-info-list li {
    font-size: 13px;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.kyc-info-list li i {
    color: #4caf50;
    font-size: 14px;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Support Card */
.kyc-support-card {
    background: #fff;
    margin: 0 16px;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    display: flex;
    align-items: center;
    gap: 14px;
}

.kyc-support-icon {
    font-size: 28px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.kyc-support-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2px;
}

.kyc-support-desc {
    font-size: 12px;
    color: var(--text-light);
}

.kyc-support-btn {
    margin-left: auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(25,118,210,0.3);
    transition: transform 0.2s;
}

.kyc-support-btn:active {
    transform: scale(0.93);
}

/* Refresh Button */
.kyc-refresh-btn {
    margin: 4px 16px 0;
    width: calc(100% - 32px);
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark-blue));
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 20px rgba(25,118,210,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.kyc-refresh-btn:active {
    transform: scale(0.97);
    box-shadow: 0 2px 8px rgba(25,118,210,0.25);
}
