/* support-maintenance.css */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f8;
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.service-hero {
    background-size: cover;
    background-position: center;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    color: white;
    padding: 2rem;
}

.section-title {
    text-align: center;
    padding: 2rem 1rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #0077b6;
}

.section-subtext {
    color: #6c757d;
    font-size: 1.1rem;
}

.service-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 10%;
    background: white;
    gap: 3rem;
}

.service-section:nth-child(even) {
    background-color: #e9f5ff;
}

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #023e8a;
}

.service-text p {
    margin-bottom: 1rem;
}

.icon-grid-section {
    padding: 4rem 10%;
    background-color: #f1f1f1;
}

.grid-title {
    text-align: center;
    margin-bottom: 2rem;
}

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

.icon-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.icon-box img {
    width: 60px;
    margin-bottom: 1rem;
}
.service-section img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.icon-box h4 {
    color: #0077b6;
    margin-bottom: 0.5rem;
}

.mini-cta-modern {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #0077b6, #00b4d8);
    color: white;
}

.mini-cta-modern h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.mini-cta-modern .btn {
    background: white;
    color: #0077b6;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.mini-cta-modern .btn:hover {
    background: #e0e0e0;
}

@media (max-width: 768px) {
    .service-hero {
        height: 300px;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-subtext {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .service-section {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .service-text {
        text-align: center;
    }

    .service-text h3 {
        font-size: 1.4rem;
    }

    .service-text p {
        font-size: 0.95rem;
    }

    .service-section img {
        max-width: 100%;
        margin: 0 auto;
    }

    .icon-grid-section {
        padding: 2rem 1rem;
    }

    .icon-box {
        padding: 1.5rem;
    }

    .icon-box img {
        width: 50px;
    }

    .mini-cta-modern {
        padding: 2rem 1rem;
    }

    .mini-cta-modern h2 {
        font-size: 1.6rem;
    }

    .mini-cta-modern .btn {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
    }
}