/* Start custom CSS for html, class: .elementor-element-67b0976 *//* --- CONTAINER SETUP --- */
.contact-section-wrapper {
    --brand-orange: #F68B1E;
    --text-dark: #1a1a1a;
    --text-grey: #666;
    --bg-light: #f9f9f9;
    
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    padding: 80px 20px;
    background: #fff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px; /* Space between columns */
    align-items: flex-start;
}

/* --- LEFT COLUMN: INFO --- */
.contact-info-col {
    flex: 1;
    padding-top: 20px;
}

.highlight-label {
    color: var(--brand-orange);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.contact-heading {
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 0 0 20px 0;
    font-weight: 800;
}

.contact-desc {
    color: var(--text-grey);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Info Items (Email/Phone) */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-row {
    display: flex;
    align-items: flex-start; /* Aligns icon with top of text */
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #FFF4E6; /* Light Orange BG */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-orange);
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-text h5 {
    margin: 0 0 5px 0;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.info-text a, .info-text p {
    margin: 0;
    color: var(--text-grey);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.info-text a:hover {
    color: var(--brand-orange);
}

/* --- RIGHT COLUMN: FORM --- */
.contact-form-col {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
}

.ortho-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input, 
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fdfdfd;
    box-sizing: border-box; /* Fixes padding issues */
}

.form-group input:focus, 
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(246, 139, 30, 0.1); /* Orange Glow */
    background: #fff;
}

/* Submit Button */
.submit-btn {
    background: var(--text-dark);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--brand-orange);
    transform: translateY(-2px);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack columns */
        gap: 40px;
    }

    .contact-info-col {
        padding-top: 0;
        text-align: left; /* Keep left alignment for pro look */
    }

    .contact-heading {
        font-size: 2rem;
    }

    .contact-form-col {
        padding: 25px; /* Less padding on mobile */
        width: 100%;
        box-sizing: border-box;
    }
}/* End custom CSS */