/* ============================================
   WCC VINYL FLOORING STYLES
   ============================================ */

/* Flooring Types Grid */
.flooring-types {
    padding: 80px 0;
    background: white;
}

.flooring-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.flooring-item {
    background: #f8f9fa;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.flooring-item:hover {
    background: white;
    border-color: #28a745;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.15);
}

.flooring-item .flooring-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.flooring-item .flooring-icon i {
    font-size: 24px;
    color: white;
}

.flooring-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    line-height: 1.4;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.projects-table {
    margin-top: 40px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.projects-table table {
    margin: 0;
}

.projects-table thead {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.projects-table thead th {
    color: white;
    font-weight: 600;
    padding: 15px;
    border: none;
}

.projects-table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
}

.badge-completed {
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-progress {
    background: #ffc107;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Project Gallery */
.project-gallery {
    padding: 80px 0;
    background: white;
}

.gallery-tabs {
    margin-top: 50px;
}

.gallery-category {
    margin-bottom: 50px;
}

.gallery-category h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #28a745;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cert-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cert-logo-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cert-logo-item:hover {
    border-color: #28a745;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.15);
}

.cert-logo-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 10px;
}

.cert-logo-item p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

/* Core Values Detailed */
.core-values-detailed {
    padding: 80px 0;
    background: white;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-detail-item {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-detail-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.value-icon-large {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon-large i {
    font-size: 40px;
    color: white;
}

.value-detail-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.value-detail-item p {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* Vision & Mission - WCC Flooring specific */
.vision-mission {
    padding: 80px 0;
    background: white;
}

.vm-card {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.vm-card .vm-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vm-card .vm-icon i {
    font-size: 40px;
    color: white;
}

.vm-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Contact Info Banner - WCC Flooring specific */
.contact-info-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 15px;
}

.contact-info-item i {
    font-size: 32px;
    color: white;
    min-width: 40px;
}

.contact-info-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.contact-info-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* CTA Section - WCC Flooring specific */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #2d3748;
}

/* Responsive Design */
@media (max-width: 768px) {
    .flooring-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .projects-table {
        padding: 15px;
        overflow-x: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .cert-logos {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}