/* HERO AR / VR */
.service-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-primary) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.service-hero__container {
    position: relative;
    z-index: 1;
}

.service-hero__title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.service-hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* CONTENT BOCKS */
.service-details {
    padding: 80px 0;
    background-color: var(--color-bg-white);
}

.service-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-block__image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-block__img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-block:hover .service-block__img {
    transform: scale(1.05);
}

.service-block__content {
    flex: 1;
}

.service-block__title {
    font-size: 32px;
    color: var(--color-text-on-white);
    margin-bottom: 20px;
    text-wrap: balance;
    text-align: center;
}

.service-block__text {
    font-size: 16px;
    color: var(--color-text-muted-on-white);
    margin-bottom: 30px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .service-block {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 50px;
    }

    .service-hero__title {
        font-size: 36px;
    }
}

.service-block__content .btn {
    display: table;
    margin: 0 auto;
}

.calc-form-side .btn {
    display: table;
    margin: 0 auto;
}