.loan-section {
    padding: 80px 40px;
}

.loan-subtitle {
    text-align: center;
    margin-bottom: 20px;
    color: #666;
}

.loan-form-card {
    max-width: 650px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* CARD TYPE GRID */
.cc-label {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 18px;
    color: #ff416c;
}

.cc-type-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.cc-type {
    background: #fafafa;
    padding: 15px 10px;
    border-radius: 14px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .3s;
}

.cc-type:hover {
    transform: translateY(-4px);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.cc-type.selected {
    border-color: #ff416c;
    background: #ffe8f0;
}

.cc-type img {
    width: 45px;
    height: 45px;
    margin-bottom: 6px;
}

.loan-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 16px;
}

/* ERRORS */
.error-border {
    border-color: red !important;
}

.error-msg {
    color: red;
    font-size: 13px;
    height: 14px;
}

/* WhatsApp Float */
.wa-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 55px;
    height: 55px;
    background: #25d366;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.wa-float img {
    width: 100%;
}
