:root {
    --accent-color: #38c9d3;
    --text-color: #000;
    --bg-color: #fff;
    --container-width: 1170px;
}

.service-page {
    font-family: 'Gilroy', sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Common typography */
.title-h2 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 clamp(20px, 3vw, 40px);
    text-transform: uppercase;
}

.title-h3 {
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 clamp(15px, 2vw, 20px);
    text-transform: uppercase;
}

/* Block 1: Hero */
.service-hero {
    position: relative;
    min-height: clamp(600px, 80vh, 800px);
    color: #fff;
    overflow: hidden;
}

.service-hero .service-block__bg {
    background: url('../images/service/Hero-service.jpg') no-repeat center center;
    background-size: cover;
}

.service-block__bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    will-change: transform;
}

.service-hero__container {
    padding: clamp(60px, 8vw, 100px) 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-page .hero__content {
    max-width: 570px;
    padding: 0;
    height: auto;
}

.hero__main-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    text-shadow: 4px 4px 4px rgba(0,0,0,0.5);
    margin: 0 0 clamp(30px, 4vw, 50px);
}

.hero__benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
}

.benefit-desc {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
}

.btn-white-stroke {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    height: 60px;
    padding: 0 40px;
    border: 2px solid #fff;
    border-radius: 90px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    margin-top: clamp(20px, 3vw, 40px);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-white-stroke:hover {
    background: #fff;
    color: #000;
}

/* Block 2 & 4: Cards */
.service-section {
    padding: clamp(40px, 6vw, 80px) 0;
    text-align: center;
}

.service-section .title-h2 {
    color: var(--accent-color);
}

.section-desc {
    font-size: clamp(16px, 1.5vw, 20px);
    max-width: 900px;
    margin: 0 auto clamp(30px, 4vw, 50px);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card-item {
    text-align: center;
    transition-delay: 0s;
}

.card-item:nth-child(2) { transition-delay: 0.1s; }
.card-item:nth-child(3) { transition-delay: 0.2s; }

.card-img {
    width: 100%;
    aspekt-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
}

.card-text {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Block 3: Delivery */
.service-delivery {
    position: relative;
    min-height: clamp(600px, 80vh, 800px);
    display: flex;
    align-items: center;
    color: #fff;
    padding: clamp(60px, 8vw, 100px) 0;
    overflow: hidden;
}

.service-delivery .service-block__bg {
    background: url('../images/service/Block3-1.jpg') no-repeat center center;
    background-size: cover;
}

.service-delivery .title-h2 {
    text-shadow: 4px 4px 4px rgba(0,0,0,0.5);
    max-width: 840px;
}

.service-delivery .container {
    position: relative;
    z-index: 2;
}

.delivery-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.delivery-point h4 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.delivery-point p {
    font-size: clamp(16px, 1.5vw, 20px);
    margin: 0;
    line-height: 1.4;
}

/* Block 5: CTA */
.service-cta {
    background: #17bbc7;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta__btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.btn-filled {
    background: var(--accent-color);
    color: #fff;
    border: 2px solid #fff !important;
}

.btn-filled:hover {
    background: #fff;
    color: var(--accent-color);
}

.service-img {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .title-h2 { font-size: 30px; }
    .hero__main-title { font-size: 50px; }
    .cards-grid { grid-template-columns: 1fr; }
    .service-hero, .service-delivery { min-height: auto; padding: 60px 0; }
    .hero__main-title { font-size: 40px; }
    .card-img { height: 250px; }
    .cta__btns { flex-direction: column; align-items: center; }
    .btn-white-stroke { width: 100%; max-width: 350px; }
}

@media (max-width: 767px) {
    .service-hero__container {
        display: block;
        padding-top: 0;
    }
    .service-hero, .service-delivery { padding: 50px 0; }
    .service-hero .service-block__bg {
        background: #23757a;
    }
    .hero__main-title {
        text-shadow: unset;
    }
    .btn-white-stroke {
        font-size: 16px;
        height: 50px;
    }
    .service-delivery .service-block__bg {
        background-position: 16% center;
    }
    .service-img {
        display: flex;
        position: relative;
        z-index: 10;
        margin-bottom: 20px;
    }
}