/* CONTACT PAGE SPLIT GRID WORKSPACE */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.contact-section-title {
    text-align: center;
    margin-top: 40px;
    font-size: 2rem;
    color: #4da6ff;
}

/* FORM FIELDS AND TARGETS */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4da6ff;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form .submit-btn {
    background-color: #f4ea02; /* Replace with your primary hardware theme hex */
    color: #000;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form .submit-btn:hover {
    background-color: #d14918;
}

/* RESPONSIVE BREAKPOINT FOR MOBILE ENGINE SCREENS */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


/* Quick Details Sidebar Context Styles */
.quick-details {
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-detail-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fb-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3b5998; /* Facebook Corporate Blue hex code */
    text-decoration: none;
    font-weight: bold;
}

.fb-inline-link:hover {
    text-decoration: underline;
}

.fb-mini-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Footer Icon Positioning rules */
.footer-nav {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 15px;
}

.fb-footer-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.fb-footer-icon:hover {
    transform: scale(1.1); /* Subtle grow action on hover */
}

