/* Industries Page Specific Styles */

/* Hero Section */
.industries-hero {
    position: relative;
    background-image: url('../../assets/images/small-business-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 120px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.industries-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.85) 35%, 
        rgba(255, 255, 255, 0.3) 60%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.industries-hero .container {
    position: relative;
    z-index: 2;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
}

.industries-hero .hero-grid {
    max-width: 650px;
    margin-right: auto;
    margin-left: 0;
}

.industries-hero .hero-content {
    text-align: left;
}

.industries-hero-title {
    font-family: "Inter", sans-serif;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1C1C1C;
}

.industries-hero-title .highlight {
    color: #0D85D8;
    font-weight: 700;
    display: block;
}

.industries-hero-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #1C1C1C;
    font-weight: 400;
}

.industries-hero-description {
    font-family: "Inter", sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4C4C4B;
    font-weight: 400;
}

/* Industry Sections */
.industry-section {
    padding: 80px 0;
}

.industry-section.alt-bg {
    background: linear-gradient(to bottom, #FAFAFF 0%, #F3F3F2 100%);
}

.industry-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.industry-title {
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0D85D8;
    margin-bottom: 20px;
}

.industry-intro {
    font-family: "Inter", sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4C4C4B;
}

/* Case Studies Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.case-study-card {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 133, 216, 0.1);
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(13, 133, 216, 0.15);
    border-color: rgba(13, 133, 216, 0.3);
}

.case-study-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.case-study-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.case-study-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1C1C1C;
    margin-bottom: 12px;
    line-height: 1.4;
}

.case-study-card p {
    font-family: "Inter", sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4C4C4B;
    margin-bottom: 20px;
}

/* Tech Badges */
.case-study-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.tech-badge {
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    background: #E8F4FC;
    color: #003D5C;
    border-radius: 20px;
    border: 1px solid rgba(13, 133, 216, 0.25);
    transition: all 0.3s ease;
}

.case-study-card:hover .tech-badge {
    background: rgba(13, 133, 216, 0.15);
    border-color: rgba(13, 133, 216, 0.3);
}

/* CTA Section */
.industries-cta {
    background: linear-gradient(135deg, #1C1C1C 0%, #2a2a2a 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-title {
    font-family: "Inter", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    display: inline-block;
    background: #D63F00;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background: #C13900;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(214, 63, 0, 0.3);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .industries-hero {
        padding: 120px 0 80px;
        min-height: 500px;
    }

    .industries-hero::before {
        background: linear-gradient(to right, 
            rgba(255, 255, 255, 0.97) 0%, 
            rgba(255, 255, 255, 0.9) 45%, 
            rgba(255, 255, 255, 0.4) 70%, 
            rgba(255, 255, 255, 0) 100%);
    }

    .industries-hero .container {
        padding-left: 30px;
    }

    .industries-hero .hero-grid {
        max-width: 600px;
    }

    .industries-hero-title {
        font-size: 2.5rem;
    }

    .industries-hero-subtitle {
        font-size: 1.1rem;
    }

    .industries-hero-description {
        font-size: 1rem;
    }

    .industry-title {
        font-size: 2rem;
    }

    .industry-intro {
        font-size: 1.05rem;
    }

    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .industries-hero {
        padding: 100px 0 60px;
        min-height: 450px;
        background-position: 60% center;
    }

    .industries-hero::before {
        background: linear-gradient(to right, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(255, 255, 255, 0.95) 55%, 
            rgba(255, 255, 255, 0.6) 80%, 
            rgba(255, 255, 255, 0.2) 100%);
    }

    .industries-hero .container {
        padding-left: 20px;
    }

    .industries-hero .hero-grid {
        max-width: 100%;
    }

    .industries-hero-title {
        font-size: 1.9rem;
    }

    .industries-hero-subtitle {
        font-size: 1rem;
    }

    .industries-hero-description {
        font-size: 0.95rem;
    }

    .industry-section {
        padding: 60px 0;
    }

    .industry-header {
        margin-bottom: 40px;
    }

    .industry-title {
        font-size: 1.75rem;
    }

    .industry-intro {
        font-size: 1rem;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .case-study-card {
        padding: 25px 20px;
    }

    .case-study-icon {
        width: 56px;
        height: 56px;
    }

    .case-study-card h3 {
        font-size: 1.15rem;
    }

    .industries-cta {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }

    .btn-cta {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .industries-hero {
        padding: 80px 0 50px;
        min-height: 400px;
    }

    .industries-hero .container {
        padding-left: 15px;
    }

    .industries-hero::before {
        background: rgba(255, 255, 255, 0.95);
    }

    .industries-hero-title {
        font-size: 1.6rem;
    }

    .industries-hero-subtitle {
        font-size: 0.95rem;
    }

    .industries-hero-description {
        font-size: 0.9rem;
    }

    .industry-title {
        font-size: 1.5rem;
    }

    .tech-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
}

