/* Contact.css */

.contact-container {
    width: 100%;
    max-width: 1440px;
    /* Optional: limit to large desktop screens */
    margin: 0 auto;
    padding: 40px 30px;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f6f8;
    color: #222;
    box-sizing: border-box;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-size: 2.8rem;
    color: #003366;
}

.contact-header h2 {
    font-size: 1.6rem;
    color: #555;
    margin-top: 10px;
}

.contact-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
}

.contact-info,
.contact-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1 1 48%;
    box-sizing: border-box;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #003366;
}

.contact-info p {
    margin: 8px 0;
}

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

.contact-input,
.contact-textarea {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.contact-textarea {
    height: 120px;
    resize: vertical;
}

.contact-file input[type="file"] {
    margin-top: 8px;
}

.file-note,
.attachment-note,
.recaptcha-note {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-send,
.btn-cancel {
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
}

.btn-send {
    background-color: #003366;
    color: white;
}

.btn-cancel {
    background-color: #ccc;
    color: #222;
}

.contact-region {
    margin-top: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-region h3 {
    color: #003366;
    margin-bottom: 10px;
}

.contact-region ul {
    padding-left: 20px;
}

.contact-region li {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-boxes {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .contact-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .contact-header h1 {
        font-size: 1.8rem;
    }

    .contact-header h2 {
        font-size: 1.2rem;
    }

    .contact-input,
    .contact-textarea {
        font-size: 0.95rem;
    }
}