.row-0 .row,
.row-0 .row > .col {
	padding-bottom: 0 !important;
}
.lh-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 20px;
}

.lh-head {
    text-align: center;
    margin-bottom: 28px;
}

.lh-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 144, 63, 0.08);
    color: #14903f;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.lh-title {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    color: #111827;
    font-weight: 800;
}

.lh-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}

.lh-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
}

.lh-left,
.lh-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lh-card,
.lh-form-card,
.lh-map-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.04);
    transition: transform .3s ease, box-shadow .3s ease;
}

.lh-card:hover,
.lh-form-card:hover,
.lh-map-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.lh-company {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.35;
    color: #14903f;
    font-weight: 800;
}

.lh-company-desc {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.lh-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lh-info-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    text-decoration: none;
    color: #111827;
    border: 1px solid #edf0f2;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.lh-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.10);
    border-color: rgba(20, 144, 63, 0.25);
    background: linear-gradient(180deg, #ffffff 0%, #f8fffa 100%);
}

.lh-info-card--zalo:hover {
    border-color: rgba(0, 123, 255, 0.25);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.lh-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #14903f;
    background: rgba(20, 144, 63, 0.10);
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.lh-info-card:hover .lh-icon {
    transform: scale(1.06);
    box-shadow: 0 10px 20px rgba(20, 144, 63, 0.14);
}

.lh-info-card--zalo .lh-icon {
    color: #0a7cff;
    background: rgba(10, 124, 255, 0.10);
}

.lh-info-card--zalo:hover .lh-icon {
    box-shadow: 0 10px 20px rgba(10, 124, 255, 0.14);
}

.lh-info-content {
    flex: 1;
    min-width: 0;
}

.lh-label {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 6px;
}

.lh-info-content strong {
    display: block;
    font-size: 16px;
    line-height: 1.55;
    color: #111827;
    word-break: break-word;
}

.lh-map-head h3,
.lh-form-head h3 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #111827;
    font-weight: 800;
}

.lh-form-head p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
}

.lh-form-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 144, 63, 0.08);
    color: #14903f;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.lh-map {
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    margin-top: 16px;
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
}

.lh-form-wrap {
    margin-top: 18px;
}

/* CF7 custom */
.lh-form-wrap .wpcf7-form p {
    margin: 0 0 16px;
}

.lh-form-wrap input[type="text"],
.lh-form-wrap input[type="email"],
.lh-form-wrap input[type="tel"],
.lh-form-wrap textarea {
    width: 100%;
    border: 1px solid #dbe2e8;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.lh-form-wrap textarea {
    min-height: 140px;
    resize: vertical;
}

.lh-form-wrap input:focus,
.lh-form-wrap textarea:focus {
    border-color: #14903f;
    box-shadow: 0 0 0 4px rgba(20, 144, 63, 0.12);
    background: #fcfffd;
}

.lh-form-wrap input[type="submit"] {
    min-height: 50px;
    border: none;
    border-radius: 14px;
    padding: 0 24px;
    background: linear-gradient(135deg, #14903f 0%, #0f7a34 100%);
    color: #fff;
    font-size: 16px;
	margin: 0 auto;
    display: flex;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(20, 144, 63, 0.18);
    transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
}

.lh-form-wrap input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(20, 144, 63, 0.24);
    filter: brightness(1.02);
}

.lh-form-wrap .wpcf7-spinner {
    margin-left: 12px;
}

.lh-form-wrap .wpcf7-not-valid-tip {
    margin-top: 6px;
    font-size: 13px;
}

.lh-form-wrap .wpcf7-response-output {
    margin: 18px 0 0 !important;
    border-radius: 12px;
    padding: 12px 14px !important;
}

/* Responsive */
@media (max-width: 991px) {
    .lh-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .lh-wrap {
        padding: 24px 14px;
    }

    .lh-card,
    .lh-form-card,
    .lh-map-card {
        padding: 18px;
        border-radius: 18px;
    }

    .lh-company {
        font-size: 20px;
    }

    .lh-info-grid {
        grid-template-columns: 1fr;
    }

    .lh-map {
        height: 280px;
    }

    .lh-map-head h3,
    .lh-form-head h3 {
        font-size: 20px;
    }
}