﻿/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       SERVICES SECTION — all breakpoints
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.mobile-services-section {
    background-color: #c95f2b;
    padding: 50px 20px;
}

/* ── Header ──────────────────────────── */
.services-header {
    text-align: center;
    margin-bottom: 40px;
}

    .services-header h2 {
        color: #ffc107;
        font-family: 'Oswald', sans-serif;
        font-size: 1.8rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin: 0;
        text-shadow: 3px 3px 0 rgba(0,0,0,0.2);
    }

.services-subtitle {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: -10px 0 0;
}

/* ── Grid wrapper ─────────────────────── */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       CARD — Mobile base
       Horizontal: icon left · content right
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.service-item {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

    .service-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }

/* ── Icon ─────────────────────────────── */
.service-icon-container {
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 5px;
    border-right: 2.5px solid rgba(0,0,0,0.3);
    margin-right: 15px;
}

.service-icon-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* ── Content ──────────────────────────── */
.service-content {
    flex: 1;
    padding-left: 10px;
}

    .service-content h3 {
        color: #ffc107;
        font-family: 'Oswald', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0 0 10px;
    }

    .service-content p {
        color: #fff;
        font-size: 0.85rem;
        line-height: 1.5;
        margin: 0;
        opacity: 0.95;
    }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       TABLET  600px–1099px
       Two-column grid · cards keep horizontal layout
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 600px)  {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .service-item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
       DESKTOP  1100px+
       Single row · vertical card layout
       Hover: dark orange lines top + bottom
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 1100px) {
    .mobile-services-section {
        padding: 100px 150px;
    }

    .services-header h2 {
        font-size: 2.6rem;
    }

    .services-grid {
        /*flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: stretch;
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;*/
        padding-top: 30px;
        width: 80%;
        margin: auto;

    }

    .service-item {
       /* flex: 1;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 24px 20px;
        gap: 0;
        border-radius: 8px;
        transition: box-shadow 0.25s ease;*/
       max-width:500px;
    }

        /* Hover: dark orange lines floating above and below with gap */
       /* .service-item:hover {
            box-shadow: 0 -8px 0 0 #8b3a10, 0 8px 0 0 #8b3a10;
            transform: none;
        }*/

    /* Icon: above content, no divider */
    /*.service-icon-container {
        flex: unset;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 14px;
        justify-content: flex-start;
    }

    .service-icon-img {
        width: 80px;
        height: 80px;
    }*/

    /* Content: full width */
    /*.service-content {
        padding-left: 0;
    }

        .service-content h3 {
            font-size: 0.95rem;
            margin-bottom: 8px;
        }

        .service-content p {
            font-size: 0.8rem;
        }*/
}
