/* LVT Flooring Commercial Sections Styles */

/* General Section */
.lvt-comm-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}
.lvt-comm-section:nth-child(even) {
    background-color: #ffffff;
}
.lvt-comm-header {
    text-align: center;
    margin-bottom: 50px;
}
.lvt-comm-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}
.lvt-comm-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 1. Category Overview */
.lvt-comm-overview {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.lvt-comm-overview p {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
}

/* 2. Scene Entries (Grid of 4) */
.lvt-comm-scenes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.lvt-comm-scene-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
}
.lvt-comm-scene-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.lvt-comm-scene-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.lvt-comm-scene-title {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    background-color: #fff;
}

/* 3. Commercial Advantages */
.lvt-comm-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.lvt-comm-adv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.lvt-comm-adv-card:hover {
    transform: translateY(-5px);
}
.lvt-comm-adv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f0f8e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #8CC63F);
}
.lvt-comm-adv-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}
.lvt-comm-adv-desc {
    color: #666;
    line-height: 1.6;
}

/* 4. CTA Section */
.lvt-comm-cta {
    padding: 100px 0;
    text-align: center;
    background-color: var(--primary-color, #8CC63F);
    color: #fff;
}
.lvt-comm-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}
.lvt-comm-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fff;
    color: var(--primary-color, #8CC63F);
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.lvt-comm-cta-btn:hover {
    background-color: #f4f4f4;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 991px) {
    .lvt-comm-scenes {
        grid-template-columns: repeat(2, 1fr);
    }
    .lvt-comm-advantages {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .lvt-comm-scenes {
        grid-template-columns: 1fr;
    }
    .lvt-comm-section {
        padding: 50px 0;
    }
    .lvt-comm-title {
        font-size: 28px;
    }
}