.elementor-1824 .elementor-element.elementor-element-9276a25{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1824 .elementor-element.elementor-element-9276a25:not(.elementor-motion-effects-element-type-background), .elementor-1824 .elementor-element.elementor-element-9276a25 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:var( --e-global-color-kadence8 );}.elementor-1824 .elementor-element.elementor-element-40e46f1{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8b93073 *//* 1. SECTION & GRID LAYOUT */
.contact-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
    color: #333;
    line-height: 1.6;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #111;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr; /* Info is narrower, Form is wider */
    gap: 50px;
    align-items: start;
}

/* 2. INFO CARDS (Left Side) */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.info-icon {
    font-size: 22px;
    background: #f4f7fa;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-card h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #111;
}

.info-card p {
    margin: 2px 0 0 0;
    font-size: 0.9rem;
    color: #666;
}

/* 3. FORM STYLING (Right Side) */
.contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input & Textarea Fields */
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container select,
.contact-form-container textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e1e1e1;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    border-color: #3498db; /* Change to your brand color */
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

/* 4. SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    background-color: #3498db; /* Your Brand Color */
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.submit-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* 5. RESPONSIVE (Mobile) */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        padding: 40px 15px;
    }

    .contact-form-container {
        padding: 25px;
    }
}

/* Hide the Honeypot Field if plugin is active */
.wpcf7-honeypot {
    display: none !important;
}/* End custom CSS */