/* =======================
 SERVICES PAGE
======================= */

.services-page {
    padding: 100px 8%;
}

/* HEADER */
.services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.services-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* SERVICE BLOCK */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-block.reverse .service-image {
    order: 2;
}

/* IMAGE */
.service-image img {
    width: 100%;
    max-width: 480px;
    filter: drop-shadow(0 0 40px rgba(255, 140, 0, 0.15));
}

/* CONTENT */
.service-content {
    max-width: 560px;
}

.service-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 20px;
    background: rgba(255, 140, 0, 0.15);
    color: var(--color-orange);
    margin-bottom: 14px;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* TECH STACK */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-stack span {
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.4);
}

/* POINTS */
.service-points {
    margin-bottom: 26px;
}

.service-points li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
}

/* BUTTON */
.btn-outline-orange {
    padding: 12px 26px;
    border-radius: 30px;
    border: 1px solid var(--color-orange);
    color: var(--color-orange);
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background: var(--color-orange);
    color: #000;
}

/* =======================
 RESPONSIVE
======================= */

@media (max-width: 1024px) {
    .service-block {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding: 80px 6%;
    }

    .services-header h1 {
        font-size: 34px;
    }

    .service-block,
    .service-block.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-image img {
        margin: 0 auto;
    }

    .service-content {
        margin: auto;
    }

    .service-points li {
        padding-left: 0;
    }

    .service-points li::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .services-header h1 {
        font-size: 28px;
    }

    .service-content h2 {
        font-size: 24px;
    }
}