/* Contact Section Desktop Styles (min-width: 769px) */
.contact-section {
    padding: 80px 0;
    background-color: var(--contact-bg-color);
    text-align: center;
}

.contact-section .section-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-section .section-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 50px;
    font-weight: normal;
}

.contact-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align content to the top */
    gap: 40px; /* Space between form and info/map columns */
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-column {
    flex: 1; /* Takes up one half */
    padding-right: 20px;
    box-sizing: border-box;
}

.contact-form-column .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.contact-form-column label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.contact-form-column input[type="text"],
.contact-form-column input[type="tel"],
.contact-form-column input[type="email"],
.contact-form-column input[type="subject"],
.contact-form-column select,
.contact-form-column textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    color: #495057;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.075);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.contact-form-column input:focus,
.contact-form-column select:focus,
.contact-form-column textarea:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-submit-contact {
    display: inline-block;
    width: auto;
    padding: 12px 30px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background-color: var(--contact-form-button-bg-color);
    color: var(--contact-form-button-text-color);
}

.btn-submit-contact:hover {
    filter: brightness(90%);
    transform: translateY(-2px);
}

.contact-info-map-column {
    flex: 1; /* Takes up the other half */
    padding-left: 20px;
    box-sizing: border-box;
}

.company-info-card {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.company-info-card h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
}

.company-info-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.company-info-card p:last-child {
    margin-bottom: 0;
}

.company-info-card .fas {
    color: #007bff;
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 20px; /* Ensure icon doesn't shrink too much */
    text-align: center;
    line-height: 1.8; /* Align with text line-height */
}

.company-info-card a {
    color: #007bff;
    text-decoration: none;
}

.company-info-card a:hover {
    text-decoration: underline;
}

.google-map-placeholder {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    background-color: #e0e0e0; /* Placeholder background */
}

.google-map-placeholder iframe {
    border: none;
}

/* Success/Error messages for the form */
.contact-form-column .success-message,
.contact-form-column .error-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}