:root {
    --bg-dark: #0b121a;
    --accent-yellow: #f7c028;
    --accent-blue: #2499f9;
    --text-light: #f4f6f8;
    --text-muted: #a0abb6;
}

.services-section-wrapper {
    
    color: var(--text-light);
    padding: 80px 20px;
    font-family: inherit;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h1 {
    color: var(--bg-dark);
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.services-header p {
    color: var(--bg-dark);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-header .title-divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent-yellow);
    margin: 20px auto 0 auto;
}

/* Row Layout Setup */
.service-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 70px;
    background-color: #121c2727;
}

.service-row:last-child {
    margin-bottom: 0;
}

/* Alternating layout using flex direction */
.service-row.reverse {
    flex-direction: row-reverse;
}

.service-col-img,
.service-col-content {
    flex: 1 1 50%;
    min-width: 300px;
}

.service-col-img {
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.service-col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.9);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.service-row:hover .service-col-img img {
    transform: scale(1.03);
    filter: brightness(1);
}

.service-col-content {
    padding: 45px 40px;
    box-sizing: border-box;
}

.service-tag {
    display: inline-block;
    color: var(--accent-yellow);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.service-title {
    color: var(--bg-dark);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.25;
}

.service-description {
    color: var(--bg-dark);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

/* Action Buttons */
.service-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    border-radius: 0px !important;
    /* Minimalist straight edge */
    cursor: pointer;
}

.btn-call {
    background-color: var(--accent-yellow);
    color: var(--bg-dark);
    border: 2px solid var(--accent-yellow);
}

.btn-call:hover {
    background-color: #e0ac1a;
    border-color: #e0ac1a;
    color: var(--bg-dark);
}

.btn-contact {
    background-color: transparent;
    color: var(--bg-dark);
    border: 2px solid var(--accent-blue);
}

.btn-contact:hover {
    background-color: var(--accent-blue);
    color: var(--accent-yellow);
}

.btn-service i {
    margin-right: 8px;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .services-header h1 {
        font-size: 2.2rem;
    }

    .service-col-img {
        min-height: 280px;
    }

    .service-col-content {
        padding: 30px 25px;
    }

    .service-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .service-actions {
        flex-direction: column;
    }

    .btn-service {
        width: 100%;
    }
}