/* Industries Page Specific Styles */

/* Hero Section */
.industries-hero {
    background: linear-gradient(135deg, #1a2a6c 0%, #2a5298 100%);
    padding: 5rem 0;
}

/* Industry Icon Styles */
.industry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.industry-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Related Links Styles */
.related-links {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.related-links h4 {
    color: #1f2937;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.related-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-links li {
    margin-bottom: 0.5rem;
}

.related-links li:last-child {
    margin-bottom: 0;
}

.link-primary {
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-primary:hover {
    color: #059669;
    text-decoration: underline;
}

.link-secondary {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-secondary:hover {
    color: #1e40af;
    text-decoration: underline;
}

.industries-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.industries-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.industries-hero .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.industries-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.industries-hero .subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.industries-hero .value-proposition {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.industries-hero .hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header .section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Application Cards */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.enhanced-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.enhanced-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0;
}

.industry-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-metrics {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.metric-item {
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
}

.metric-label {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.pain-points h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.pain-points ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pain-points li {
    background: #f0f8ff;
    color: #007bff;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.btn.expanded {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding: 12px;
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.case-header h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin: 0;
}

.case-content h4 {
    color: #2c3e50;
    margin: 1.5rem 0 1rem;
}

.case-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-content ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.case-content li {
    margin-bottom: 0.5rem;
    color: #555;
}

.challenge-section {
    background: #fff8f0;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.solution-section {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.results-section {
    background: #f0fff0;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Industries CTA */
.industries-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.industries-cta .cta-content {
    flex: 1;
    max-width: 600px;
}

.industries-cta .cta-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .industries-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .industries-hero .hero-buttons {
        justify-content: center;
    }
    
    .industries-cta .container {
        flex-direction: column;
        text-align: center;
    }
    
    .industries-cta .cta-buttons {
        justify-content: center;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .industries-hero h1 {
        font-size: 2.2rem;
    }
    
    .industries-hero .subtitle {
        font-size: 1.4rem;
    }
    
    .industries-hero .value-proposition {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .applications-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-metrics {
        flex-direction: column;
        gap: 1rem;
    }
}