/* contact-style.css */
.contact-page {
    background-color: #0a1f44 !important;
    min-height: 100vh;
    padding-top: 160px !important;
    padding-bottom: 80px;
}

/* LEFT COLUMN: Division Styling */
.division-card {
    background: rgba(255, 255, 255, 0.08); /* Professional Glass Effect */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.division-card:hover {
    border-color: #3498db;
    background: rgba(255, 255, 255, 0.12);
}

/* Title Styling: White, Large, Bold, No All-Caps */
.division-label {
    display: block;
    color: #ffffff !important; /* White text as requested */
    font-size: 1.6rem;         /* Large font */
    font-weight: 800;          /* Extra bold */
    text-transform: none;      /* Removed All-Caps */
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-mini-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 12px;
    border-radius: 12px;
}

.thumb-fixed {
    width: 60px; /* Reduced size */
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

/* RIGHT COLUMN: Form Styling (Preserving all fields) */
.form-container-premium {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.field-label {
    color: #0f172a;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 6px;
    display: block;
}

.input-custom {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #f8fafc;
}

.btn-premium {
    background: #3498db;
    color: white;
    border: none;
    padding: 16px;
    width: 100%;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
}