/* Services Section */
.services {
    background: url('../../images/main/section_02_bg.jpg') center center / cover no-repeat;
}

.services .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.services .container {
    gap: 40px;
}

.services .section-nav {
    flex: 0 0 150px;
    width: 150px;
}

.services .services-left,
.services .services-right {
    flex: 1;
}

@media (min-width: 1440px) {
    .services .container {
        flex-direction: row;
    }
}

@media (max-width: 1439px) {
    .services .container {
        flex-direction: row;
    }
}

.services-subtitle {
    color: rgba(255, 255, 255, 0.50);
    font-family: 'Sumana', serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 12px;
}

.services-title {
    color: #FFF;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 16px;
}

.services-description {
    color: rgba(255, 255, 255, 0.80);
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 0;
}

.services-right {
    flex: 1;
    max-width: 500px;
}

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

.service-card-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.20);
    padding: 30px;
    transition: all 0.3s;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.30);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-label {
    color: #FFF;
    font-family: 'Sumana', serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 0;
    text-align: right;
}

.service-content {
    text-align: left;
}

.service-name {
    color: #FFF;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 12px;
}

.service-desc {
    color: rgba(255, 255, 255, 0.80);
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .services-left {
        text-align: center;
    }

    .services-subtitle {
        color: #FFF;
        font-family: 'Sumana', serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
    }

    .services-title {
        color: #FFF;
        font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 120%;
    }

    .services-description {
        color: rgba(255, 255, 255, 0.80);
        text-align: center;
        font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
    }

    .services-right {
        max-width: 100%;
        display: flex;
        justify-content: center;
    }

    .services-grid {
        max-width: 300px;
        gap: 8px;
    }

    .service-card-wrapper {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .service-card {
        background: rgba(255, 255, 255, 0.20);
        padding: 12px;
        transition: all 0.3s;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .service-label {
        color: #FFF;
        font-family: 'Sumana', serif;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
    }

    .service-name {
        color: #FFF;
        font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        margin-bottom: 8px;
    }

    .service-desc {
        color: rgba(255, 255, 255, 0.80);
        font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
        font-size: 11px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%;
    }
}
