/* ==========================================
   BLENTREE CONTACT FORM WIDGET
   ========================================== */
.elementor-widget-blentree-contact-form,
.elementor-widget-blentree-contact-form > .elementor-widget-container {
    width: 100% !important;
    max-width: 100% !important;
}

.bln-cf-section {
    width: 100%;
    background: #FFFFFF;
    box-sizing: border-box;
}
.bln-cf-section * { box-sizing: border-box; }

.bln-cf-inner {
    padding: 80px 10%;
    width: 100%;
}

.bln-cf-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: start;
}

/* Left info */
.bln-cf-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(26px, 2.6vw, 38px);
    font-weight: 800;
    color: #E63946;
    margin: 0 0 16px;
}
.bln-cf-subtext {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 28px;
    max-width: 420px;
}
.bln-cf-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bln-cf-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
    font-size: 15px;
    color: #1A1A1A;
    line-height: 1.5;
}
/* Icon circle — works for both inline-SVG and font icons */
.bln-cf-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(230,57,70,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.bln-cf-icon i {
    font-size: 16px;
    color: #E63946;
    line-height: 1;
}
.bln-cf-icon svg {
    width: auto;
    height: auto;
    max-width: 20px;
    max-height: 20px;
    display: block;
}
/* Fill-based icons (FA solid) → fill; outline icons (fill="none") → stroke.
   This keeps custom outline SVGs as outlines instead of solid shapes. */
.bln-cf-icon svg:not([fill="none"]),
.bln-cf-icon svg:not([fill="none"]) path {
    fill: #E63946;
}
.bln-cf-icon svg[fill="none"] {
    fill: none;
}
.bln-cf-icon svg[fill="none"] path {
    stroke: #E63946;
}
.bln-cf-info-text {
    flex: 1;
    min-width: 0;
}

/* Form card */
.bln-cf-form {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 36px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.bln-cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.bln-cf-field {
    margin-bottom: 18px;
}
.bln-cf-field label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #E63946;
    margin-bottom: 6px;
}
.bln-cf-field input,
.bln-cf-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #1A1A1A;
    outline: none;
    transition: border-color 0.3s ease;
}
.bln-cf-field input:focus,
.bln-cf-field textarea:focus {
    border-color: #E63946;
}
.bln-cf-field textarea { resize: vertical; }

.bln-cf-form button {
    width: 100%;
    background: #E63946;
    color: #FFFFFF;
    border: none;
    padding: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}
.bln-cf-form button:hover { background: #C42E3A; }
.bln-cf-form button:disabled { opacity: 0.6; cursor: not-allowed; }

.bln-cf-msg {
    margin-top: 14px;
    font-size: 14px;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .bln-cf-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 600px) {
    .bln-cf-inner { padding: 60px 24px; }
    .bln-cf-row { grid-template-columns: 1fr; gap: 0; }
    .bln-cf-form { padding: 24px; }
}
