﻿ 
/* ============================================================
           MAIN SECTION
        ============================================================ */
#main-container {
    padding: 80px 0 100px;
    background: var(--bg);
}

/* ============================================================
           SERVICE ROW  (normal + alternating)
        ============================================================ */
.service-row {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    margin-top: -35px;
}

    .service-row:last-child {
        border-bottom: none;
    }

    /* Subtle number watermark */
    .service-row::before {
        content: attr(data-index);
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        font-family: var(--ff-d);
        font-size: 120px;
        font-weight: 800;
        color: var(--gold);
        opacity: 0.04;
        line-height: 1;
        pointer-events: none;
        user-select: none;
    }

/* Image column */
.svc-image-col {
    flex: 0 0 300px;
}

.svc-image-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
}

    /* Gold corner accent */
    .svc-image-wrap::before {
        content: '';
        position: absolute;
        top: -1px;
        left: -1px;
        width: 40px;
        height: 40px;
        border-top: 3px solid var(--gold);
        border-left: 3px solid var(--gold);
        border-radius: var(--r) 0 0 0;
        z-index: 2;
        pointer-events: none;
    }

    .svc-image-wrap::after {
        content: '';
        position: absolute;
        bottom: -1px;
        right: -1px;
        width: 40px;
        height: 40px;
        border-bottom: 3px solid var(--gold);
        border-right: 3px solid var(--gold);
        border-radius: 0 0 var(--r) 0;
        z-index: 2;
        pointer-events: none;
    }

    /* Override Telerik RadBinaryImage output */
    .svc-image-wrap .photo,
    .svc-image-wrap img {
        width: 100% !important;
        height: 260px !important;
        object-fit: cover !important;
        display: block !important;
    }

/* Text column */
.svc-text-col {
    flex: 1;
    min-width: 0;
}

/* Service name badge */
.svc-name-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.svc-index-dot {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-dim2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-d);
    font-size: 13px;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
}

.svc-name {
    font-family: var(--ff-d);
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* Gold divider line */
.svc-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    margin-bottom: 20px;
}

/* Description label */
.svc-desc-label {
    font-family: var(--ff-d);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 12px;
}

/* Description list */
.svc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .svc-list li {
        display: flex;
        align-items: flex-start;
        gap: 11px;
        font-size: 14px;
        color: var(--muted);
        line-height: 1.65;
        padding: 10px 14px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: 10px;
        transition: border-color var(--ease), background var(--ease);
    }

        .svc-list li:hover {
            border-color: var(--gold-dim2);
            background: var(--surface2);
            color: var(--muted2);
        }

        .svc-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--gold);
            flex-shrink: 0;
            margin-top: 6px;
            opacity: 0.8;
        }

/* ============================================================
           ALTERNATING — image right, text left
        ============================================================ */
.service-row.alt {
    flex-direction: row-reverse;
}

    .service-row.alt .svc-divider {
        background: linear-gradient(270deg, var(--gold), transparent);
    }

/* ============================================================
           RESPONSIVE
        ============================================================ */
@media (max-width: 991px) {
    .svc-image-col {
        flex: 0 0 240px;
    }

    .service-row {
        gap: 32px;
    }
}

@media (max-width: 767px) {
    #banner-area {
        padding: 20px 0 18px;
    }

    #main-container {
        padding: 48px 0 64px;
    }

    .service-row,
    .service-row.alt {
        flex-direction: column;
        gap: 24px;
        padding: 40px 0;
    }

    .svc-image-col {
        flex: none;
        width: 100%;
    }

    .svc-image-wrap .photo,
    .svc-image-wrap img {
        height: 200px !important;
    }
}

 