body {
    margin: 0;
    color: #111;
}

.contact-section {
    padding: 6rem 3rem;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

/* FORM */
.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.intro {
    color: #555;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
}

.contact-form button {
    margin-top: 0.5rem;
    padding: 0.9rem;
    border: none;
    border-radius: 6px;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
}

.contact-form button:hover {
    background: #222;
}

/* ALERTS */
.form-alert {
    padding: 0.9rem 1rem;
    border-radius: 6px;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.form-alert.success {
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
}

.form-alert.error {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* DETAILS */
.contact-details {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-details h3 {
    margin-bottom: 1rem;
}

.contact-details p {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-details a {
    color: #000;
    text-decoration: none;
}

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

    .form-row {
        flex-direction: column;
    }
}