/* =========================================================
   SERVICES SECTION — ORIGAMI THEME
   ========================================================= */

.services-section {
    min-height: 100vh;
    background: var(--cream);
    padding: 40px 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
    opacity: 0.08;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.services-content {
    max-width: 90vw;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.services-header {
    margin-bottom: 30px;
    position: relative;
}

.services-character {
    position: absolute;
    top: -60px;
    right: 0;
    width: 180px;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.services-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    color: var(--dark);
}

.services-highlight {
    color: var(--orange);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--dark);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(26, 26, 26, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    text-decoration: none;
    color: inherit;
}

.service-card:hover {
    border-color: var(--orange);
    box-shadow: 0 20px 40px rgba(232, 93, 38, 0.15);
}

.service-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
}

.service-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--cream);
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-decoration: none;
}

.service-description {
    font-size: 12px;
    color: rgba(239, 225, 196, 0.5);
    line-height: 1.5;
    margin-bottom: 12px;
}

.service-link {
    color: var(--orange);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--cream);
}

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

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .services-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .services-header {
        margin-bottom: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-title {
        font-size: 9vw;
    }

    .service-card {
        padding: 20px;
    }

    .service-name {
        font-size: 14px;
    }

    .service-description {
        display: none;
    }
}

@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 16px;
    }

    .service-image {
        width: 80px;
        height: 80px;
        min-width: 80px;
        margin-bottom: 0;
    }

    .service-name {
        font-size: 14px;
    }

    .service-description {
        display: none;
    }

    .service-link {
        font-size: 12px;
        white-space: nowrap;
    }
}