    /* WRAPPER */
.contact-wrapper {
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
}

.report-wrapper {
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
}

/* CARD */
.contact-card {
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 35px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.report-card {
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    border-radius: 22px;
    padding: 40px 35px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}
/* TITLES */
.contact-title {
    font-size: 32px;
    font-weight: 900;
    color: #0f3460;
    margin-bottom: 10px;
}

.contact-subtitle {
    font-size: 16px;
    color: #5b6c8f;
    margin-bottom: 25px;
}

.report-title {
    font-size: 32px;
    font-weight: 900;
    color: #0f3460;
    margin-bottom: 10px;
}

.report-subtitle {
    font-size: 16px;
    color: #5b6c8f;
    margin-bottom: 25px;
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.report-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}


/* INPUT GROUP */
.input-group label {
    font-size: 14px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 6px;
    display: block;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa0a6;
    font-size: 15px;
}

.input-icon input {
    width: 100%;
    height: 48px;
    padding-left: 42px;
    padding-right: 12px;
    border-radius: 12px;
    border: 1px solid #d0d4da;
    background: #f8f9fc;
    font-size: 15px;
    color: #333;
    transition: all 0.25s ease;
}

.input-icon input:focus {
    background: #ffffff;
    border-color: #3a86ff;
    box-shadow: 0 0 0 3px rgba(58,134,255,0.15);
    outline: none;
}

/* TEXTAREA */
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #d0d4da;
    background: #f8f9fc;
    font-size: 15px;
    color: #333;
    transition: all 0.25s ease;
}

textarea:focus {
    background: #ffffff;
    border-color: #3a86ff;
    box-shadow: 0 0 0 3px rgba(58,134,255,0.15);
    outline: none;
}

/* BUTTON */

.contact-btn {
    width: 100%;
    background: #3a86ff;
    color: white;
    font-weight: 700;
    padding: 14px 0;
    border-radius: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(58,134,255,0.25);
}

.contact-btn:hover {
    background: #2563eb;
    box-shadow: 0 8px 22px rgba(37,99,235,0.35);
}


.report-btn {
    width: 100%;
    background: #3a86ff;
    color: white;
    font-weight: 700;
    padding: 14px 0;
    border-radius: 12px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(58,134,255,0.25);
}

.report-btn:hover {
    background: #2563eb;
    box-shadow: 0 8px 22px rgba(37,99,235,0.35);
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .contact-card {
        padding: 30px 25px;
    }

    .contact-title {
        font-size: 26px;
    }
}