/* ===== CONTACT PAGE ===== */
#bodydiv {
    background-color: #0a0e1a;
    min-height: 100vh;
}

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* ===== FORM SECTION ===== */
.contact-form-section {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem;
}

.contact-form-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.formcarry-form label {
    display: block;
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 0.4rem;
    color: white;
}

.formcarry-form input,
.formcarry-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    box-sizing: border-box;
    font-family: inherit;
    transition: border-color 0.2s;
    resize: vertical;
}

.formcarry-form input:focus,
.formcarry-form textarea:focus {
    outline: none;
    border-color: #0088a9;
}

.formcarry-form input::placeholder,
.formcarry-form textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.formcarry-form button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background: #0088a9;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.formcarry-form button[type="submit"]:hover {
    background: #006d8a;
}

/* ===== MAP / WIDGET SECTION ===== */
.contact-map-section {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

/* ===== MOBILE ===== */
@media screen and (max-width: 750px) {
    .contact-page {
        grid-template-columns: 1fr;
        padding: 1.5rem 1rem;
    }
}
