
.industries-header {
    background: linear-gradient(rgba(15, 61, 46, 0.85), rgba(43, 43, 43, 0.85)),  
                url('../images/product.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.industries-header .hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.industries-header .hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.industries-header .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Industries Overview Section */
.industries-overview {
    background-color: var(--light-bg);
}

.industry-statistics,
.industry-benefits {
    padding: 2rem;
    height: 100%;
}

.industry-statistics h3,
.industry-benefits h3 {
    color: var(--corporate-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.industry-statistics .stat-item {
    text-align: center;
    padding: 0.5rem;
}

.industry-statistics .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--corporate-teal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.industry-statistics .stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    margin-bottom: 0.8rem;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
}

.benefits-list li i {
    color: var(--corporate-teal);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefits-list li strong {
    color: var(--corporate-blue);
    margin-right: 0.3rem;
}

/* Industries List Section */
.industries-list {
    background-color: #f8f9fa;
}

.industry-card {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    background: white;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--corporate-teal);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--corporate-blue), var(--corporate-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-icon i {
    font-size: 2.5rem;
    color: white;
}

.industry-title {
    color: var(--corporate-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.industry-tag {
    background-color: var(--light-bg);
    color: var(--corporate-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.industry-content h4 {
    color: var(--corporate-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.industry-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-content h5 {
    color: var(--corporate-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.industry-applications,
.industry-solutions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-applications li,
.industry-solutions li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.industry-applications li:before,
.industry-solutions li:before {
    content: "•";
    color: var(--corporate-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.industry-cta {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 1.5rem;
}

/* Other Industries Section */
.other-industries {
    background-color: white;
}

.other-industry-card {
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.other-industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--corporate-teal);
}

.other-industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--corporate-blue), var(--corporate-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.other-industry-icon i {
    font-size: 1.8rem;
    color: white;
}

.other-industry-card h5 {
    color: var(--corporate-blue);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.other-industry-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Industry Consultation Section */
.industry-consultation {
    background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95)), 
                url('../images/industry-consultation-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.industry-consultation .section-title {
    color: var(--corporate-blue);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.consultation-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--corporate-teal);
}

.consultation-form {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.consultation-form h3 {
    color: var(--corporate-blue);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.consultation-form .form-control,
.consultation-form .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.consultation-form .form-control:focus,
.consultation-form .form-select:focus {
    border-color: var(--corporate-teal);
    box-shadow: 0 0 0 3px rgba(0, 150, 136, 0.1);
}

.consultation-form .btn-primary {
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .industries-header .hero-title {
        font-size: 2.5rem;
    }
    
    .industries-header .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .industry-card {
        padding: 1.5rem;
    }
    
    .industry-title {
        font-size: 1.6rem;
    }
    
    .industry-content h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .industries-header {
        padding: 80px 0 60px;
    }
    
    .industries-header .hero-title {
        font-size: 2rem;
    }
    
    .industries-header .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .industries-header .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 0.5rem;
    }
    
    .industry-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1.5rem;
    }
    
    .industry-title {
        text-align: center;
    }
    
    .industry-tags {
        justify-content: center;
    }
    
    .industry-cta {
        text-align: center;
    }
    
    .industry-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .other-industry-card {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .industries-header .hero-title {
        font-size: 1.8rem;
    }
    
    .industries-header .hero-subtitle {
        font-size: 1rem;
    }
    
    .industry-card {
        padding: 1.25rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
}

/* Animation for Statistics */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.industry-statistics .stat-item .stat-number {
    animation: countUp 1s ease-out forwards;
}

/* Industry Color Themes */
#food-beverage .industry-icon {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
}

#pharmaceutical .industry-icon {
    background: linear-gradient(135deg, #66bb6a, #26c6da);
}

#electronics .industry-icon {
    background: linear-gradient(135deg, #5c6bc0, #ab47bc);
}

#automotive .industry-icon {
    background: linear-gradient(135deg, #ffa726, #f57c00);
}

#chemical .industry-icon {
    background: linear-gradient(135deg, #26a69a, #00796b);
}

#metallurgy .industry-icon {
    background: linear-gradient(135deg, #78909c, #546e7a);
}

/* Hover Effects for Industry Cards */
#food-beverage:hover {
    border-color: #ff6b6b;
}

#pharmaceutical:hover {
    border-color: #66bb6a;
}

#electronics:hover {
    border-color: #5c6bc0;
}

#automotive:hover {
    border-color: #ffa726;
}

#chemical:hover {
    border-color: #26a69a;
}

#metallurgy:hover {
    border-color: #78909c;
}

/* Print Styles */
@media print {
    .industries-header {
        background: white !important;
        color: black !important;
        padding: 40px 0 !important;
    }
    
    .industries-header .hero-title {
        color: black !important;
        text-shadow: none !important;
    }
    
    .industries-header .hero-subtitle {
        color: #666 !important;
    }
    
    .hero-buttons,
    .whatsapp-float,
    .back-to-top {
        display: none !important;
    }
    
    .industry-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}