﻿/* --------------------------------------------------
       INPUT / TEXTAREA
    -------------------------------------------------- */
input,
textarea {
    color: cadetblue !important;
}

    textarea::placeholder,
    input::placeholder {
        opacity: 0.5;
        color: lightgray !important;
    }

/* --------------------------------------------------
       CONTACT SECTION
    -------------------------------------------------- */
.contact-section {
    background: #fff;
    min-height: 80vh;
}

/* --------------------------------------------------
       TABS (FINAL)
    -------------------------------------------------- */
.contact-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

    .contact-tabs .nav-link {
        background: #f4f7fe;
        border: none;
        border-radius: 40px;
        padding: 10px 22px;
        font-weight: 500;
        color: #495057;
        transition: all 0.25s ease;
        font-size: 15px;
        white-space: nowrap;
    }

        .contact-tabs .nav-link:hover {
            background-color: #e0e9ff;
            color: #0d6efd;
        }

        .contact-tabs .nav-link.active {
            background-color: #0d6efd;
            color: #fff;
            font-weight: 600;
            box-shadow: 0 4px 14px rgba(13, 110, 253, 0.25);
        }

/* --------------------------------------------------
       CARD
    -------------------------------------------------- */
.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------
       BUTTON
    -------------------------------------------------- */
.btn-tooparla {
    background-color: #0d6efd;
    color: #fff;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    transition: 0.2s;
}

    .btn-tooparla:hover {
        background-color: #0047cc;
    }

/* --------------------------------------------------
       MOBILE
    -------------------------------------------------- */
@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }

    .contact-tabs {
        justify-content: center;
    }

        .contact-tabs .nav-link {
            font-size: 14px;
            padding: 8px 18px;
            margin: 4px;
        }
}
