.contact-page {
    padding: 6rem 6vw;
    background: #f9fafb;
}

/* LEFT CARDS */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: transform .2s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-card h4 {
    margin-bottom: 8px;
    font-size: 18px;
}

.contact-card p {
    font-size: 16px;
    font-weight: 600;
}

.contact-card span {
    font-size: 13px;
    color: #777;
}

/* Accent colors */
.whatsapp {
    border-left: 5px solid #25D366;
}

.phone {
    border-left: 5px solid #007bff;
}

.email {
    border-left: 5px solid #ff9800;
}

.social {
    border-left: 5px solid #e74c3c
}

.social-card-links a {
    aspect-ratio: 1;
    margin-left: 0.5dvw;
}

.social-card-links a i {
    font-size: 1.5rem;
}

.social-card-links .fb i {
    color: #3b5998 !important;
}

.social-card-links .insta i {
    color: #c32aa3 !important;
}

.social-card-links .youtube i {
    color: #ff0000 !important;
}

.social-card-links .tiktok i {
    color: #010101 !important;
}

.contact-wrapper {
    margin-top: 10dvh !important;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
}

/* LEFT INFO */
.contact-info h2 {
    font-size: 2.3rem;
    color: #142439;
}

.intro {
    margin: 1rem 0 2rem;
    color: #6b7280;
    line-height: 1.7;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    margin-bottom: 0.6rem;
    color: #111827;
}

.info-block p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* PAYMENT */
.payment-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.payment-list li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.badge {
    align-self: flex-start;
    font-size: 0.75rem;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-weight: 500;
}

.badge.online {
    background: rgba(26, 115, 232, 0.12);
    color: #1a73e8;
}

.badge.physical {
    background: rgba(22, 163, 74, 0.12);
    color: #16a34a;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.2rem;
    border: 1px solid #e5e7eb;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #142439;
}

.form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.6rem;
    border: 1px solid #e5e7eb;
    outline: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: black;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #142439;
    box-shadow: 0 0 0 3px rgba(20, 36, 57, 0.08);
}

.contact-form button {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    background: #142439;
    color: #fff;
    border: none;
    border-radius: 0.7rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #1c3158;
    transform: translateY(-2px);
}

.error {
    color: #e63946;
    font-size: 12px;
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/* ------------------ RESPONSIVE ------------------ */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}