/* CONTACT — Contact details, the enquiry form and its status messages. */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info p {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #ffffff;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.08);
}

.contact-item:hover {
    border-color: rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 1.5rem;
    font-size: 1.2rem;
}

.contact-form {
    background: white;
    padding: 3rem;
    border: 3px solid #000000;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #000000;
    font-size: 0.95rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #000000;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
}

/* Visible keyboard focus everywhere else — links, buttons, social icons. */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #000000;
    outline-offset: 3px;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: #000000;
    color: white;
    border: none;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #000000;
}

.submit-btn:hover {
    background: white;
    color: #000000;
    transform: translateY(-2px);
}

.status-message {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #000000;
}

.status-message.success {
    background-color: #ffffff;
    color: #000000;
}

/* The only colour on the page, and only when something actually went wrong. */
.status-message.error {
    background-color: #ffffff;
    color: #8a1c1c;
    border-color: #8a1c1c;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loading-text {
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 2rem;
    }
}
