/* --- Cấu hình Section --- */
.lead-free-section {
    position: relative;
    width: 100%;
    min-height: 30vh; /* Chiều cao tối thiểu */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 15px;
    overflow: hidden;
}

/* Overlay tối màu (vì nền đá than trong ảnh khá tối nhưng vẫn cần overlay để chữ nét hơn) */
.lead-free-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Độ mờ 60% */
    z-index: 1;
}

.lead-free-container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; /* Căn giữa toàn bộ nội dung */
}

/* --- Icon SVG --- */
.lead-free-icon-box {
    margin-bottom: 30px;
}

.lead-free-icon-box img {
    width: 100px; /* Kích thước icon, bạn chỉnh lại cho vừa với SVG của bạn */
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(234, 192, 134, 0.5)); /* Hiệu ứng tỏa sáng nhẹ cho icon */
}

/* --- Typography --- */
.lead-free-title {
    color: #eac086; /* Màu vàng kim */
    font-size: 32px;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
}

.lead-free-desc-wrapper {
    color: #cfcfcf; /* Màu trắng xám */
    font-size: 13px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto; /* Căn giữa khối text */
}

.lead-free-desc-wrapper p {
    margin-bottom: 15px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .lead-free-title {
        font-size: 24px;
    }
    
    .lead-free-desc-wrapper {
        font-size: 14px;
        text-align: justify; /* Trên mobile căn đều 2 bên cho đẹp */
    }

    .lead-free-icon-box img {
        width: 80px;
    }
}

/* --- Animation Classes --- */
.animate-lead {
    opacity: 0;
    will-change: transform, opacity;
    transition: all 1s ease-out;
}

/* Khi kích hoạt */
.lead-free-section.is-visible .animate-lead {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Hiệu ứng trượt từ dưới lên */
.from-bottom {
    transform: translateY(40px);
}

/* Hiệu ứng Zoom từ nhỏ ra to (cho Icon) */
.from-zoom {
    transform: scale(0.5);
}

/* Delay */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }