/* Industries Page Specific Styles */

/* Industry Hero */
.industry-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.industry-hero.finance {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5016 100%);
}

.industry-hero.healthcare {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
}

.industry-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,138.7C672,128,768,128,864,144C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.industry-hero .hero-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 1;
}

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

.industry-hero .lead {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
}

.industry-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.industry-hero .stat {
    text-align: center;
}

.industry-hero .stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.industry-hero .stat .label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Industry Challenges */
.industry-challenges {
    padding: 80px 0;
    background: var(--bg-light);
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.challenge-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.challenge-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.challenge-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Industry Solutions */
.industry-solutions {
    padding: 80px 0;
}

.solution-category {
    margin-bottom: 4rem;
}

.solution-category h3 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.solution-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.solution-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.solution-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.solution-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.solution-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.aws-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.aws-services span {
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: var(--bg-light);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.story-card.featured {
    grid-column: span 2;
}

.story-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.story-header .category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.story-content {
    padding: 1.5rem;
}

.story-content .results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.story-content .result {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.story-content .result .metric {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.story-content .result .label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.story-content .technologies {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.story-content .technologies h4 {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Compliance & Security */
.compliance-security {
    padding: 80px 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.compliance-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.compliance-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.compliance-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.compliance-item ul {
    list-style: none;
    margin-top: 1rem;
}

.compliance-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.compliance-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Technology Stack */
.tech-stack {
    padding: 80px 0;
    background: var(--bg-light);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.tech-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.tech-items {
    display: grid;
    gap: 1rem;
}

.tech-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.tech-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.tech-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.tech-item span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Why Cloudavian */
.why-cloudavian {
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.reason {
    text-align: center;
    padding: 2rem;
}

.reason .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reason h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Industry CTA */
.industry-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b00 100%);
    color: white;
}

.industry-cta .cta-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.industry-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.industry-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.industry-cta .cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.industry-cta .benefit {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 500;
}

.industry-cta .cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .industry-hero h1 {
        font-size: 2rem;
    }
    
    .industry-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .challenges-grid,
    .solutions-grid,
    .stories-grid,
    .compliance-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .story-card.featured {
        grid-column: span 1;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .industry-cta .cta-benefits {
        grid-template-columns: 1fr;
    }
    
    .industry-cta .cta-actions {
        flex-direction: column;
    }
}