/* GLOBAL */
.tw-contact-page {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0A1A3C;
}

/* HERO */
.tw-contact-hero {
    background: #D9EEF7;
    padding: 32px 24px;
    margin-bottom: 24px;
}
.tw-contact-hero h1 {
    margin: 0 0 8px;
}
.tw-contact-hero p {
    margin: 0;
}

/* TWO-COLUMN LAYOUT */
.tw-contact-main {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

/* LEFT COLUMN STACK */
.tw-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* RIGHT COLUMN PORTRAIT */
.tw-right-column {
    flex: 0 0 340px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* LARGE PORTRAIT */
.tw-captain-photo-large {
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* CONTACT CARD */
.tw-contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tw-contact-subtitle {
    margin-top: 0;
    margin-bottom: 16px;
    color: #555;
}

/* INFO ITEMS */
.tw-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tw-contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #777;
}

.tw-contact-value {
    font-size: 0.95rem;
    text-decoration: none;
    color: #0A1A3C;
}

.tw-contact-value:hover {
    text-decoration: underline;
}

.tw-contact-facebook {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tw-contact-facebook-icon {
    background: #1877F2;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FORM WRAPPER */
.tw-contact-form-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tw-contact-form label {
    display: block;
    margin-bottom: 4px;
}

.tw-contact-form input,
.tw-contact-form textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ccd;
}

.tw-btn-submit {
    background: #0A9FB5;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    margin-top: 10px;
}

.tw-btn-submit:hover {
    background: #087f90;
}

.tw-form-status {
    margin-top: 10px;
    font-size: 0.9rem;
}

/* MAP UNDER FORM */
.tw-contact-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.tw-contact-map {
    width: 100%;
    height: 260px;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tw-contact-main {
        flex-direction: column;
    }
    .tw-right-column {
        order: -1;
        display: flex;
        justify-content: center;
    }
    .tw-captain-photo-large {
        max-width: 260px;
    }
}
