:root {
    --primary-color: #005ea2;
    --secondary-color: #007bff;
    --accent-color: #f1c40f;
    --text-color: #333;
    --bg-color: #f1f1f1;
    --white: #fff;
    --dark-footer: #1d1d1d;
    --light-gray: #f9f9f9;
    --border-color: #ddd;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: url('/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    background: transparent;
}

.logo {
    max-height: 75px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover {
    transform: scale(1.02);
}

.header-badges {
    display: flex;
    gap: 15px;
}

.badge-secure {
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e8f5e9;
    padding: 6px 12px;
    border-radius: 50px;
}

main {
    padding: 20px 0;
}

section {
    padding: 30px 0;
    text-align: center;
}

#eligibility-section {
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-text-content {
    text-align: left;
}

.hero-text-content h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-text-content h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero-text-content p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #374151;
}

.feature-item i {
    color: #27ae60;
}

.eligibility-box {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.box-header {
    margin-bottom: 20px;
}

.box-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.eligibility-box h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.eligibility-box p {
    color: #6b7280;
    margin-bottom: 30px;
}

.input-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}

.eligibility-box input {
    width: 100%;
    padding: 18px 18px 18px 45px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    font-size: 1.1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.eligibility-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 94, 162, 0.1);
    outline: none;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.loading-subtext {
    display: block;
    font-size: 0.85rem;
    color: #9ca3af;
    margin-top: 5px;
}

.security-info {
    margin-top: 25px;
    font-size: 0.8rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
}

/* Enhanced banking card styles V3 */
.banking-card-v3 {
    background: #ffffff;
    padding: 0;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 94, 162, 0.1);
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.selection-summary {
    background: #f8fafc;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}

.summary-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.summary-item .label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
}

.summary-item .value {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 700;
}

.summary-item .value.highlight {
    color: var(--primary-color);
}

.summary-divider {
    width: 1px;
    height: 30px;
    background: #e2e8f0;
}

.banking-header {
    padding: 35px 35px 10px;
    text-align: left;
}

.banking-header h2 {
    margin: 0 0 10px 0;
    color: #0f172a;
    font-size: 1.6rem;
    font-weight: 800;
}

.banking-form-v3 {
    padding: 0 35px 35px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.field.full {
    grid-column: span 2;
}

.field.half {
    grid-column: span 1;
}

.banking-form-v3 label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 8px;
}

.banking-form-v3 label i {
    color: var(--primary-color);
    width: 20px;
}

.banking-form-v3 input[type="text"],
.banking-form-v3 select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.2s;
    color: #1e293b;
}

.banking-form-v3 input[type="text"]:focus,
.banking-form-v3 select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 94, 162, 0.1);
}

.field-hint {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 5px;
    display: block;
}

.radio-cards {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.radio-card {
    flex: 1;
    cursor: pointer;
    position: relative;
    margin: 0 !important;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-content {
    border: 2px solid #e2e8f0;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    background: #f8fafc;
    text-align: center;
}

.radio-content i {
    font-size: 1.2rem;
    color: #64748b;
}

.radio-content span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.radio-card input:checked + .radio-content {
    border-color: var(--primary-color);
    background: #eff6ff;
}

.radio-card input:checked + .radio-content i {
    color: var(--primary-color);
}

.radio-card input:checked + .radio-content span {
    color: var(--primary-color);
}

.form-actions-v3 {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    padding-top: 30px;
}

.btn-primary {
    flex: 2;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary:hover {
    background: #004c8c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 94, 162, 0.2);
}

.btn-secondary {
    flex: 1;
    background: #f1f5f9;
    color: #475569;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #e2e8f0;
}

.security-footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    padding-top: 15px;
}

.security-seal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
}

.security-seal i {
    color: #22c55e;
}

@media (max-width: 600px) {
    .banking-header {
        padding: 25px 20px 10px;
    }
    .banking-form-v3 {
        padding: 0 20px 25px;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .field.half {
        grid-column: span 1;
    }
    .form-actions-v3 {
        flex-direction: column-reverse;
    }
    .selection-summary {
        padding: 12px 20px;
    }
    .banking-card-v3 {
        border-radius: 0;
        box-shadow: none;
        border: none;
    }
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.25s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #004c8c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 94, 162, 0.25);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button.ghost {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
}

.cta-button.ghost:hover {
    background-color: rgba(0, 94, 162, 0.08);
    border-color: var(--primary-color);
}

.disclaimer {
    margin-top: 20px;
    color: #6b7280;
    font-size: 0.88rem;
    text-align: center;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banking-card {
        padding: 30px;
    }
    
    .banking-header h2 {
        font-size: 1.6rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .banking-form .row {
        gap: 16px;
        margin-bottom: 24px;
    }
    
    .banking-form .field {
        min-width: 100%;
    }
    
    .banking-form .field.small {
        flex: 1;
    }
    
    .radio-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .banking-card {
        border-radius: 12px;
    }
}

.benefit-date {
    font-weight: bold;
    color: var(--primary-color);
    background-color: #e6f3ff;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 15px 0;
}

#eligibility-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

#eligibility-form input {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    font-size: 1rem;
}

#loading {
    margin-top: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 94, 162, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

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

.hero-results {
    padding: 40px 0 20px;
    background: linear-gradient(180deg, rgba(0, 94, 162, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
}

.benefit-summary-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    border: 1px solid #f1f5f9;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-summary-card.result-focus {
    border-top: 5px solid #22c55e;
}

.status-indicator {
    color: #22c55e;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    padding: 8px 20px;
    border-radius: 50px;
}

.summary-info {
    flex: 1;
    text-align: left;
}

.summary-info .subtitle {
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0 0 15px 0;
    color: #0f172a;
    font-weight: 700;
}

.summary-info .subtitle-subtext {
    font-size: 1.1rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.cta-highlight-v2 {
    background: #005ea2;
    color: white;
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 94, 162, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-highlight-v2:hover {
    transform: translateY(-3px);
    background: #004c8c;
    box-shadow: 0 12px 24px rgba(0, 94, 162, 0.3);
}

.anticipation-v2 {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.option-card-v2 {
    background: white;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.option-card-v2:hover {
    transform: translateY(-10px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.option-card-v2.featured {
    border-color: #005ea2;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 94, 162, 0.12);
}

.option-card-v2.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.card-tag {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #94a3b8;
}

.popular-badge-v2 {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #005ea2;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 94, 162, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    color: #005ea2;
    margin-bottom: 20px;
}

.option-card-v2 h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 20px;
}

.card-price {
    margin-bottom: 25px;
}

.card-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #64748b;
    vertical-align: super;
}

.card-price .amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    text-align: left;
    flex-grow: 1;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.95rem;
}

.card-features li i {
    color: #10b981;
    font-size: 1rem;
}

.card-features li i.fa-info-circle {
    color: #94a3b8;
}

.cta-button-v2 {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #005ea2;
    background: transparent;
    color: #005ea2;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-button-v2.primary {
    background: #005ea2;
    color: white;
}

.cta-button-v2:hover {
    background: #005ea2;
    color: white;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.2rem;
    color: #94a3b8;
}

@media (max-width: 900px) {
    .benefit-summary-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .summary-info {
        text-align: center;
    }
    .options-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .option-card-v2.featured {
        transform: none;
    }
    .option-card-v2.featured:hover {
        transform: translateY(-10px);
    }
    .trust-indicators {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #004c8c;
    transform: translateY(-2px);
}



footer {
    background-color: var(--dark-footer);
    color: var(--white);
    padding: 36px 0 18px;
    margin-top: 40px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 24px;
    align-items: start;
    padding-bottom: 12px;
}

.footer-logo {
    max-height: 60px;
    display: block;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-desc {
    color: #cfcfcf;
    max-width: 380px;
    margin: 0;
    line-height: 1.4;
}

.footer-links h4,
.footer-contact h4 {
    margin: 0 0 8px 0;
    color: #fff;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a,
.footer-contact a {
    color: #dcdcdc;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-social {
    margin-top: 8px;
    display: flex;
    gap: 8px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 6px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 18px;
    padding-top: 12px;
    text-align: center;
}

.legal {
    color: #bfbfbf;
    margin: 0;
    font-size: 0.9rem;
}



@media (max-width: 900px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-content {
        text-align: center;
    }
    
    .hero-text-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-text-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        align-items: center;
    }
    
    #eligibility-section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .options-container {
        flex-direction: column;
        align-items: center;
    }
    .option-card {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 720px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .footer-desc { max-width: 100%; }
}