.elementor-5346 .elementor-element.elementor-element-0fcf7d9{--display:flex;}/* Start custom CSS for ensafcontactform, class: .elementor-element-b8aa236 *//* WRAPPER */
.contact-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* HEADER ABOVE FORM */
.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 24px;
    margin: 0;
    color: #c9b77c;
    font-weight: 600;
}

.contact-header h3 {
    font-size: 52px;
    margin: 10px 0;
    color: #106552;
    font-weight: 700;
}

.contact-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* MAIN CONTACT SECTION */
.contact-section {
    display: grid;
    grid-template-columns: 7fr 3fr; /* Left wider, Right smaller */
    gap: 40px;
}

/* LEFT FORM */
.contact-form-wrapper {
    background: #106552;
    padding: 40px;
    border-radius: 25px;
}

.contact-form-wrapper label {
    display: block;
    margin-bottom: 15px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 25px;
    border: none;
    background: #fff;
    font-size: 14px;
    box-sizing: border-box;
}

.contact-form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
    border-radius: 20px;
}

/* Email + Number row */
.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row-half label {
    margin-bottom: 0;
}

.form-submit {
    margin-top: 20px;
}

.form-button {
    width: 100%;
    padding: 15px;
    background: #D4BC84 !important;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.form-button:hover {
    background: #106552 !important;
}

/* Privacy Note */
.privacy-note {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    font-style: italic;
}

/* RIGHT INFO */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #c9b77c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
}

.contact-details h3 {
    color: #c9b77c;
    font-size: 18px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #1a5f5a;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row-half {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}/* End custom CSS */